-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
88 lines (75 loc) · 3.9 KB
/
Directory.Build.props
File metadata and controls
88 lines (75 loc) · 3.9 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Deterministic>true</Deterministic>
<ReqnrollCopyright>Copyright © Reqnroll</ReqnrollCopyright>
<ReqnrollAuthors>Reqnroll</ReqnrollAuthors>
<ReqnrollOwners>Reqnroll</ReqnrollOwners>
<ReqnrollSummary>Reqnroll is an open-source Cucumber-style BDD test automation framework for .NET. It has been created as a reboot of the SpecFlow project.</ReqnrollSummary>
</PropertyGroup>
<PropertyGroup>
<VersionPrefix>4.0.0</VersionPrefix>
<VersionSuffix>local</VersionSuffix>
<AssemblyVersion>4.0.0</AssemblyVersion>
<CompatibilityVersionUpperRange>5</CompatibilityVersionUpperRange>
</PropertyGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<GitBranch Condition=" '$(GitBranch)' == ''">$(GITHUB_REF_NAME)</GitBranch>
<GitCommitSha Condition=" '$(GitCommitSha)' == ''">$(GITHUB_SHA)</GitCommitSha>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
<PropertyGroup>
<!-- Default NuGet package metadata -->
<Authors>$(ReqnrollAuthors)</Authors>
<Company>Reqnroll</Company>
<Product />
<PackageProjectUrl>https://reqnroll.net</PackageProjectUrl>
<PackageIcon>assets/icon.png</PackageIcon>
<RepositoryUrl>https://github.com/reqnroll/Reqnroll</RepositoryUrl>
<PackageTags>reqnroll bdd gherkin cucumber</PackageTags>
<Description>Reqnroll aims at bridging the communication gap between domain experts and developers by binding business readable behavior specifications to the underlying implementation. Our mission is to provide a pragmatic and frictionless approach to Acceptance Test Driven Development and Behavior Driven Development for .NET projects today."</Description>
<Copyright>$(ReqnrollCopyright)</Copyright>
<PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<DefaultLanguage>en-US</DefaultLanguage>
</PropertyGroup>
<!-- Set up snupkg generation for packable projects -->
<PropertyGroup>
<!-- Generate a snupkg alongside the nupkg -->
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<IncludeSource>true</IncludeSource>
<!-- Ensure portable PDBs are generated -->
<DebugType>portable</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<!-- Includes the Reqnroll icon for packable projects. -->
<ItemGroup Condition="'$(IsPackable)' == 'true'">
<None Include="$(MSBuildThisFileDirectory)reqnroll-icon.png" Pack="true" PackagePath="assets/icon.png" />
</ItemGroup>
<PropertyGroup>
<!-- for Reqnroll.Tools.MsBuild.Generation -->
<ReqnrollFullFrameworkToolsTfm>net462</ReqnrollFullFrameworkToolsTfm>
<ReqnrollCoreToolsTfm>netstandard2.0</ReqnrollCoreToolsTfm>
<ReqnrollEnableStrongNameSigning>true</ReqnrollEnableStrongNameSigning>
</PropertyGroup>
<PropertyGroup Condition=" '$(ReqnrollEnableStrongNameSigning)' == 'true'">
<ReqnrollKeyFile>$(MSBuildThisFileDirectory)reqnroll.snk</ReqnrollKeyFile>
<ReqnrollSignAssembly>true</ReqnrollSignAssembly>
<DefineConstants>$(DefineConstants);REQNROLL_ENABLE_STRONG_NAME_SIGNING</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(ReqnrollEnableStrongNameSigning)' == 'false'">
<ReqnrollKeyFile></ReqnrollKeyFile>
<ReqnrollSignAssembly>false</ReqnrollSignAssembly>
</PropertyGroup>
</Project>