mirror of
https://github.com/fadden/6502bench.git
synced 2024-11-29 10:50:28 +00:00
d6cfc83368
The build flag causes the application to run as a 32-bit app on 64-bit systems, which we don't want. We're still using "Any CPU" as the platform target, so it will continue to work on 32-bit x86 systems; we just no longer force it to always be 32-bit. This only affects the main .NET Framework application executable. The setting is not relevant for the libraries. (Note to future self: the way things work changed with .NET Core, which requires different executables for different targets, specified with the RID. The older .NET Framework is Windows-only, which makes it easier to have a single multi-target EXE.)
27 lines
685 B
XML
27 lines
685 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\CommonUtil\CommonUtil.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Update="Properties\Resources.Designer.cs">
|
|
<DesignTime>True</DesignTime>
|
|
<AutoGen>True</AutoGen>
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Update="Properties\Resources.resx">
|
|
<Generator>PublicResXFileCodeGenerator</Generator>
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
|
|
</Project>
|