mirror of
https://github.com/fadden/6502bench.git
synced 2024-11-19 21:31:30 +00:00
17af7efbbb
The disassembled lines are now shown in the custom-styled list view. The DisplayList isn't being kept up to date on edits, but since we can't edit anything yet that's not too limiting. Pulled more code over, including the mostly-GUI-agnostic bits of the source generation and assembler execution code.
195 lines
7.8 KiB
XML
195 lines
7.8 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>SourceGenWPF</RootNamespace>
|
|
<AssemblyName>SourceGenWPF</AssemblyName>
|
|
<TargetFrameworkVersion>v4.6.2</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>
|
|
</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>
|
|
</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>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="System" />
|
|
<Reference Include="System.Data" />
|
|
<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="AddressMap.cs" />
|
|
<Compile Include="Anattrib.cs" />
|
|
<Compile Include="App.xaml.cs">
|
|
<DependentUpon>App.xaml</DependentUpon>
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<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\GenCommon.cs" />
|
|
<Compile Include="AsmGen\IAssembler.cs" />
|
|
<Compile Include="AsmGen\IGenerator.cs" />
|
|
<Compile Include="AsmGen\LabelLocalizer.cs" />
|
|
<Compile Include="AsmGen\StringGather.cs" />
|
|
<Compile Include="DisplayList.cs" />
|
|
<Compile Include="MainController.cs" />
|
|
<Compile Include="ProjWin\DataFileLoadIssue.xaml.cs">
|
|
<DependentUpon>DataFileLoadIssue.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="ProjWin\DiscardChanges.xaml.cs">
|
|
<DependentUpon>DiscardChanges.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="ProjWin\ProjectLoadIssue.xaml.cs">
|
|
<DependentUpon>ProjectLoadIssue.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="VirtualListViewSelection.cs" />
|
|
<Compile Include="WeakSymbolRef.cs" />
|
|
<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="ProjWin\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="ProjWin\CodeListItemStyle.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
<Page Include="ProjWin\DataFileLoadIssue.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="ProjWin\DiscardChanges.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="ProjWin\MainWindow.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="ProjWin\ProjectLoadIssue.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="Res\Strings.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="..\PluginCommon\PluginCommon.csproj">
|
|
<Project>{70f04543-9e46-4ad3-875a-160fd198c0ff}</Project>
|
|
<Name>PluginCommon</Name>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Resource Include="Res\SourceGenIcon.ico" />
|
|
</ItemGroup>
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
</Project> |