2019-07-25 16:39:43 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
|
|
|
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2020-03-23 18:35:00 +01:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<DefineConstants>TRACE;ModernKeePassLib</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2019-07-25 16:39:43 +02:00
|
|
|
|
<ItemGroup>
|
2020-03-16 15:28:05 +01:00
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.0-preview-20200310-03" />
|
2019-07-29 17:30:15 +02:00
|
|
|
|
<PackageReference Include="NUnit" Version="3.12.0" />
|
2020-03-16 15:28:05 +01:00
|
|
|
|
<PackageReference Include="NUnit3TestAdapter" Version="3.16.1">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2019-07-25 16:39:43 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2020-03-23 19:23:23 +01:00
|
|
|
|
<ProjectReference Include="..\ModernKeePassLib\ModernKeePassLib.csproj" />
|
2019-07-25 16:39:43 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Reference Include="Windows">
|
|
|
|
|
<HintPath>..\ModernKeePassLib\Libs\Windows.winmd</HintPath>
|
|
|
|
|
<IsWinMDFile>true</IsWinMDFile>
|
|
|
|
|
</Reference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|