2025-04-12 21:21:03 +03:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
2025-04-15 22:20:46 +03:00
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
2025-04-12 21:21:03 +03:00
|
|
|
|
2025-04-15 22:20:46 +03:00
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
<IsTestProject>true</IsTestProject>
|
|
|
|
</PropertyGroup>
|
2025-04-12 21:21:03 +03:00
|
|
|
|
2025-04-15 22:20:46 +03:00
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="CsvHelper" Version="33.0.1"/>
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.0"/>
|
|
|
|
<PackageReference Include="xunit" Version="2.4.2"/>
|
|
|
|
<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="6.0.0">
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
</PackageReference>
|
|
|
|
</ItemGroup>
|
2025-04-12 21:21:03 +03:00
|
|
|
|
2025-04-15 22:20:46 +03:00
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\X86Disassembler\X86Disassembler.csproj"/>
|
|
|
|
</ItemGroup>
|
2025-04-12 21:21:03 +03:00
|
|
|
|
2025-04-15 22:20:46 +03:00
|
|
|
<ItemGroup>
|
2025-04-15 23:21:52 +03:00
|
|
|
<Content Include="TestData\**\*.csv">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</Content>
|
2025-04-15 22:20:46 +03:00
|
|
|
</ItemGroup>
|
2025-04-13 16:00:46 +03:00
|
|
|
|
2025-04-12 21:21:03 +03:00
|
|
|
</Project>
|