diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a8f88d4..a6a511e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -23,17 +23,17 @@ jobs: # Windows build - name: Windows Build run: | - dotnet publish -r win-x64 -p:PublishSingleFile=True --self-contained --output $BUILD_PATH_ROOT/ + dotnet publish -r win-x64 --self-contained --output $BUILD_PATH_ROOT/ mv $BUILD_PATH_ROOT/$EXPORT_NAME.exe $BUILD_PATH_ROOT/$EXPORT_NAME-$WIN_BUILD_NAME.exe # Linux build - name: Linux Build run: | - dotnet publish -r linux-x64 -p:PublishSingleFile=True --self-contained --output $BUILD_PATH_ROOT/ + dotnet publish -r linux-x64 --self-contained --output $BUILD_PATH_ROOT/ mv $BUILD_PATH_ROOT/$EXPORT_NAME $BUILD_PATH_ROOT/$EXPORT_NAME-$LINUX_BUILD_NAME # MacOS build - name: MacOS Build run: | - dotnet publish -r osx-x64 -p:PublishSingleFile=True --self-contained --output $BUILD_PATH_ROOT/ + dotnet publish -r osx-x64 --self-contained --output $BUILD_PATH_ROOT/ mv $BUILD_PATH_ROOT/$EXPORT_NAME $BUILD_PATH_ROOT/$EXPORT_NAME-$MACOS_BUILD_NAME # Release to this repo - name: Private Release diff --git a/wad3-cli.csproj b/wad3-cli.csproj index 595f376..05be576 100644 --- a/wad3-cli.csproj +++ b/wad3-cli.csproj @@ -6,12 +6,16 @@ wad3_cli enable enable + true + true + +