mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
132 lines
4.4 KiB
XML
132 lines
4.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net462;netstandard2.0</TargetFrameworks>
|
|
<RuntimeIdentifiers>win10-x64;win7-x86</RuntimeIdentifiers>
|
|
<Configurations>Debug;Release;Mono</Configurations>
|
|
<Platforms>AnyCPU;x64</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Mono|AnyCPU'">
|
|
<DefineConstants>DEBUG;TRACE;MONO</DefineConstants>
|
|
<Optimize>false</Optimize>
|
|
<NoWarn />
|
|
<WarningLevel>3</WarningLevel>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Mono|x64'">
|
|
<DefineConstants>DEBUG;TRACE;MONO</DefineConstants>
|
|
<NoWarn />
|
|
<Optimize>false</Optimize>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<Optimize>false</Optimize>
|
|
<NoWarn />
|
|
<WarningLevel>3</WarningLevel>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<NoWarn />
|
|
<Optimize>false</Optimize>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<Optimize>true</Optimize>
|
|
<NoWarn />
|
|
<WarningLevel>3</WarningLevel>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<NoWarn />
|
|
<Optimize>true</Optimize>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="7za.dll" />
|
|
<None Remove="Skippers\a7800.xml" />
|
|
<None Remove="Skippers\fds.xml" />
|
|
<None Remove="Skippers\lynx.xml" />
|
|
<None Remove="Skippers\n64.xml" />
|
|
<None Remove="Skippers\nes.xml" />
|
|
<None Remove="Skippers\pce.xml" />
|
|
<None Remove="Skippers\psid.xml" />
|
|
<None Remove="Skippers\snes.xml" />
|
|
<None Remove="Skippers\spc.xml" />
|
|
<None Remove="sqlite3.dll" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="7za.dll">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="Skippers\a7800.xml">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="Skippers\fds.xml">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="Skippers\lynx.xml">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="Skippers\n64.xml">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="Skippers\nes.xml">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="Skippers\pce.xml">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="Skippers\psid.xml">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="Skippers\snes.xml">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="Skippers\spc.xml">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="sqlite3.dll">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AlphaFS" Version="2.2.6" />
|
|
<PackageReference Include="Mono.Data.Sqlite.Portable" Version="1.0.3.5" />
|
|
<PackageReference Include="SevenZipSharp.Net45" Version="1.0.19" />
|
|
<PackageReference Include="SharpCompress" Version="0.23.0" />
|
|
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="Licenses\LICENSE">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="Licenses\LICENSE.alphafs.txt">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="Licenses\LICENSE.jzlib.txt">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="Licenses\LICENSE.sevenzipsharp.txt">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="Licenses\LICENSE.sharpcompress.txt">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="Licenses\LICENSE.zlib.txt">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="README.1ST">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|