-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDevleadConsole.Tests.csproj
More file actions
44 lines (39 loc) · 2.06 KB
/
DevleadConsole.Tests.csproj
File metadata and controls
44 lines (39 loc) · 2.06 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameWork Condition="$(TargetFrameworks) == ''">TargetFrameworkValue</TargetFrameWork>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<Using Include="DevleadConsole.Commands" />
<Using Include="Microsoft.Extensions.Logging.Testing" />
<Using Include="NUnit.Framework" />
<Using Include="Spectre.Console.Cli" />
<Using Include="Spectre.Console.Testing" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DevleadConsole\DevleadConsole.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="coverlet.collector" Version="8.0.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Devlead.Testing.MockHttp" Version="2026.2.11.605" />
<PackageReference Include="Microsoft.Extensions.Diagnostics.Testing" Version="8.10.0" Condition="'$(TargetFramework)' == 'net8.0'" />
<PackageReference Include="Microsoft.Extensions.Diagnostics.Testing" Version="9.10.0" Condition="'$(TargetFramework)' == 'net9.0'" />
<PackageReference Include="Microsoft.Extensions.Diagnostics.Testing" Version="10.4.0" Condition="'$(TargetFramework)' == 'net10.0'" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" />
<PackageReference Include="NUnit" Version="4.5.1" />
<PackageReference Include="NUnit.Analyzers" Version="4.12.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="NUnit3TestAdapter" Version="6.1.0" />
<PackageReference Include="Spectre.Console.Testing" Version="0.54.0" />
<PackageReference Include="verify.Nunit" Version="31.13.2" />
</ItemGroup>
</Project>