Skip to content

Commit b680b03

Browse files
committed
Fix target framework in publish scripts [ci skip]
1 parent 3475f25 commit b680b03

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

publish.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pushd "%~dp0"
44
call build
55
set EXIT_CODE=%ERRORLEVEL%
66
if not %EXIT_CODE%==0 goto :end
7-
for %%f in (3.0 2.2 2.1) do (
7+
for %%f in (3.1 2.1) do (
88
dotnet publish --no-restore --no-build -c Release -f netcoreapp%%f -o dist\bin\%%f src || goto :break
99
)
1010
:break

publish.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
set -e
33
cd "$(dirname "$0")"
44
./build.sh
5-
for f in 3.0 2.2 2.1; do
5+
for f in 3.1 2.1; do
66
dotnet publish --no-restore --no-build -c Release -f netcoreapp$f -o dist/bin/$f src
77
done

0 commit comments

Comments
 (0)