-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathSpecFlow.Unity.SpecFlowPlugin.csproj
More file actions
31 lines (31 loc) · 1.24 KB
/
Copy pathSpecFlow.Unity.SpecFlowPlugin.csproj
File metadata and controls
31 lines (31 loc) · 1.24 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net45</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SpecFlow" Version="2.2.0" />
<PackageReference Include="Unity" Version="4.0.1" />
</ItemGroup>
<PropertyGroup>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<RootNamespace>SpecFlow.Unity</RootNamespace>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>SpecFlow.Unity</PackageId>
<PackageLicenseUrl>http://opensource.org/licenses/mit-license.php</PackageLicenseUrl>
<PackageTags>specflow unity</PackageTags>
<Authors>Paul Hatcher</Authors>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Release\net45\SpecFlow.Unity.SpecFlowPlugin.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\SolutionInfo.cs" Link="Properties\SolutionInfo.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.ComponentModel.DataAnnotations" />
<Reference Include="System.Configuration" />
<Reference Include="System.IdentityModel" />
<Reference Include="System.IO.Compression" />
<Reference Include="System.Web" />
</ItemGroup>
</Project>