mirror of
https://github.com/FastTunnel/FastTunnel.git
synced 2025-02-08 02:39:29 +08:00
11 lines
291 B
Batchfile
11 lines
291 B
Batchfile
@echo off
|
|
|
|
for /d %%p in (FastTunnel.Client,FastTunnel.Server,SuiDao.Client) do (
|
|
CD ./%%p
|
|
for %%I in (win-x64,osx-x64,linux-x64) do (
|
|
dotnet publish -o=../publish/%%p.%%I -c=release -r=%%I -f=netcoreapp3.1 & 7z a -tzip ../publish/%%p.%%I.zip ../publish/%%p.%%I
|
|
)
|
|
cd ../
|
|
)
|
|
|
|
pause |