-
Notifications
You must be signed in to change notification settings - Fork 162
Expand file tree
/
Copy pathnunit4-console.tests.csproj
More file actions
53 lines (46 loc) · 2.21 KB
/
Copy pathnunit4-console.tests.csproj
File metadata and controls
53 lines (46 loc) · 2.21 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
49
50
51
52
53
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>NUnit.ConsoleRunner</RootNamespace>
<TargetFrameworks>net462;net8.0</TargetFrameworks>
<OutputType>Exe</OutputType>
<StartupObject>NUnit.Engine.Tests.Program</StartupObject>
</PropertyGroup>
<PropertyGroup>
<Product>NUnit Console</Product>
<AssemblyTitle>NUnit Console Tests ($(TargetFramework))</AssemblyTitle>
<Description>Tests of the NUnit Console Runner</Description>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NUnit" Version="$(NUnitVersion)" />
<PackageReference Include="NUnitLite" Version="$(NUnitVersion)" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.3.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.15.1" />
<PackageReference Include="NSubstitute" Version="$(NSubstituteVersion)" />
<PackageReference Include="NUnit.Analyzers" Version="$(NUnitAnalyzersVersion)" />
</ItemGroup>
<ItemGroup>
<Content Include="TestListWithEmptyLine.tst">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="TextSummary.xslt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="NUnit2TestResult.xsd">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="ConsoleTests.nunit">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\TestData\mock-assembly\mock-assembly.csproj" />
<ProjectReference Include="..\..\NUnitEngine\nunit.engine\nunit.engine.csproj" />
<ProjectReference Condition="'$(TargetFramework)'=='net462'" Include="..\nunit4-console\nunit4-console.csproj" />
<ProjectReference Condition="'$(TargetFramework)'=='net8.0'" Include="..\nunit4-netcore-console\nunit4-netcore-console.csproj" />
<ProjectReference Include="..\..\NUnitEngine\nunit.engine.api\nunit.engine.api.csproj" />
<ProjectReference Include="..\..\NUnitCommon\nunit.common\nunit.common.csproj" />
</ItemGroup>
<ItemGroup>
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
</ItemGroup>
</Project>