-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDns.Tests.csproj
More file actions
26 lines (22 loc) · 958 Bytes
/
Copy pathDns.Tests.csproj
File metadata and controls
26 lines (22 loc) · 958 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<IsPackable>false</IsPackable>
<DebugType>full</DebugType>
<IsTestProject>true</IsTestProject>
<RootNamespace>DnsTests</RootNamespace>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Meziantou.Analyzer" Version="2.0.267">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" PrivateAssets="all" />
<PackageReference Include="SimpleBase" Version="5.6.0" />
<PackageReference Include="TUnit" Version="1.7.20" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Dns\Dns.csproj" />
</ItemGroup>
</Project>