trying to make it compile more consistently

project seems to have some trouble if .Net 10 SDK is installed. Hopefully these changes will help.
This commit is contained in:
haven1433 2025-11-27 15:13:16 -06:00
parent 2f124c7ded
commit eadc9cca76
3 changed files with 10 additions and 2 deletions

View File

@ -5,6 +5,14 @@
<ImplicitUsings>false</ImplicitUsings>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
<GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
<Nullable>annotations</Nullable>
<CodeGenDir>$(SolutionDir)artifacts\$(AssemblyName)\codegen\</CodeGenDir>
<AutoImplement>$(SolutionDir)artifacts\AutoImplement.Tool\bin\$(Configuration)\$(TargetFramework)\AutoImplement.Tool</AutoImplement>

View File

@ -255,7 +255,7 @@ namespace HavenSoft.HexManiac.Core.ViewModels.Visitors {
if (Result) NewFormat = new UnderEdit(color, Input.ToString(), 2);
}
public void Visit(Tuple tuple, byte data) {
public void Visit(DataFormats.Tuple tuple, byte data) {
if (" +,".Contains(Input)) {
Result = false;
return;

View File

@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<AssemblyName>HexManiacAdvance</AssemblyName>