-
Notifications
You must be signed in to change notification settings - Fork 73
/
Directory.Build.props
35 lines (32 loc) · 1.59 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
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<SpecFlow_Copyright>Copyright © SpecFlow Team</SpecFlow_Copyright>
<SpecFlow_Authors>SpecFlow Team</SpecFlow_Authors>
<SpecFlow_EnableStrongNameSigning>true</SpecFlow_EnableStrongNameSigning>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Nerdbank.GitVersioning" Version="2.1.65" PrivateAssets="all"/>
</ItemGroup>
<PropertyGroup>
<Authors>$(SpecFlow_Authors)</Authors>
<Company>Tricentis</Company>
<Product/>
<PackageLicenseUrl>http://go.specflow.org/license</PackageLicenseUrl>
<PackageProjectUrl>http://www.specflow.org</PackageProjectUrl>
<PackageIconUrl>http://go.specflow.org/specflow-nuget-icon</PackageIconUrl>
<RepositoryUrl>https://github.com/SpecFlowOSS/SpecFlow.VisualStudio</RepositoryUrl>
<PackageTags>specflow bdd gherkin cucumber</PackageTags>
<Description>SpecFlow VisualStudio Integration</Description>
<Copyright>$(SpecFlow_Copyright)</Copyright>
</PropertyGroup>
<PropertyGroup Condition=" '$(SpecFlow_EnableStrongNameSigning)' == 'true'">
<SpecFlow_KeyFile>$(SolutionDir)\specflow.snk</SpecFlow_KeyFile>
<SpecFlow_SignAssembly>true</SpecFlow_SignAssembly>
<DefineConstants>$(DefineConstants);SPECFLOW_ENABLE_STRONG_NAME_SIGNING</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(SpecFlow_EnableStrongNameSigning)' == 'false'">
<SpecFlow_KeyFile/>
<SpecFlow_SignAssembly>false</SpecFlow_SignAssembly>
</PropertyGroup>
</Project>