mirror of
https://github.com/FastTunnel/FastTunnel.git
synced 2025-02-08 02:39:29 +08:00
12 lines
390 B
Batchfile
12 lines
390 B
Batchfile
@echo off
|
|
|
|
for /d %%p in (FastTunnel.Client,FastTunnel.Server) do (
|
|
CD ./%%p
|
|
|
|
for %%I in (win-x64,osx-x64,linux-x64) do (
|
|
dotnet publish -o=../publish/%%p.%%I -c=release -r=%%I /p:PublishSingleFile=true /p:PublishTrimmed=true & echo f |xcopy %~dp0%%p\appsettings.json %~dp0publish\%%p.%%I\appsettings.json & 7z a -tzip ../publish/%%p.%%I.zip ../publish/%%p.%%I
|
|
)
|
|
cd ../
|
|
)
|
|
|
|
pause |