mirror of
https://github.com/fadden/6502bench.git
synced 2026-03-10 23:22:19 +00:00
The project was targeting 4.6.2, which was the current version when work first began. This update should not cause any change in behavior. The only real value in doing this is that it means people working on the project won't have to install the older SDK components. This may require performing a manual "clobber" in existing source trees: close Visual Studio, then in each of the seven projects, manually remove the "bin" and "obj" directories. Using the VS "clean" feature doesn't seem to clear out all of the dependencies, and you get weird build complaints about missing System classes. I'm not anticipating any compatibility issues with this switch. Framework 4.8 shipped in April 2019, and the final version of .NET Framework was released August 2022, so anybody who has Framework installed should have a compatible version. This change does not move the libraries from .NET Standard 2.0 to 2.1, because 2.0 was the last version supported by Framework. (At some point it might be useful to upgrade to the current .NET, but that is a more significant change.)
524 lines
20 KiB
XML
524 lines
20 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
|
<PropertyGroup>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
<ProjectGuid>{30C35BBC-B9ED-4723-8F9D-597D51CCB13A}</ProjectGuid>
|
|
<OutputType>WinExe</OutputType>
|
|
<RootNamespace>SourceGen</RootNamespace>
|
|
<AssemblyName>SourceGen</AssemblyName>
|
|
<TargetFrameworkVersion>v4.8.1</TargetFrameworkVersion>
|
|
<FileAlignment>512</FileAlignment>
|
|
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
|
<WarningLevel>4</WarningLevel>
|
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
|
<Deterministic>true</Deterministic>
|
|
<TargetFrameworkProfile />
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<OutputPath>bin\Debug\</OutputPath>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<Prefer32Bit>false</Prefer32Bit>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<DebugType>pdbonly</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<OutputPath>bin\Release\</OutputPath>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<Prefer32Bit>false</Prefer32Bit>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<ApplicationIcon>Res\SourceGenIcon.ico</ApplicationIcon>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="System" />
|
|
<Reference Include="System.Data" />
|
|
<Reference Include="System.Drawing" />
|
|
<Reference Include="System.Web.Extensions" />
|
|
<Reference Include="System.Xml" />
|
|
<Reference Include="Microsoft.CSharp" />
|
|
<Reference Include="System.Core" />
|
|
<Reference Include="System.Xml.Linq" />
|
|
<Reference Include="System.Data.DataSetExtensions" />
|
|
<Reference Include="System.Net.Http" />
|
|
<Reference Include="System.Xaml">
|
|
<RequiredTargetFramework>4.0</RequiredTargetFramework>
|
|
</Reference>
|
|
<Reference Include="WindowsBase" />
|
|
<Reference Include="PresentationCore" />
|
|
<Reference Include="PresentationFramework" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ApplicationDefinition Include="App.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</ApplicationDefinition>
|
|
<Compile Include="Anattrib.cs" />
|
|
<Compile Include="App.xaml.cs">
|
|
<DependentUpon>App.xaml</DependentUpon>
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Include="AsmGen\AsmAcme.cs" />
|
|
<Compile Include="AsmGen\AsmCc65.cs" />
|
|
<Compile Include="AsmGen\AsmMerlin32.cs" />
|
|
<Compile Include="AsmGen\AsmTass64.cs" />
|
|
<Compile Include="AsmGen\AssemblerConfig.cs" />
|
|
<Compile Include="AsmGen\AssemblerInfo.cs" />
|
|
<Compile Include="AsmGen\AssemblerVersion.cs" />
|
|
<Compile Include="AsmGen\BinaryInclude.cs" />
|
|
<Compile Include="AsmGen\GenCommon.cs" />
|
|
<Compile Include="AsmGen\IAssembler.cs" />
|
|
<Compile Include="AsmGen\IGenerator.cs" />
|
|
<Compile Include="AsmGen\LabelLocalizer.cs" />
|
|
<Compile Include="DailyTips.cs" />
|
|
<Compile Include="Exporter.cs" />
|
|
<Compile Include="FormattedOperandCache.cs" />
|
|
<Compile Include="LabelFileGenerator.cs" />
|
|
<Compile Include="LocalVariableLookup.cs" />
|
|
<Compile Include="MessageList.cs" />
|
|
<Compile Include="Sgec.cs" />
|
|
<Compile Include="Tests\GenTest.cs" />
|
|
<Compile Include="Tests\ProgressMessage.cs" />
|
|
<Compile Include="Tests\WpfGui\GenTestRunner.xaml.cs">
|
|
<DependentUpon>GenTestRunner.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Tools\ApplesoftToHtml.cs" />
|
|
<Compile Include="Tools\Omf\Loader.cs" />
|
|
<Compile Include="Tools\Omf\OmfFile.cs" />
|
|
<Compile Include="Tools\Omf\OmfRecord.cs" />
|
|
<Compile Include="Tools\Omf\OmfReloc.cs" />
|
|
<Compile Include="Tools\Omf\OmfSegment.cs" />
|
|
<Compile Include="Tools\Omf\WpfGui\OmfSegmentViewer.xaml.cs">
|
|
<DependentUpon>OmfSegmentViewer.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Tools\Omf\WpfGui\OmfViewer.xaml.cs">
|
|
<DependentUpon>OmfViewer.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Tools\VirtualHexDump.cs" />
|
|
<Compile Include="Tools\WpfGui\Apple2ScreenChart.xaml.cs">
|
|
<DependentUpon>Apple2ScreenChart.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Tools\WpfGui\FileConcatenator.xaml.cs">
|
|
<DependentUpon>FileConcatenator.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Tools\WpfGui\FileSlicer.xaml.cs">
|
|
<DependentUpon>FileSlicer.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Tools\WpfGui\InstructionChart.xaml.cs">
|
|
<DependentUpon>InstructionChart.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Tools\WpfGui\AsciiChart.xaml.cs">
|
|
<DependentUpon>AsciiChart.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Tools\WpfGui\ShowText.xaml.cs">
|
|
<DependentUpon>ShowText.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="LocalVariableTable.cs" />
|
|
<Compile Include="RenderAddressMap.cs" />
|
|
<Compile Include="Visualization.cs" />
|
|
<Compile Include="VisBitmapAnimation.cs" />
|
|
<Compile Include="VisualizationSet.cs" />
|
|
<Compile Include="VisWireframeAnimation.cs" />
|
|
<Compile Include="WireframeObject.cs" />
|
|
<Compile Include="WpfGui\AboutBox.xaml.cs">
|
|
<DependentUpon>AboutBox.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="WpfGui\EditAppSettings.xaml.cs">
|
|
<DependentUpon>EditAppSettings.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="WpfGui\EditBitmapAnimation.xaml.cs">
|
|
<DependentUpon>EditBitmapAnimation.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="WpfGui\EditComment.xaml.cs">
|
|
<DependentUpon>EditComment.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="WpfGui\EditDataBank.xaml.cs">
|
|
<DependentUpon>EditDataBank.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="WpfGui\EditDataOperand.xaml.cs">
|
|
<DependentUpon>EditDataOperand.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="WpfGui\EditDefSymbol.xaml.cs">
|
|
<DependentUpon>EditDefSymbol.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="WpfGui\EditInstructionOperand.xaml.cs">
|
|
<DependentUpon>EditInstructionOperand.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="WpfGui\EditLabel.xaml.cs">
|
|
<DependentUpon>EditLabel.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="WpfGui\EditLocalVariableTable.xaml.cs">
|
|
<DependentUpon>EditLocalVariableTable.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="WpfGui\EditLongComment.xaml.cs">
|
|
<DependentUpon>EditLongComment.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="WpfGui\EditLvTableLocation.xaml.cs">
|
|
<DependentUpon>EditLvTableLocation.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="WpfGui\EditNote.xaml.cs">
|
|
<DependentUpon>EditNote.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="WpfGui\EditProjectProperties.xaml.cs">
|
|
<DependentUpon>EditProjectProperties.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="WpfGui\EditVisualization.xaml.cs">
|
|
<DependentUpon>EditVisualization.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="WpfGui\EditVisualizationSet.xaml.cs">
|
|
<DependentUpon>EditVisualizationSet.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="WpfGui\Export.xaml.cs">
|
|
<DependentUpon>Export.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="WpfGui\ExportVisualization.xaml.cs">
|
|
<DependentUpon>ExportVisualization.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="WpfGui\FindBox.xaml.cs">
|
|
<DependentUpon>FindBox.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="WpfGui\FontPicker.xaml.cs">
|
|
<DependentUpon>FontPicker.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="WpfGui\FormatAddressTable.xaml.cs">
|
|
<DependentUpon>FormatAddressTable.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="WpfGui\GenerateLabels.xaml.cs">
|
|
<DependentUpon>GenerateLabels.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="WpfGui\GotoBox.xaml.cs">
|
|
<DependentUpon>GotoBox.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Tools\WpfGui\HexDumpViewer.xaml.cs">
|
|
<DependentUpon>HexDumpViewer.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="AsmGen\WpfGui\GenAndAsm.xaml.cs">
|
|
<DependentUpon>GenAndAsm.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="DisplayList.cs" />
|
|
<Compile Include="MainController.cs" />
|
|
<Compile Include="WpfGui\DataFileLoadIssue.xaml.cs">
|
|
<DependentUpon>DataFileLoadIssue.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="WpfGui\DiscardChanges.xaml.cs">
|
|
<DependentUpon>DiscardChanges.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="WpfGui\EditAddress.xaml.cs">
|
|
<DependentUpon>EditAddress.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="WpfGui\EditStatusFlags.xaml.cs">
|
|
<DependentUpon>EditStatusFlags.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="WpfGui\NewProject.xaml.cs">
|
|
<DependentUpon>NewProject.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="WpfGui\ProjectLoadIssues.xaml.cs">
|
|
<DependentUpon>ProjectLoadIssues.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="PseudoOp.cs" />
|
|
<Compile Include="Res\Strings.xaml.cs" />
|
|
<Compile Include="RuntimeDataAccess.cs" />
|
|
<Compile Include="Sandbox\DomainManager.cs" />
|
|
<Compile Include="Sandbox\PluginDllCache.cs" />
|
|
<Compile Include="Sandbox\ScriptManager.cs" />
|
|
<Compile Include="Sandbox\Sponsor.cs" />
|
|
<Compile Include="Symbol.cs" />
|
|
<Compile Include="SymbolTable.cs" />
|
|
<Compile Include="SystemDefaults.cs" />
|
|
<Compile Include="SystemDefs.cs" />
|
|
<Compile Include="UndoableChange.cs" />
|
|
<Compile Include="DisplayListSelection.cs" />
|
|
<Compile Include="WeakSymbolRef.cs" />
|
|
<Compile Include="WpfGui\RecoveryChoice.xaml.cs">
|
|
<DependentUpon>RecoveryChoice.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="WpfGui\ReferenceTable.xaml.cs">
|
|
<DependentUpon>ReferenceTable.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="WpfGui\ShowWireframeAnimation.xaml.cs">
|
|
<DependentUpon>ShowWireframeAnimation.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="XrefSet.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="AppSettings.cs" />
|
|
<Compile Include="AutoLabel.cs" />
|
|
<Compile Include="ChangeSet.cs" />
|
|
<Compile Include="CodeAnalysis.cs" />
|
|
<Compile Include="DataAnalysis.cs" />
|
|
<Compile Include="DefSymbol.cs" />
|
|
<Compile Include="DisasmProject.cs" />
|
|
<Compile Include="LineListGen.cs" />
|
|
<Compile Include="ExternalFile.cs" />
|
|
<Compile Include="FormatDescriptor.cs" />
|
|
<Compile Include="HelpAccess.cs" />
|
|
<Compile Include="MultiLineComment.cs" />
|
|
<Compile Include="NavStack.cs" />
|
|
<Compile Include="PlatformSymbols.cs" />
|
|
<Compile Include="ProjectFile.cs" />
|
|
<Compile Include="ProjectProperties.cs" />
|
|
<Compile Include="WpfGui\MainWindow.xaml.cs">
|
|
<DependentUpon>MainWindow.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Properties\AssemblyInfo.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Include="Properties\Resources.Designer.cs">
|
|
<AutoGen>True</AutoGen>
|
|
<DesignTime>True</DesignTime>
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Properties\Settings.Designer.cs">
|
|
<AutoGen>True</AutoGen>
|
|
<DependentUpon>Settings.settings</DependentUpon>
|
|
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
|
</Compile>
|
|
<EmbeddedResource Include="Properties\Resources.resx">
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
</EmbeddedResource>
|
|
<None Include="Properties\Settings.settings">
|
|
<Generator>SettingsSingleFileGenerator</Generator>
|
|
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
|
</None>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="App.config" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Resource Include="Res\Logo.png" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Page Include="Res\Theme_Dark.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="Res\Theme_Light.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="Tests\WpfGui\GenTestRunner.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="Tools\Omf\WpfGui\OmfSegmentViewer.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="Tools\Omf\WpfGui\OmfViewer.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="Tools\WpfGui\Apple2ScreenChart.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="Tools\WpfGui\FileConcatenator.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="Tools\WpfGui\FileSlicer.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="Tools\WpfGui\InstructionChart.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
<Page Include="Tools\WpfGui\AsciiChart.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="Tools\WpfGui\ShowText.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="WpfGui\AboutBox.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="WpfGui\EditAppSettings.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="WpfGui\EditBitmapAnimation.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="WpfGui\EditComment.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="WpfGui\EditDataBank.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="WpfGui\EditDataOperand.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="WpfGui\EditDefSymbol.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="WpfGui\EditInstructionOperand.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="WpfGui\EditLabel.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="WpfGui\EditLocalVariableTable.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="WpfGui\EditLongComment.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="WpfGui\EditLvTableLocation.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="WpfGui\EditNote.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="WpfGui\EditProjectProperties.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="WpfGui\EditVisualization.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="WpfGui\EditVisualizationSet.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="WpfGui\Export.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="WpfGui\ExportVisualization.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="WpfGui\FindBox.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="WpfGui\FontPicker.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="WpfGui\FormatAddressTable.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="WpfGui\GenerateLabels.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="WpfGui\GotoBox.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="Tools\WpfGui\HexDumpViewer.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="AsmGen\WpfGui\GenAndAsm.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="WpfGui\CodeListItemStyle.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
<Page Include="WpfGui\DataFileLoadIssue.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="WpfGui\DiscardChanges.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="WpfGui\EditAddress.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="WpfGui\EditStatusFlags.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="WpfGui\MainWindow.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="WpfGui\NewProject.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="WpfGui\ProjectLoadIssues.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="Res\CommandIcons.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="Res\Strings.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="WpfGui\RecoveryChoice.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="WpfGui\ReferenceTable.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="WpfGui\ShowWireframeAnimation.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Asm65\Asm65.csproj">
|
|
<Project>{65a50bd0-ab07-492b-b51c-4ca1b700224d}</Project>
|
|
<Name>Asm65</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\CommonUtil\CommonUtil.csproj">
|
|
<Project>{a2993eac-35d8-4768-8c54-152b4e14d69c}</Project>
|
|
<Name>CommonUtil</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\CommonWPF\CommonWPF.csproj">
|
|
<Project>{1299aa2e-606d-4f3e-b3a9-3f9421e44667}</Project>
|
|
<Name>CommonWPF</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\PluginCommon\PluginCommon.csproj">
|
|
<Project>{70f04543-9e46-4ad3-875a-160fd198c0ff}</Project>
|
|
<Name>PluginCommon</Name>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Resource Include="Res\SourceGenIcon.ico" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Resource Include="Res\RedX.png" />
|
|
</ItemGroup>
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
</Project> |