-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCorvus.Testing.SpecFlow.NUnit.csproj
More file actions
50 lines (44 loc) · 2.3 KB
/
Copy pathCorvus.Testing.SpecFlow.NUnit.csproj
File metadata and controls
50 lines (44 loc) · 2.3 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Copyright>Copyright (c) Endjin Limited 2024. All rights reserved.</Copyright>
</PropertyGroup>
<PropertyGroup>
<IsTestProject>false</IsTestProject>
<TestProject>false</TestProject>
</PropertyGroup>
<ItemGroup>
<!-- This project takes depedency on nUnit that adds the TestContainer capability importing NUnit.props, but this is not a test project -->
<ProjectCapability Remove="TestContainer" />
</ItemGroup>
<PropertyGroup>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageDescription>A metapackage that encapsulates the required dependencies when using Corvus.Testing.SpecFlow and Endjin's standard practises. Also simplifies the dependency management process when using tools like Dependabot.</PackageDescription>
<PackageTags>metapackage</PackageTags>
<PackageReleaseNotes></PackageReleaseNotes>
<RootNamespace>MetaPackage.SpecFlow.NUnit</RootNamespace>
<IsPackable>true</IsPackable>
<IncludeBuildOutput>false</IncludeBuildOutput>
<IncludeContentInPack>false</IncludeContentInPack>
<!-- Suppress the NuGet warning we're always going to get - ref: https://github.com/NuGet/Home/issues/8583 -->
<NoWarn>$(NoWarn);NU5128</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SpecFlow.NUnit.Runners" Version="3.9.74">
<!-- ensure the 'build' assets are available to projects that reference this project, which they are by default -->
<!-- ref: https://docs.microsoft.com/en-us/nuget/consume-packages/package-references-in-project-files#controlling-dependency-assets -->
<PrivateAssets>contentfiles; analyzers</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.msbuild" Version="6.0.2">
<!-- ensure the 'build' assets are not private -->
<PrivateAssets>contentfiles; analyzers</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0">
<!-- ensure the 'build' assets are not private -->
<PrivateAssets>contentfiles; analyzers</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Corvus.Testing.SpecFlow\Corvus.Testing.SpecFlow.csproj" />
</ItemGroup>
</Project>