@@ -22,15 +22,17 @@ del FlashDevelop\Installer\Binary\*.zip /Q
2222if %errorlevel% neq 0 goto :error
2323
2424:: Build the PluginCore
25- msbuild PluginCore\PluginCore.csproj /p:Configuration=Release /p:Platform=x86 /t:Rebuild
25+ msbuild PluginCore\PluginCore.csproj /p:Configuration=Release /p:Platform=" AnyCPU " /t:Rebuild
2626
2727:: Check for build errors
2828if %errorlevel% neq 0 goto :error
2929
3030:: Extract version from HEAD
3131call SetVersion.bat
3232
33- :: Build the solution
33+ :: Build the solutions
34+ msbuild FlashDevelop.sln /p:Configuration=Release /p:Platform=" Any CPU" /t:Rebuild
35+ ping -n 5 127.0.0.1 > nul
3436msbuild FlashDevelop.sln /p:Configuration=Release /p:Platform=x86 /t:Rebuild
3537
3638:: Check for build errors
@@ -55,22 +57,25 @@ git clean -f -x -d FlashDevelop\Bin\Debug
5557
5658:: Remove bad files
5759del FlashDevelop\Bin\Debug\FlashDevelop.exe.config
60+ del FlashDevelop\Bin\Debug\FlashDevelopx64.exe.config
5861del FlashDevelop\Bin\Debug\StartPage\images\*.* /Q
5962for /d %%G in (" FlashDevelop\Bin\Debug\Projects\*ActionScript 3*" ) do rd /s /q " %%~G "
6063
6164:: Copy distro files
6265xcopy Distros\HaxeDevelop /s /e /y
6366
6467:: Build the PluginCore
65- msbuild PluginCore\PluginCore.csproj /p:Configuration=Release /p:Platform=x86 /t:Rebuild
68+ msbuild PluginCore\PluginCore.csproj /p:Configuration=Release /p:Platform=" AnyCPU " /t:Rebuild
6669
6770:: Check for build errors
6871if %errorlevel% neq 0 goto :error
6972
7073:: Extract version from HEAD
7174call SetVersion.bat
7275
73- :: Build the solution
76+ :: Build the solutions
77+ msbuild FlashDevelop.sln /p:Configuration=Release /p:Platform=" Any CPU" /t:Rebuild
78+ ping -n 5 127.0.0.1 > nul
7479msbuild FlashDevelop.sln /p:Configuration=Release /p:Platform=x86 /t:Rebuild
7580
7681:: Check for build errors
0 commit comments