-
Notifications
You must be signed in to change notification settings - Fork 44
/
Directory.Build.props
68 lines (58 loc) · 3.18 KB
/
Directory.Build.props
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
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Reqnroll_Copyright>Copyright © Reqnroll</Reqnroll_Copyright>
<Reqnroll_Authors>Reqnroll</Reqnroll_Authors>
<Reqnroll_Owners>Reqnroll</Reqnroll_Owners>
<Reqnroll_Summary>Reqnroll is an open-source Cucumber-style BDD test automation framework for .NET. It has been created as a reboot of the SpecFlow project.</Reqnroll_Summary>
</PropertyGroup>
<PropertyGroup>
<VersionPrefix>2.2.2</VersionPrefix>
<VersionSuffix>local</VersionSuffix>
<AssemblyVersion>2.0.0</AssemblyVersion>
<CompatibilityVersionUpperRange>3</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>
<None Include="$(MSBuildThisFileDirectory)/LICENSE" Pack="true" PackagePath=""/>
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
<PropertyGroup>
<Authors>$(Reqnroll_Authors)</Authors>
<Company>Reqnroll</Company>
<Product />
<PackageProjectUrl>https://reqnroll.net</PackageProjectUrl>
<PackageIcon>images/reqnroll-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>$(Reqnroll_Copyright)</Copyright>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup>
<PropertyGroup>
<!-- for Reqnroll.Tools.MsBuild.Generation -->
<Reqnroll_FullFramework_Tools_TFM>net462</Reqnroll_FullFramework_Tools_TFM>
<Reqnroll_Core_Tools_TFM>netstandard2.0</Reqnroll_Core_Tools_TFM>
<Reqnroll_EnableStrongNameSigning>true</Reqnroll_EnableStrongNameSigning>
</PropertyGroup>
<PropertyGroup Condition=" '$(Reqnroll_EnableStrongNameSigning)' == 'true'">
<Reqnroll_KeyFile>$(MSBuildThisFileDirectory)\reqnroll.snk</Reqnroll_KeyFile>
<Reqnroll_SignAssembly>true</Reqnroll_SignAssembly>
<DefineConstants>$(DefineConstants);REQNROLL_ENABLE_STRONG_NAME_SIGNING</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Reqnroll_EnableStrongNameSigning)' == 'false'">
<Reqnroll_KeyFile></Reqnroll_KeyFile>
<Reqnroll_SignAssembly>false</Reqnroll_SignAssembly>
</PropertyGroup>
</Project>