Change to use new build output path
This commit is contained in:
parent
9c07c3120b
commit
3824c72191
@ -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
3
.gitignore
vendored
@ -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
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
|
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
|
||||||
|
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user