FruityFoundation/Base.Tests/Base.Tests.csproj

28 lines
887 B
XML
Raw Normal View History

2021-11-19 00:12:02 -05:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
2023-08-01 22:12:54 -04:00
2023-12-17 13:47:03 -05:00
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<LangVersion>12</LangVersion>
2021-11-19 00:12:02 -05:00
</PropertyGroup>
<ItemGroup>
2022-12-23 12:41:36 -05:00
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.1" />
2022-11-30 23:14:27 -05:00
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.3.1" />
<PackageReference Include="coverlet.collector" Version="3.2.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
2021-11-19 00:12:02 -05:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Base\Base.csproj" />
</ItemGroup>
2023-08-01 22:12:54 -04:00
2021-11-19 00:12:02 -05:00
</Project>