FastTunnel/publish.cmd
2019-12-26 19:29:10 +08:00

9 lines
228 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 -f=netcoreapp3.1 -r=%%I --self-contained
)
)
pause