-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathReflectorNet.Tests.csproj
More file actions
29 lines (23 loc) · 919 Bytes
/
Copy pathReflectorNet.Tests.csproj
File metadata and controls
29 lines (23 loc) · 919 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<LangVersion>11.0</LangVersion>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
<PackageReference Include="System.Text.Json" Version="10.0.3" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5" />
</ItemGroup>
<ItemGroup>
<Using Include="Xunit" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ReflectorNet\ReflectorNet.csproj" />
<ProjectReference Include="..\ReflectorNet.Tests.OuterAssembly\ReflectorNet.Tests.OuterAssembly.csproj" />
</ItemGroup>
</Project>