Files
SabreTools/RombaSharp/RombaSharp.csproj

59 lines
1.8 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net462;netcoreapp2.1</TargetFrameworks>
<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'">
2016-08-31 13:00:40 -07:00
<DefineConstants>DEBUG;TRACE</DefineConstants>
<NoWarn />
<Optimize>false</Optimize>
2016-08-31 13:00:40 -07:00
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
2016-08-31 13:00:40 -07:00
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<NoWarn />
<WarningLevel>3</WarningLevel>
2016-08-31 13:00:40 -07:00
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<DefineConstants>TRACE</DefineConstants>
<NoWarn />
<Optimize>true</Optimize>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AlphaFS" Version="2.2.6" />
<PackageReference Include="Mono.Data.Sqlite.Portable" Version="1.0.3.5" />
2016-09-02 15:10:14 -07:00
</ItemGroup>
2017-05-04 02:45:46 -07:00
<ItemGroup>
<ProjectReference Include="..\SabreTools.Library\SabreTools.Library.csproj" />
2017-05-04 02:45:46 -07:00
</ItemGroup>
</Project>