2022-04-16 21:36:16 -07:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-12-18 13:31:29 -08:00
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2022-12-29 23:55:38 -08:00
|
|
|
|
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
|
2020-12-18 13:31:29 -08:00
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2020-12-18 14:22:56 -08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\SabreTools.Core\SabreTools.Core.csproj" />
|
2020-12-19 22:08:42 -08:00
|
|
|
|
<ProjectReference Include="..\SabreTools.DatFiles\SabreTools.DatFiles.csproj" />
|
2020-12-18 23:31:38 -08:00
|
|
|
|
<ProjectReference Include="..\SabreTools.DatItems\SabreTools.DatItems.csproj" />
|
2020-12-20 14:20:03 -08:00
|
|
|
|
<ProjectReference Include="..\SabreTools.DatTools\SabreTools.DatTools.csproj" />
|
2020-12-19 15:53:19 -08:00
|
|
|
|
<ProjectReference Include="..\SabreTools.FileTypes\SabreTools.FileTypes.csproj" />
|
2020-12-18 23:06:28 -08:00
|
|
|
|
<ProjectReference Include="..\SabreTools.Filtering\SabreTools.Filtering.csproj" />
|
2020-12-18 22:37:33 -08:00
|
|
|
|
<ProjectReference Include="..\SabreTools.IO\SabreTools.IO.csproj" />
|
2023-07-12 17:21:19 -04:00
|
|
|
|
<ProjectReference Include="..\SabreTools.Models\SabreTools.Models.csproj" />
|
2020-12-18 17:07:58 -08:00
|
|
|
|
<ProjectReference Include="..\SabreTools.Skippers\SabreTools.Skippers.csproj" />
|
2020-12-18 14:22:56 -08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2020-12-20 14:20:03 -08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Remove="TestData\*" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Content Include="TestData\*">
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2020-12-18 13:31:29 -08:00
|
|
|
|
<ItemGroup>
|
2022-11-03 15:16:47 -07:00
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
|
|
|
|
|
|
<PackageReference Include="xunit" Version="2.4.2" />
|
|
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
|
2020-12-18 13:31:29 -08:00
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
</PackageReference>
|
2022-11-03 15:16:47 -07:00
|
|
|
|
<PackageReference Include="coverlet.collector" Version="3.2.0">
|
2020-12-18 13:31:29 -08:00
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
</PackageReference>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|