mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
19 lines
493 B
Batchfile
19 lines
493 B
Batchfile
@echo off
|
|
|
|
set DOTNET_HOME=%windir%\Microsoft.NET\Framework64\v4.0.30319
|
|
set ReleaseFolder=Release
|
|
|
|
if exist %ReleaseFolder% RMDIR %ReleaseFolder% /S /Q
|
|
|
|
%DOTNET_HOME%\MSBUILD.exe wox.sln /p:Configuration=Release
|
|
|
|
REM default plugins
|
|
%DOTNET_HOME%\MSBUILD.exe Plugins\Wox.Plugin.PluginManagement\Wox.Plugin.PluginManagement.Release.csproj
|
|
|
|
copy wox\config.json %ReleaseFolder%\cofnig.json
|
|
for %%f in (%ReleaseFolder%\*.xml) do (
|
|
del %%f
|
|
)
|
|
for %%f in (%ReleaseFolder%\*.pdb) do (
|
|
del %%f
|
|
)
|