Skip to content

Commit

Permalink
Removing SelfContained publish property from csproj, I didn't realize…
Browse files Browse the repository at this point in the history
… that it would be doing a self contained build when developing.
  • Loading branch information
tpill90 committed Mar 2, 2024
1 parent a7979a0 commit 4e240f9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ jobs:
--nologo \
-o "publish/$PROJECT_NAME-$version-${{ matrix.runtime }}" \
-c Release \
--runtime "${{ matrix.runtime }}";
--runtime "${{ matrix.runtime }}" \
--self-contained true;
cd publish;
Expand Down

0 comments on commit 4e240f9

Please sign in to comment.