2023-10-12 22:42:45 +08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2023-11-19 12:55:02 +08:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2023-10-12 22:42:45 +08:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-11-19 21:24:41 +08:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
|
|
|
|
<PackageReference Include="Moq" Version="4.20.69" />
|
|
|
|
<PackageReference Include="xunit" Version="2.4.2" />
|
2023-10-12 22:42:45 +08:00
|
|
|
<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>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\Katheryne\Katheryne.csproj" />
|
|
|
|
</ItemGroup>
|
2023-11-19 21:24:41 +08:00
|
|
|
|
|
|
|
<Target Name="CopyTestFiles" AfterTargets="CoreCompile">
|
|
|
|
<ItemGroup>
|
|
|
|
<TestTxt Include="Katheryne/**/*.*"/>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<Copy SourceFiles="@(TestTxt)"
|
|
|
|
DestinationFolder="$(OutputPath)/%(RecursiveDir)"
|
|
|
|
/>
|
|
|
|
</Target>
|
2023-10-12 22:42:45 +08:00
|
|
|
|
|
|
|
</Project>
|