We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3475f25 commit b680b03Copy full SHA for b680b03
publish.cmd
@@ -4,7 +4,7 @@ pushd "%~dp0"
4
call build
5
set EXIT_CODE=%ERRORLEVEL%
6
if not %EXIT_CODE%==0 goto :end
7
-for %%f in (3.0 2.2 2.1) do (
+for %%f in (3.1 2.1) do (
8
dotnet publish --no-restore --no-build -c Release -f netcoreapp%%f -o dist\bin\%%f src || goto :break
9
)
10
:break
publish.sh
@@ -2,6 +2,6 @@
2
set -e
3
cd "$(dirname "$0")"
./build.sh
-for f in 3.0 2.2 2.1; do
+for f in 3.1 2.1; do
dotnet publish --no-restore --no-build -c Release -f netcoreapp$f -o dist/bin/$f src
done
0 commit comments