forked from SpecFlowOSS/SpecFlow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
70 lines (55 loc) · 3.47 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
69
70
<Project>
<PropertyGroup>
<LangVersion>7.3</LangVersion>
<SpecFlow_Copyright>Copyright © SpecFlow Team</SpecFlow_Copyright>
<SpecFlow_Authors>SpecFlow Team</SpecFlow_Authors>
<SpecFlow_Owners>SpecFlow Team</SpecFlow_Owners>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Nerdbank.GitVersioning" Version="2.3.38" PrivateAssets="all"/>
<None Include="$(SolutionDir)/LICENSE.txt" Pack="true" PackagePath=""/>
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0-preview.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
<PropertyGroup>
<Authors>$(SpecFlow_Authors)</Authors>
<Company>Tricentis</Company>
<Product />
<PackageProjectUrl>http://www.specflow.org</PackageProjectUrl>
<PackageIconUrl>http://go.specflow.org/specflow-nuget-icon</PackageIconUrl>
<RepositoryUrl>https://github.com/SpecFlowOSS/SpecFlow</RepositoryUrl>
<PackageTags>specflow bdd gherkin cucumber</PackageTags>
<Description>SpecFlow 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>$(SpecFlow_Copyright)</Copyright>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
</PropertyGroup>
<PropertyGroup>
<SpecFlow_FullFramework_Runtime_TFM>net45</SpecFlow_FullFramework_Runtime_TFM>
<SpecFlow_Core_Runtime_TFM>netstandard2.0</SpecFlow_Core_Runtime_TFM>
<SpecFlow_FullFramework_Generator_TFM>net471</SpecFlow_FullFramework_Generator_TFM>
<SpecFlow_Core_Generator_TFM>netstandard2.0</SpecFlow_Core_Generator_TFM>
<SpecFlow_FullFramework_Test_TFM>net471</SpecFlow_FullFramework_Test_TFM>
<SpecFlow_Core_Test_TFM>netcoreapp2.1;netcoreapp3.1</SpecFlow_Core_Test_TFM>
<SpecFlow_FullFramework_Specs_TFM>net471</SpecFlow_FullFramework_Specs_TFM>
<SpecFlow_Core_Specs_TFM>netcoreapp3.1</SpecFlow_Core_Specs_TFM>
<SpecFlow_FullFramework_Tools_TFM>net471</SpecFlow_FullFramework_Tools_TFM>
<SpecFlow_Core_Tools_TFM>netcoreapp2.0</SpecFlow_Core_Tools_TFM>
<SpecFlow_Runtime_TFM>$(SpecFlow_FullFramework_Runtime_TFM);$(SpecFlow_Core_Runtime_TFM)</SpecFlow_Runtime_TFM>
<SpecFlow_Generator_TFM>$(SpecFlow_FullFramework_Generator_TFM);$(SpecFlow_Core_Generator_TFM)</SpecFlow_Generator_TFM>
<SpecFlow_Test_TFM>$(SpecFlow_FullFramework_Test_TFM);$(SpecFlow_Core_Test_TFM)</SpecFlow_Test_TFM>
<SpecFlow_Specs_TFM>$(SpecFlow_Core_Specs_TFM)</SpecFlow_Specs_TFM>
<SpecFlow_Tools_TFM>$(SpecFlow_FullFramework_Tools_TFM);$(SpecFlow_Core_Tools_TFM)</SpecFlow_Tools_TFM>
<SpecFlow_EnableStrongNameSigning>true</SpecFlow_EnableStrongNameSigning>
</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_KeyFile>
<SpecFlow_SignAssembly>false</SpecFlow_SignAssembly>
</PropertyGroup>
</Project>