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