Skip to content

Commit 1aaa6c9

Browse files
committed
Progress & HD files...
1 parent 47588ef commit 1aaa6c9

File tree

3 files changed

+36
-3
lines changed

3 files changed

+36
-3
lines changed

CI/buildl.cmd

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ call SetVersion.bat
3232

3333
:: Build the solutions
3434
msbuild FlashDevelop.sln /p:Configuration=Release /p:Platform=x86 /t:Rebuild
35-
msbuild FlashDevelop.sln /p:Configuration=Release /p:Platform="AnyCPU" /t:Rebuild
35+
ping -n 5 127.0.0.1 > nul
36+
msbuild FlashDevelop.sln /p:Configuration=Release /p:Platform="Any CPU" /t:Rebuild
3637

3738
:: Check for build errors
3839
if %errorlevel% neq 0 goto :error
@@ -56,6 +57,7 @@ git clean -f -x -d FlashDevelop\Bin\Debug
5657

5758
:: Remove bad files
5859
del FlashDevelop\Bin\Debug\FlashDevelop.exe.config
60+
del FlashDevelop\Bin\Debug\FlashDevelopx64.exe.config
5961
del FlashDevelop\Bin\Debug\StartPage\images\*.* /Q
6062
for /d %%G in ("FlashDevelop\Bin\Debug\Projects\*ActionScript 3*") do rd /s /q "%%~G"
6163

@@ -73,7 +75,8 @@ call SetVersion.bat
7375

7476
:: Build the solutions
7577
msbuild FlashDevelop.sln /p:Configuration=Release /p:Platform=x86 /t:Rebuild
76-
msbuild FlashDevelop.sln /p:Configuration=Release /p:Platform="AnyCPU" /t:Rebuild
78+
ping -n 5 127.0.0.1 > nul
79+
msbuild FlashDevelop.sln /p:Configuration=Release /p:Platform="Any CPU" /t:Rebuild
7780

7881
:: Check for build errors
7982
if %errorlevel% neq 0 goto :error
@@ -94,5 +97,5 @@ start FlashDevelop\Installer\Binary\FlashDevelop.exe
9497
exit
9598

9699
:error
97-
100+
pause
98101
exit -1
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0"?>
2+
<configuration>
3+
<runtime>
4+
<disableCachingBindingFailures enabled="1" />
5+
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
6+
<probing privatePath="Plugins" />
7+
</assemblyBinding>
8+
</runtime>
9+
<startup>
10+
<supportedRuntime version="v2.0.50727 "/>
11+
</startup>
12+
<appSettings>
13+
<add key="EnableWindowsFormsHighDpiAutoResizing" value="true" />
14+
</appSettings>
15+
</configuration>
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0"?>
2+
<configuration>
3+
<runtime>
4+
<disableCachingBindingFailures enabled="1" />
5+
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
6+
<probing privatePath="Plugins" />
7+
</assemblyBinding>
8+
</runtime>
9+
<startup>
10+
<supportedRuntime version="v2.0.50727 "/>
11+
</startup>
12+
<appSettings>
13+
<add key="EnableWindowsFormsHighDpiAutoResizing" value="true" />
14+
</appSettings>
15+
</configuration>

0 commit comments

Comments
 (0)