Change to use new build output path

This commit is contained in:
James Chapman 2023-08-11 19:58:32 +01:00
parent 9c07c3120b
commit 3824c72191
Signed by: jamsch0
GPG Key ID: 765FE58130277547
5 changed files with 10 additions and 4 deletions

View File

@ -2,8 +2,7 @@
.github/ .github/
.vs/ .vs/
.vscode/ .vscode/
**/bin/ artifacts/
**/obj/
*.csproj.user *.csproj.user
Groceries/wwwroot/lib/ Groceries/wwwroot/lib/

3
.gitignore vendored
View File

@ -1,6 +1,5 @@
.vs/ .vs/
**/bin/ artifacts/
**/obj/
*.csproj.user *.csproj.user
Groceries/wwwroot/lib/ Groceries/wwwroot/lib/

5
Directory.Build.props Normal file
View File

@ -0,0 +1,5 @@
<Project>
<PropertyGroup>
<UseArtifactsOutput>true</UseArtifactsOutput>
</PropertyGroup>
</Project>

View File

@ -5,6 +5,8 @@ COPY ./.config ./
RUN dotnet tool restore RUN dotnet tool restore
COPY ./Groceries.sln ./ COPY ./Groceries.sln ./
COPY ./Directory.Build.props ./
COPY */*.csproj ./ COPY */*.csproj ./
RUN for file in $(ls *.csproj); do mkdir -p ${file%.*} && mv $file ${file%.*}; done RUN for file in $(ls *.csproj); do mkdir -p ${file%.*} && mv $file ${file%.*}; done
RUN dotnet restore RUN dotnet restore

View File

@ -12,6 +12,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
.dockerignore = .dockerignore .dockerignore = .dockerignore
.editorconfig = .editorconfig .editorconfig = .editorconfig
.gitignore = .gitignore .gitignore = .gitignore
Directory.Build.props = Directory.Build.props
Dockerfile = Dockerfile Dockerfile = Dockerfile
README.md = README.md README.md = README.md
EndProjectSection EndProjectSection