-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDevlead.Testing.MockHttp.Tests.csproj
More file actions
48 lines (41 loc) · 1.73 KB
/
Copy pathDevlead.Testing.MockHttp.Tests.csproj
File metadata and controls
48 lines (41 loc) · 1.73 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<NoWarn>NU1008</NoWarn>
</PropertyGroup>
<ItemGroup>
<None Remove="Resources\Example\index.txt" />
<None Remove="Resources\Example\Login\Secret.json" />
<None Remove="Resources\Routes.json" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\Example\Index.txt" />
<EmbeddedResource Include="Resources\Routes.json" />
<EmbeddedResource Include="Resources\Example\Login\Secret.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="coverlet.collector" />
<PackageReference Include="Microsoft.NET.Test.Sdk" />
<PackageReference Include="NUnit" />
<PackageReference Include="NUnit.Analyzers" />
<PackageReference Include="NUnit3TestAdapter" />
<PackageReference Include="System.Linq.Async" />
<PackageReference Include="Verify.NUnit" />
<PackageReference Include="System.Text.Json" />
<PackageReference Include="Verify.Http" VersionOverride="6.6.0" Condition="'$(TargetFramework)' != 'net9.0'" />
<PackageReference Include="Verify.Http" Condition="'$(TargetFramework)' == 'net9.0'" />
<PackageReference Include="Microsoft.Extensions.TimeProvider.Testing" />
</ItemGroup>
<ItemGroup>
<Using Include="NUnit.Framework" />
</ItemGroup>
<ItemGroup>
<Compile Include="../Devlead.Testing.MockHttp/**/*.cs" Exclude="../Devlead.Testing.MockHttp/obj/**;../Devlead.Testing.MockHttp/bin/**">
<Link>Devlead/%(RecursiveDir)%(Filename)%(Extension)</Link>
</Compile>
</ItemGroup>
</Project>