Change to use new build output path
This commit is contained in:
parent
9c07c3120b
commit
3824c72191
@ -2,8 +2,7 @@
|
||||
.github/
|
||||
.vs/
|
||||
.vscode/
|
||||
**/bin/
|
||||
**/obj/
|
||||
artifacts/
|
||||
*.csproj.user
|
||||
|
||||
Groceries/wwwroot/lib/
|
||||
|
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,6 +1,5 @@
|
||||
.vs/
|
||||
**/bin/
|
||||
**/obj/
|
||||
artifacts/
|
||||
*.csproj.user
|
||||
|
||||
Groceries/wwwroot/lib/
|
||||
|
5
Directory.Build.props
Normal file
5
Directory.Build.props
Normal file
@ -0,0 +1,5 @@
|
||||
<Project>
|
||||
<PropertyGroup>
|
||||
<UseArtifactsOutput>true</UseArtifactsOutput>
|
||||
</PropertyGroup>
|
||||
</Project>
|
@ -5,6 +5,8 @@ COPY ./.config ./
|
||||
RUN dotnet tool restore
|
||||
|
||||
COPY ./Groceries.sln ./
|
||||
COPY ./Directory.Build.props ./
|
||||
|
||||
COPY */*.csproj ./
|
||||
RUN for file in $(ls *.csproj); do mkdir -p ${file%.*} && mv $file ${file%.*}; done
|
||||
RUN dotnet restore
|
||||
|
@ -12,6 +12,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
|
||||
.dockerignore = .dockerignore
|
||||
.editorconfig = .editorconfig
|
||||
.gitignore = .gitignore
|
||||
Directory.Build.props = Directory.Build.props
|
||||
Dockerfile = Dockerfile
|
||||
README.md = README.md
|
||||
EndProjectSection
|
||||
|
Loading…
x
Reference in New Issue
Block a user