Files
SabreTools/RombaSharp/RombaSharp.csproj

24 lines
691 B
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net48;netcoreapp3.1</TargetFrameworks>
2019-03-29 00:24:36 -07:00
<RuntimeIdentifiers>win10-x64;win7-x86</RuntimeIdentifiers>
<Configurations>Debug;Release</Configurations>
<Platforms>AnyCPU;x64</Platforms>
</PropertyGroup>
2020-06-11 10:22:00 -07:00
<PropertyGroup Condition="'$(TargetFramework)'!='netcoreapp3.1'">
<DefineConstants>NET_FRAMEWORK</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Data.Sqlite" Version="3.1.6" />
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>