2013-11-04 01:06:36 +00:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<Project ToolsVersion="4.0" DefaultTargets="Build" 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>{E1A23168-B571-411C-B360-2229E7225E0E}</ProjectGuid>
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
|
|
|
<RootNamespace>BizHawk.Emulation.Common</RootNamespace>
|
|
|
|
|
<AssemblyName>BizHawk.Emulation.Common</AssemblyName>
|
|
|
|
|
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
|
|
|
|
<FileAlignment>512</FileAlignment>
|
|
|
|
|
<TargetFrameworkProfile />
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
<Optimize>false</Optimize>
|
|
|
|
|
<OutputPath>bin\Debug\</OutputPath>
|
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
2013-11-14 22:09:48 +00:00
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2013-11-04 01:06:36 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
<OutputPath>bin\Release\</OutputPath>
|
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
2013-11-14 22:09:48 +00:00
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2013-11-04 01:06:36 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
2014-05-31 16:12:59 +00:00
|
|
|
|
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
|
|
|
|
<SpecificVersion>False</SpecificVersion>
|
|
|
|
|
<HintPath>..\References\Newtonsoft.Json.dll</HintPath>
|
|
|
|
|
</Reference>
|
2013-11-04 01:06:36 +00:00
|
|
|
|
<Reference Include="System" />
|
|
|
|
|
<Reference Include="System.Core" />
|
|
|
|
|
<Reference Include="System.Xml.Linq" />
|
|
|
|
|
<Reference Include="System.Data.DataSetExtensions" />
|
|
|
|
|
<Reference Include="Microsoft.CSharp" />
|
|
|
|
|
<Reference Include="System.Data" />
|
|
|
|
|
<Reference Include="System.Xml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2013-11-08 15:56:58 +00:00
|
|
|
|
<Compile Include="..\VersionInfo.cs">
|
|
|
|
|
<Link>VersionInfo.cs</Link>
|
|
|
|
|
</Compile>
|
2014-12-04 03:38:30 +00:00
|
|
|
|
<Compile Include="Base Implementations\BasicServiceProvider.cs" />
|
2014-11-30 23:05:00 +00:00
|
|
|
|
<Compile Include="Base Implementations\ControllerDefinition.cs" />
|
2014-12-04 00:43:12 +00:00
|
|
|
|
<Compile Include="Base Implementations\InputCallbackSystem.cs" />
|
2014-11-30 23:02:16 +00:00
|
|
|
|
<Compile Include="Base Implementations\NullController.cs" />
|
|
|
|
|
<Compile Include="Base Implementations\NullEmulator.cs" />
|
2014-12-01 16:56:51 +00:00
|
|
|
|
<Compile Include="Base Implementations\NullSound.cs" />
|
2014-04-22 00:38:59 +00:00
|
|
|
|
<Compile Include="CoreAttributes.cs" />
|
2014-12-01 14:28:57 +00:00
|
|
|
|
<Compile Include="CoreComms.cs" />
|
2013-11-04 01:06:36 +00:00
|
|
|
|
<Compile Include="Database\CRC32.cs" />
|
|
|
|
|
<Compile Include="Database\Database.cs" />
|
|
|
|
|
<Compile Include="Database\FirmwareDatabase.cs" />
|
|
|
|
|
<Compile Include="Database\GameInfo.cs" />
|
2014-07-31 21:15:07 +00:00
|
|
|
|
<Compile Include="EmulationExceptions.cs" />
|
2014-12-01 14:27:23 +00:00
|
|
|
|
<Compile Include="Enums.cs" />
|
2014-04-25 01:19:57 +00:00
|
|
|
|
<Compile Include="Extensions.cs" />
|
2013-11-04 01:39:19 +00:00
|
|
|
|
<Compile Include="Interfaces\IController.cs" />
|
|
|
|
|
<Compile Include="Interfaces\ICoreFileProvider.cs" />
|
2014-11-23 16:10:46 +00:00
|
|
|
|
<Compile Include="Interfaces\IDebuggable.cs" />
|
2013-11-04 01:39:19 +00:00
|
|
|
|
<Compile Include="Interfaces\IEmulator.cs" />
|
2014-12-04 02:12:57 +00:00
|
|
|
|
<Compile Include="Interfaces\IEmulatorService.cs" />
|
2014-12-04 00:43:12 +00:00
|
|
|
|
<Compile Include="Interfaces\IInputCallbackSystem.cs" />
|
2014-11-30 20:29:30 +00:00
|
|
|
|
<Compile Include="Interfaces\IInputPollable.cs" />
|
2014-09-01 18:43:41 +00:00
|
|
|
|
<Compile Include="Interfaces\IMemoryDomains.cs" />
|
2014-11-30 15:22:08 +00:00
|
|
|
|
<Compile Include="Interfaces\ISaveRam.cs" />
|
2014-12-04 03:38:30 +00:00
|
|
|
|
<Compile Include="Interfaces\IEmulatorServiceProvider.cs" />
|
2014-10-31 15:46:13 +00:00
|
|
|
|
<Compile Include="Interfaces\ISettable.cs" />
|
2013-11-04 01:39:19 +00:00
|
|
|
|
<Compile Include="Interfaces\ISoundProvider.cs" />
|
2014-11-30 16:42:58 +00:00
|
|
|
|
<Compile Include="Interfaces\IStatable.cs" />
|
2013-11-04 01:39:19 +00:00
|
|
|
|
<Compile Include="Interfaces\ISyncSoundProvider.cs" />
|
|
|
|
|
<Compile Include="Interfaces\IVideoProvider.cs" />
|
2013-11-04 02:11:40 +00:00
|
|
|
|
<Compile Include="MemoryDomain.cs" />
|
2013-11-04 01:06:36 +00:00
|
|
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
2013-11-08 15:56:58 +00:00
|
|
|
|
<Compile Include="Properties\svnrev.cs" />
|
2013-11-14 22:09:48 +00:00
|
|
|
|
<Compile Include="Sound\HuC6280PSG.cs" />
|
|
|
|
|
<Compile Include="Sound\MMC5Audio.cs" />
|
|
|
|
|
<Compile Include="Sound\SN76489.cs" />
|
|
|
|
|
<Compile Include="Sound\Sunsoft5BAudio.cs" />
|
|
|
|
|
<Compile Include="Sound\Utilities\BlipBuffer.cs" />
|
|
|
|
|
<Compile Include="Sound\Utilities\BufferedAsync.cs" />
|
|
|
|
|
<Compile Include="Sound\Utilities\DCFilter.cs" />
|
|
|
|
|
<Compile Include="Sound\Utilities\Equalizer.cs" />
|
|
|
|
|
<Compile Include="Sound\Utilities\Metaspu.cs" />
|
|
|
|
|
<Compile Include="Sound\Utilities\SoundMixer.cs" />
|
|
|
|
|
<Compile Include="Sound\Utilities\SpeexResampler.cs" />
|
|
|
|
|
<Compile Include="Sound\Utilities\Waves.cs" />
|
|
|
|
|
<Compile Include="Sound\VRC6Alt.cs" />
|
|
|
|
|
<Compile Include="Sound\YM2413.cs" />
|
|
|
|
|
<Compile Include="Sound\YM2612.cs" />
|
2014-05-31 16:12:59 +00:00
|
|
|
|
<Compile Include="TextState.cs" />
|
2013-11-04 01:06:36 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\BizHawk.Common\BizHawk.Common.csproj">
|
|
|
|
|
<Project>{866f8d13-0678-4ff9-80a4-a3993fd4d8a3}</Project>
|
|
|
|
|
<Name>BizHawk.Common</Name>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
2013-11-08 15:56:58 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<PreBuildEvent>"$(SolutionDir)subwcrev.bat" "$(ProjectDir)"</PreBuildEvent>
|
|
|
|
|
</PropertyGroup>
|
2013-11-04 01:06:36 +00:00
|
|
|
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
|
|
|
|
Other similar extension points exist, see Microsoft.Common.targets.
|
|
|
|
|
<Target Name="BeforeBuild">
|
|
|
|
|
</Target>
|
|
|
|
|
<Target Name="AfterBuild">
|
|
|
|
|
</Target>
|
|
|
|
|
-->
|
|
|
|
|
</Project>
|