1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-21 13:05:11 -05:00

Fix project imports

This commit is contained in:
Vince Grassia 2023-11-15 15:54:24 -05:00
parent 41050091f6
commit bd13dd64ac
No known key found for this signature in database
GPG Key ID: 9AD7505E8448CC08
10 changed files with 40 additions and 0 deletions

View File

@ -21,6 +21,8 @@ RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \
WORKDIR /source WORKDIR /source
COPY bitwarden_license/src/Scim/*.csproj ./bitwarden_license/src/Scim/ COPY bitwarden_license/src/Scim/*.csproj ./bitwarden_license/src/Scim/
COPY src/Core/*.csproj ./src/Core/ COPY src/Core/*.csproj ./src/Core/
COPY src/Infrastructure.Dapper/*.csproj ./src/Infrastructure.Dapper/
COPY src/Infrastructure.EntityFramework/*.csproj ./src/Infrastructure.EntityFramework/
COPY src/SharedWeb/*.csproj ./src/SharedWeb/ COPY src/SharedWeb/*.csproj ./src/SharedWeb/
COPY Directory.Build.props . COPY Directory.Build.props .
@ -32,6 +34,8 @@ RUN . /tmp/rid.txt && dotnet restore -r $RID
WORKDIR /source WORKDIR /source
COPY bitwarden_license/src/Scim/. ./bitwarden_license/src/Scim/ COPY bitwarden_license/src/Scim/. ./bitwarden_license/src/Scim/
COPY src/Core/. ./src/Core/ COPY src/Core/. ./src/Core/
COPY src/Infrastructure.Dapper/. ./src/Infrastructure.Dapper/
COPY src/Infrastructure.EntityFramework/. ./src/Infrastructure.EntityFramework/
COPY src/SharedWeb/. ./src/SharedWeb/ COPY src/SharedWeb/. ./src/SharedWeb/
COPY .git/. ./.git/ COPY .git/. ./.git/

View File

@ -21,6 +21,8 @@ RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \
WORKDIR /source WORKDIR /source
COPY bitwarden_license/src/Sso/*.csproj ./bitwarden_license/src/Sso/ COPY bitwarden_license/src/Sso/*.csproj ./bitwarden_license/src/Sso/
COPY src/Core/*.csproj ./src/Core/ COPY src/Core/*.csproj ./src/Core/
COPY src/Infrastructure.Dapper/*.csproj ./src/Infrastructure.Dapper/
COPY src/Infrastructure.EntityFramework/*.csproj ./src/Infrastructure.EntityFramework/
COPY src/SharedWeb/*.csproj ./src/SharedWeb/ COPY src/SharedWeb/*.csproj ./src/SharedWeb/
COPY Directory.Build.props . COPY Directory.Build.props .
@ -32,6 +34,8 @@ RUN . /tmp/rid.txt && dotnet restore -r $RID
WORKDIR /source WORKDIR /source
COPY bitwarden_license/src/Sso/. ./bitwarden_license/src/Sso/ COPY bitwarden_license/src/Sso/. ./bitwarden_license/src/Sso/
COPY src/Core/. ./src/Core/ COPY src/Core/. ./src/Core/
COPY src/Infrastructure.Dapper/. ./src/Infrastructure.Dapper/
COPY src/Infrastructure.EntityFramework/. ./src/Infrastructure.EntityFramework/
COPY src/SharedWeb/. ./src/SharedWeb/ COPY src/SharedWeb/. ./src/SharedWeb/
COPY .git/. ./.git/ COPY .git/. ./.git/

View File

@ -21,6 +21,8 @@ RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \
WORKDIR /source WORKDIR /source
COPY src/Admin/*.csproj ./src/Admin/ COPY src/Admin/*.csproj ./src/Admin/
COPY src/Core/*.csproj ./src/Core/ COPY src/Core/*.csproj ./src/Core/
COPY src/Infrastructure.Dapper/*.csproj ./src/Infrastructure.Dapper/
COPY src/Infrastructure.EntityFramework/*.csproj ./src/Infrastructure.EntityFramework/
COPY src/SharedWeb/*.csproj ./src/SharedWeb/ COPY src/SharedWeb/*.csproj ./src/SharedWeb/
COPY util/Migrator/*.csproj ./util/Migrator/ COPY util/Migrator/*.csproj ./util/Migrator/
COPY util/MySqlMigrations/*.csproj ./util/MySqlMigrations/ COPY util/MySqlMigrations/*.csproj ./util/MySqlMigrations/
@ -38,6 +40,8 @@ RUN . /tmp/rid.txt && dotnet restore -r $RID
WORKDIR /source WORKDIR /source
COPY src/Admin/. ./src/Admin/ COPY src/Admin/. ./src/Admin/
COPY src/Core/. ./src/Core/ COPY src/Core/. ./src/Core/
COPY src/Infrastructure.Dapper/. ./src/Infrastructure.Dapper/
COPY src/Infrastructure.EntityFramework/. ./src/Infrastructure.EntityFramework/
COPY src/SharedWeb/. ./src/SharedWeb/ COPY src/SharedWeb/. ./src/SharedWeb/
COPY util/Migrator/. ./util/Migrator/ COPY util/Migrator/. ./util/Migrator/
COPY util/MySqlMigrations/. ./util/MySqlMigrations/ COPY util/MySqlMigrations/. ./util/MySqlMigrations/

View File

@ -21,6 +21,8 @@ RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \
WORKDIR /source WORKDIR /source
COPY src/Api/*.csproj ./src/Api/ COPY src/Api/*.csproj ./src/Api/
COPY src/Core/*.csproj ./src/Core/ COPY src/Core/*.csproj ./src/Core/
COPY src/Infrastructure.Dapper/*.csproj ./src/Infrastructure.Dapper/
COPY src/Infrastructure.EntityFramework/*.csproj ./src/Infrastructure.EntityFramework/
COPY src/SharedWeb/*.csproj ./src/SharedWeb/ COPY src/SharedWeb/*.csproj ./src/SharedWeb/
COPY bitwarden_license/src/Commercial.Core/*.csproj ./bitwarden_license/src/Commercial.Core/ COPY bitwarden_license/src/Commercial.Core/*.csproj ./bitwarden_license/src/Commercial.Core/
COPY bitwarden_license/src/Commercial.Infrastructure.EntityFramework/*.csproj ./bitwarden_license/src/Commercial.Infrastructure.EntityFramework/ COPY bitwarden_license/src/Commercial.Infrastructure.EntityFramework/*.csproj ./bitwarden_license/src/Commercial.Infrastructure.EntityFramework/
@ -34,6 +36,8 @@ RUN . /tmp/rid.txt && dotnet restore -r $RID
WORKDIR /source WORKDIR /source
COPY src/Api/. ./src/Api/ COPY src/Api/. ./src/Api/
COPY src/Core/. ./src/Core/ COPY src/Core/. ./src/Core/
COPY src/Infrastructure.Dapper/. ./src/Infrastructure.Dapper/
COPY src/Infrastructure.EntityFramework/. ./src/Infrastructure.EntityFramework/
COPY src/SharedWeb/. ./src/SharedWeb/ COPY src/SharedWeb/. ./src/SharedWeb/
COPY bitwarden_license/src/Commercial.Core/. ./bitwarden_license/src/Commercial.Core/ COPY bitwarden_license/src/Commercial.Core/. ./bitwarden_license/src/Commercial.Core/
COPY bitwarden_license/src/Commercial.Infrastructure.EntityFramework/. ./bitwarden_license/src/Commercial.Infrastructure.EntityFramework/ COPY bitwarden_license/src/Commercial.Infrastructure.EntityFramework/. ./bitwarden_license/src/Commercial.Infrastructure.EntityFramework/

View File

@ -21,6 +21,8 @@ RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \
WORKDIR /source WORKDIR /source
COPY src/Billing/*.csproj ./src/Billing/ COPY src/Billing/*.csproj ./src/Billing/
COPY src/Core/*.csproj ./src/Core/ COPY src/Core/*.csproj ./src/Core/
COPY src/Infrastructure.Dapper/*.csproj ./src/Infrastructure.Dapper/
COPY src/Infrastructure.EntityFramework/*.csproj ./src/Infrastructure.EntityFramework/
COPY src/SharedWeb/*.csproj ./src/SharedWeb/ COPY src/SharedWeb/*.csproj ./src/SharedWeb/
COPY Directory.Build.props . COPY Directory.Build.props .
@ -32,6 +34,8 @@ RUN . /tmp/rid.txt && dotnet restore -r $RID
WORKDIR /source WORKDIR /source
COPY src/Billing/. ./src/Billing/ COPY src/Billing/. ./src/Billing/
COPY src/Core/. ./src/Core/ COPY src/Core/. ./src/Core/
COPY src/Infrastructure.Dapper/. ./src/Infrastructure.Dapper/
COPY src/Infrastructure.EntityFramework/. ./src/Infrastructure.EntityFramework/
COPY src/SharedWeb/. ./src/SharedWeb/ COPY src/SharedWeb/. ./src/SharedWeb/
COPY .git/. ./.git/ COPY .git/. ./.git/

View File

@ -21,6 +21,8 @@ RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \
WORKDIR /source WORKDIR /source
COPY src/Events/*.csproj ./src/Events/ COPY src/Events/*.csproj ./src/Events/
COPY src/Core/*.csproj ./src/Core/ COPY src/Core/*.csproj ./src/Core/
COPY src/Infrastructure.Dapper/*.csproj ./src/Infrastructure.Dapper/
COPY src/Infrastructure.EntityFramework/*.csproj ./src/Infrastructure.EntityFramework/
COPY src/SharedWeb/*.csproj ./src/SharedWeb/ COPY src/SharedWeb/*.csproj ./src/SharedWeb/
COPY Directory.Build.props . COPY Directory.Build.props .
@ -32,6 +34,8 @@ RUN . /tmp/rid.txt && dotnet restore -r $RID
WORKDIR /source WORKDIR /source
COPY src/Events/. ./src/Events/ COPY src/Events/. ./src/Events/
COPY src/Core/. ./src/Core/ COPY src/Core/. ./src/Core/
COPY src/Infrastructure.Dapper/. ./src/Infrastructure.Dapper/
COPY src/Infrastructure.EntityFramework/. ./src/Infrastructure.EntityFramework/
COPY src/SharedWeb/. ./src/SharedWeb/ COPY src/SharedWeb/. ./src/SharedWeb/
COPY .git/. ./.git/ COPY .git/. ./.git/

View File

@ -21,6 +21,8 @@ RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \
WORKDIR /source WORKDIR /source
COPY src/EventsProcessor/*.csproj ./src/EventsProcessor/ COPY src/EventsProcessor/*.csproj ./src/EventsProcessor/
COPY src/Core/*.csproj ./src/Core/ COPY src/Core/*.csproj ./src/Core/
COPY src/Infrastructure.Dapper/*.csproj ./src/Infrastructure.Dapper/
COPY src/Infrastructure.EntityFramework/*.csproj ./src/Infrastructure.EntityFramework/
COPY src/SharedWeb/*.csproj ./src/SharedWeb/ COPY src/SharedWeb/*.csproj ./src/SharedWeb/
COPY Directory.Build.props . COPY Directory.Build.props .
@ -32,6 +34,8 @@ RUN . /tmp/rid.txt && dotnet restore -r $RID
WORKDIR /source WORKDIR /source
COPY src/EventsProcessor/. ./src/EventsProcessor/ COPY src/EventsProcessor/. ./src/EventsProcessor/
COPY src/Core/. ./src/Core/ COPY src/Core/. ./src/Core/
COPY src/Infrastructure.Dapper/. ./src/Infrastructure.Dapper/
COPY src/Infrastructure.EntityFramework/. ./src/Infrastructure.EntityFramework/
COPY src/SharedWeb/. ./src/SharedWeb/ COPY src/SharedWeb/. ./src/SharedWeb/
COPY .git/. ./.git/ COPY .git/. ./.git/

View File

@ -21,6 +21,8 @@ RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \
WORKDIR /source WORKDIR /source
COPY src/Icons/*.csproj ./src/Icons/ COPY src/Icons/*.csproj ./src/Icons/
COPY src/Core/*.csproj ./src/Core/ COPY src/Core/*.csproj ./src/Core/
COPY src/Infrastructure.Dapper/*.csproj ./src/Infrastructure.Dapper/
COPY src/Infrastructure.EntityFramework/*.csproj ./src/Infrastructure.EntityFramework/
COPY src/SharedWeb/*.csproj ./src/SharedWeb/ COPY src/SharedWeb/*.csproj ./src/SharedWeb/
COPY Directory.Build.props . COPY Directory.Build.props .
@ -32,6 +34,8 @@ RUN . /tmp/rid.txt && dotnet restore -r $RID
WORKDIR /source WORKDIR /source
COPY src/Icons/. ./src/Icons/ COPY src/Icons/. ./src/Icons/
COPY src/Core/. ./src/Core/ COPY src/Core/. ./src/Core/
COPY src/Infrastructure.Dapper/. ./src/Infrastructure.Dapper/
COPY src/Infrastructure.EntityFramework/. ./src/Infrastructure.EntityFramework/
COPY src/SharedWeb/. ./src/SharedWeb/ COPY src/SharedWeb/. ./src/SharedWeb/
COPY .git/. ./.git/ COPY .git/. ./.git/

View File

@ -21,6 +21,8 @@ RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \
WORKDIR /source WORKDIR /source
COPY src/Admin/*.csproj ./src/Admin/ COPY src/Admin/*.csproj ./src/Admin/
COPY src/Core/*.csproj ./src/Core/ COPY src/Core/*.csproj ./src/Core/
COPY src/Infrastructure.Dapper/*.csproj ./src/Infrastructure.Dapper/
COPY src/Infrastructure.EntityFramework/*.csproj ./src/Infrastructure.EntityFramework/
COPY src/SharedWeb/*.csproj ./src/SharedWeb/ COPY src/SharedWeb/*.csproj ./src/SharedWeb/
COPY util/Migrator/*.csproj ./util/Migrator/ COPY util/Migrator/*.csproj ./util/Migrator/
COPY util/MySqlMigrations/*.csproj ./util/MySqlMigrations/ COPY util/MySqlMigrations/*.csproj ./util/MySqlMigrations/
@ -38,6 +40,8 @@ RUN . /tmp/rid.txt && dotnet restore -r $RID
WORKDIR /source WORKDIR /source
COPY src/Admin/. ./src/Admin/ COPY src/Admin/. ./src/Admin/
COPY src/Core/. ./src/Core/ COPY src/Core/. ./src/Core/
COPY src/Infrastructure.Dapper/. ./src/Infrastructure.Dapper/
COPY src/Infrastructure.EntityFramework/. ./src/Infrastructure.EntityFramework/
COPY src/SharedWeb/. ./src/SharedWeb/ COPY src/SharedWeb/. ./src/SharedWeb/
COPY util/Migrator/. ./util/Migrator/ COPY util/Migrator/. ./util/Migrator/
COPY util/MySqlMigrations/. ./util/MySqlMigrations/ COPY util/MySqlMigrations/. ./util/MySqlMigrations/

View File

@ -21,6 +21,8 @@ RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \
WORKDIR /source WORKDIR /source
COPY src/Core/*.csproj ./src/Core/ COPY src/Core/*.csproj ./src/Core/
COPY src/Notifications/*.csproj ./src/Notifications/ COPY src/Notifications/*.csproj ./src/Notifications/
COPY src/Infrastructure.Dapper/*.csproj ./src/Infrastructure.Dapper/
COPY src/Infrastructure.EntityFramework/*.csproj ./src/Infrastructure.EntityFramework/
COPY src/SharedWeb/*.csproj ./src/SharedWeb/ COPY src/SharedWeb/*.csproj ./src/SharedWeb/
COPY Directory.Build.props . COPY Directory.Build.props .
@ -32,6 +34,8 @@ RUN . /tmp/rid.txt && dotnet restore -r $RID
WORKDIR /source WORKDIR /source
COPY src/Core/. ./src/Core/ COPY src/Core/. ./src/Core/
COPY src/Notifications/. ./src/Notifications/ COPY src/Notifications/. ./src/Notifications/
COPY src/Infrastructure.Dapper/. ./src/Infrastructure.Dapper/
COPY src/Infrastructure.EntityFramework/. ./src/Infrastructure.EntityFramework/
COPY src/SharedWeb/. ./src/SharedWeb/ COPY src/SharedWeb/. ./src/SharedWeb/
COPY .git/. ./.git/ COPY .git/. ./.git/