Skip to content

Commit 718ce31

Browse files
committed
Fixing scripts...
1 parent d330779 commit 718ce31

File tree

3 files changed

+15
-8
lines changed

3 files changed

+15
-8
lines changed

CI/build.cmd

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,17 @@ set PATH=%PATH%;C:\Program Files\7-Zip\
1212
if %errorlevel% neq 0 goto :error
1313

1414
:: Build the PluginCore
15-
msbuild PluginCore\PluginCore.csproj /p:Configuration=Release /p:Platform=x86 /t:Rebuild
15+
msbuild PluginCore\PluginCore.csproj /p:Configuration=Release /p:Platform="Any CPU" /t:Rebuild
1616

1717
:: Check for build errors
1818
if %errorlevel% neq 0 goto :error
1919

2020
:: Extract version from HEAD
2121
call SetVersion.bat
2222

23-
:: Build the solution
23+
:: Build the solutions
2424
msbuild FlashDevelop.sln /p:Configuration=Release /p:Platform=x86 /t:Rebuild
25+
msbuild FlashDevelop.sln /p:Configuration=Release /p:Platform="Any CPU" /t:Rebuild
2526

2627
:: Check for build errors
2728
if %errorlevel% neq 0 goto :error
@@ -52,16 +53,17 @@ for /d %%G in ("FlashDevelop\Bin\Debug\Projects\*ActionScript 3*") do rd /s /q "
5253
xcopy Distros\HaxeDevelop /s /e /y
5354

5455
:: Build the PluginCore
55-
msbuild PluginCore\PluginCore.csproj /p:Configuration=Release /p:Platform=x86 /t:Rebuild
56+
msbuild PluginCore\PluginCore.csproj /p:Configuration=Release /p:Platform="Any CPU" /t:Rebuild
5657

5758
:: Check for build errors
5859
if %errorlevel% neq 0 goto :error
5960

6061
:: Extract version from HEAD
6162
call SetVersion.bat
6263

63-
:: Build the solution
64+
:: Build the solutions
6465
msbuild FlashDevelop.sln /p:Configuration=Release /p:Platform=x86 /t:Rebuild
66+
msbuild FlashDevelop.sln /p:Configuration=Release /p:Platform="Any CPU" /t:Rebuild
6567

6668
:: Check for build errors
6769
if %errorlevel% neq 0 goto :error

CI/buildl.cmd

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,17 @@ del FlashDevelop\Installer\Binary\*.zip /Q
2222
if %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="Any CPU" /t:Rebuild
2626

2727
:: Check for build errors
2828
if %errorlevel% neq 0 goto :error
2929

3030
:: Extract version from HEAD
3131
call SetVersion.bat
3232

33-
:: Build the solution
33+
:: Build the solutions
3434
msbuild FlashDevelop.sln /p:Configuration=Release /p:Platform=x86 /t:Rebuild
35+
msbuild FlashDevelop.sln /p:Configuration=Release /p:Platform="Any CPU" /t:Rebuild
3536

3637
:: Check for build errors
3738
if %errorlevel% neq 0 goto :error
@@ -62,16 +63,17 @@ for /d %%G in ("FlashDevelop\Bin\Debug\Projects\*ActionScript 3*") do rd /s /q "
6263
xcopy Distros\HaxeDevelop /s /e /y
6364

6465
:: Build the PluginCore
65-
msbuild PluginCore\PluginCore.csproj /p:Configuration=Release /p:Platform=x86 /t:Rebuild
66+
msbuild PluginCore\PluginCore.csproj /p:Configuration=Release /p:Platform="Any CPU" /t:Rebuild
6667

6768
:: Check for build errors
6869
if %errorlevel% neq 0 goto :error
6970

7071
:: Extract version from HEAD
7172
call SetVersion.bat
7273

73-
:: Build the solution
74+
:: Build the solutions
7475
msbuild FlashDevelop.sln /p:Configuration=Release /p:Platform=x86 /t:Rebuild
76+
msbuild FlashDevelop.sln /p:Configuration=Release /p:Platform="Any CPU" /t:Rebuild
7577

7678
:: Check for build errors
7779
if %errorlevel% neq 0 goto :error

FlashDevelop/Installer/Installer.nsi

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -550,8 +550,11 @@ Section "un.${DIST_NAME}" UninstMain
550550
Delete "$INSTDIR\Exceptions.log"
551551
Delete "$INSTDIR\${DIST_NAME}.exe"
552552
Delete "$INSTDIR\${DIST_NAME}.exe.config"
553+
Delete "$INSTDIR\${DIST_NAME}x64.exe"
554+
Delete "$INSTDIR\${DIST_NAME}x64.exe.config"
553555
Delete "$INSTDIR\PluginCore.dll"
554556
Delete "$INSTDIR\SciLexer.dll"
557+
Delete "$INSTDIR\SciLexer64.dll"
555558
Delete "$INSTDIR\Scripting.dll"
556559
Delete "$INSTDIR\Antlr3.dll"
557560
Delete "$INSTDIR\SwfOp.dll"

0 commit comments

Comments
 (0)