1
0
mirror of https://github.com/fadden/6502bench.git synced 2024-06-11 17:29:29 +00:00

Disable "prefer 32 bit" build flag

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.)
This commit is contained in:
Andy McFadden 2024-05-08 14:25:04 -07:00
parent 17bd80e39f
commit d6cfc83368
4 changed files with 17 additions and 2 deletions

View File

@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>

View File

@ -24,6 +24,7 @@
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
@ -33,6 +34,7 @@
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>Res\SourceGenIcon.ico</ApplicationIcon>

View File

@ -49,12 +49,13 @@ limitations under the License.
BorderThickness="0" HorizontalAlignment="Left"
Background="{DynamicResource {x:Static SystemColors.WindowBrushKey}}"
Click="WebSiteButton_Click"/>
<TextBlock Text="Copyright 2022 faddenSoft" Margin="0,0,0,0"/>
<TextBlock Text="Copyright 2024 faddenSoft" Margin="0,0,0,0"/>
<TextBlock Text="Created by Andy McFadden"/>
</StackPanel>
<StackPanel Grid.Column="0" Grid.Row="1" Grid.ColumnSpan="2" Margin="0,8,0,0">
<TextBlock Text="{Binding OsPlatform, FallbackValue=OS: blah blah blah}"/>
<TextBlock Text="{Binding RuntimeInfo, FallbackValue=RunTime: blah blah}"/>
<TextBlock Text="Assertions and extended validation are enabled"
Visibility="{Binding DebugMessageVisibility}"/>
<TextBlock Text="Legal stuff:" Margin="0,8,0,0"/>

View File

@ -15,6 +15,7 @@
*/
using System;
using System.IO;
using System.Runtime.InteropServices;
using System.Windows;
namespace SourceGen.WpfGui {
@ -40,6 +41,17 @@ namespace SourceGen.WpfGui {
}
}
/// <summary>
/// Runtime information, for display.
/// </summary>
public string RuntimeInfo {
get {
return "Runtime: " + RuntimeInformation.FrameworkDescription + ", " +
"OS-arch " + RuntimeInformation.OSArchitecture + ", proc-arch " +
RuntimeInformation.ProcessArchitecture;
}
}
/// <summary>
/// Determines whether a message about assertions is visible.
/// </summary>