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" />
|
2023-07-13 12:27:52 -04:00
|
|
|
|
<ProjectReference Include="..\SabreTools.Serialization\SabreTools.Serialization.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>
|
2023-09-04 23:51:37 -04: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>
|
2023-09-04 23:51:37 -04:00
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
|
2023-09-11 00:57:35 -04:00
|
|
|
|
<PackageReference Include="SabreTools.IO" Version="1.1.1" />
|
2023-09-04 23:51:37 -04:00
|
|
|
|
<PackageReference Include="SabreTools.Models" Version="1.1.0" />
|
|
|
|
|
|
<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>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|