forked from SpecFlowOSS/SpecFlow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
75 lines (59 loc) · 3.9 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
71
72
73
74
75
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<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="3.5.107" PrivateAssets="all"/>
<None Include="$(MSBuildThisFileDirectory)/LICENSE.txt" Pack="true" PackagePath=""/>
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
<PropertyGroup>
<Authors>$(SpecFlow_Authors)</Authors>
<Company>Tricentis</Company>
<Product />
<PackageProjectUrl>https://specflow.org</PackageProjectUrl>
<PackageIcon>images/specflow-icon.png</PackageIcon>
<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_TFM>net462</SpecFlow_FullFramework_TFM>
<SpecFlow_Net6_TFM>net6.0</SpecFlow_Net6_TFM>
<SpecFlow_FullFramework_Runtime_TFM>$(SpecFlow_FullFramework_TFM)</SpecFlow_FullFramework_Runtime_TFM>
<SpecFlow_Core_Runtime_TFM>netstandard2.0</SpecFlow_Core_Runtime_TFM>
<SpecFlow_FullFramework_Generator_TFM>$(SpecFlow_FullFramework_TFM)</SpecFlow_FullFramework_Generator_TFM>
<SpecFlow_Core_Generator_TFM>netcoreapp3.1</SpecFlow_Core_Generator_TFM>
<SpecFlow_FullFramework_Test_TFM>$(SpecFlow_FullFramework_TFM)</SpecFlow_FullFramework_Test_TFM>
<SpecFlow_Core_Test_TFM>netcoreapp3.1;net6.0</SpecFlow_Core_Test_TFM>
<SpecFlow_FullFramework_Specs_TFM>$(SpecFlow_FullFramework_TFM)</SpecFlow_FullFramework_Specs_TFM>
<SpecFlow_Net6_Specs_TFM>$(SpecFlow_Net6_TFM)</SpecFlow_Net6_Specs_TFM>
<SpecFlow_FullFramework_Tools_TFM>$(SpecFlow_FullFramework_TFM)</SpecFlow_FullFramework_Tools_TFM>
<SpecFlow_Core_Tools_TFM>netcoreapp3.1</SpecFlow_Core_Tools_TFM>
<SpecFlow_Net6_Tools_TFM>$(SpecFlow_Net6_TFM)</SpecFlow_Net6_Tools_TFM>
<SpecFlow_Runtime_TFM>$(SpecFlow_FullFramework_Runtime_TFM);$(SpecFlow_Core_Runtime_TFM);$(SpecFlow_Net6_TFM)</SpecFlow_Runtime_TFM>
<SpecFlow_Generator_TFM>$(SpecFlow_FullFramework_Generator_TFM);$(SpecFlow_Core_Generator_TFM);$(SpecFlow_Net6_TFM)</SpecFlow_Generator_TFM>
<SpecFlow_Test_TFM>$(SpecFlow_FullFramework_Test_TFM);$(SpecFlow_Core_Test_TFM)</SpecFlow_Test_TFM>
<SpecFlow_Specs_TFM>$(SpecFlow_Net6_Specs_TFM)</SpecFlow_Specs_TFM>
<SpecFlow_Tools_TFM>$(SpecFlow_FullFramework_Tools_TFM);$(SpecFlow_Core_Tools_TFM);$(SpecFlow_Net6_Tools_TFM)</SpecFlow_Tools_TFM>
<SpecFlow_EnableStrongNameSigning>true</SpecFlow_EnableStrongNameSigning>
</PropertyGroup>
<PropertyGroup Condition=" '$(SpecFlow_EnableStrongNameSigning)' == 'true'">
<SpecFlow_KeyFile>$(MSBuildThisFileDirectory)\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>