Skip to content

Commit 47588ef

Browse files
committed
HaxeDevelop fix...
1 parent ecded25 commit 47588ef

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

Distros/HaxeDevelop/FlashDevelop/FlashDevelop.csproj

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,9 @@
6969
<Optimize>true</Optimize>
7070
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
7171
</PropertyGroup>
72+
<PropertyGroup>
73+
<RunPostBuildEvent>Always</RunPostBuildEvent>
74+
</PropertyGroup>
7275
<ItemGroup>
7376
<Reference Include="Scripting, Version=2.7.0.0, Culture=neutral, PublicKeyToken=70fcc3d18c749033, processorArchitecture=x86">
7477
<SpecificVersion>False</SpecificVersion>
@@ -220,7 +223,7 @@
220223
<ItemGroup>
221224
<BootstrapperPackage Include=".NETFramework,Version=v4.0">
222225
<Visible>False</Visible>
223-
<ProductName>Microsoft .NET Framework 4 %28x86 und x64%29</ProductName>
226+
<ProductName>Microsoft .NET Framework 4 %28x86 and x64%29</ProductName>
224227
<Install>true</Install>
225228
</BootstrapperPackage>
226229
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
@@ -242,6 +245,9 @@
242245
<ItemGroup>
243246
<EmbeddedResource Include="Resources\BookmarkIcon.png" />
244247
</ItemGroup>
248+
<ItemGroup>
249+
<EmbeddedResource Include="Resources\SnippetVars.ko_KR.txt" />
250+
</ItemGroup>
245251
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
246252
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
247253
Other similar extension points exist, see Microsoft.Common.targets.
@@ -253,8 +259,12 @@
253259
<PropertyGroup>
254260
<PreBuildEvent>"$(SolutionDir)\SetVersion.bat" "$(SolutionDir)"</PreBuildEvent>
255261
</PropertyGroup>
256-
<PropertyGroup>
257-
<PostBuildEvent>
258-
</PostBuildEvent>
262+
<PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
263+
<PreBuildEvent>"$(SolutionDir)\SetVersion.bat" "$(SolutionDir)" &amp;&amp; ^
264+
IF EXIST "$(TargetPath)" move /Y "$(TargetPath)" "$(TargetDir)$(TargetName)x86$(TargetExt)"</PreBuildEvent>
265+
</PropertyGroup>
266+
<PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
267+
<PostBuildEvent>IF EXIST "$(TargetPath)" move /Y "$(TargetPath)" "$(TargetDir)$(TargetName)x64$(TargetExt)"&amp;&amp; ^
268+
IF EXIST "$(TargetDir)$(TargetName)x86$(TargetExt)" move /Y "$(TargetDir)$(TargetName)x86$(TargetExt)" "$(TargetPath)"</PostBuildEvent>
259269
</PropertyGroup>
260270
</Project>

0 commit comments

Comments
 (0)