2020-12-11 01:05:46 -05:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
2023-11-28 10:26:54 -05:00
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
</PropertyGroup>
|
2020-12-11 01:05:46 -05:00
|
|
|
|
2023-11-28 10:26:54 -05:00
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
|
|
|
|
<PackageReference Include="xunit" Version="2.4.1" />
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
</PackageReference>
|
|
|
|
<PackageReference Include="coverlet.collector" Version="3.1.2">
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
</PackageReference>
|
|
|
|
</ItemGroup>
|
2020-12-11 01:05:46 -05:00
|
|
|
|
2023-11-28 10:26:54 -05:00
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\CSTNet\CSTNet.csproj" />
|
|
|
|
</ItemGroup>
|
2020-12-11 01:05:46 -05:00
|
|
|
|
2023-11-28 10:26:54 -05:00
|
|
|
<ItemGroup>
|
|
|
|
<None Update="uitext\lorem.dir\_101_v1.cst">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
<None Update="uitext\lorem.dir\_102_v2.cst">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
</ItemGroup>
|
2020-12-11 01:05:46 -05:00
|
|
|
|
2023-11-28 10:26:54 -05:00
|
|
|
</Project>
|