Skip to content

Commit f37fa9c

Browse files
Add Specs project
1 parent 613ca6d commit f37fa9c

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp3.1</TargetFramework>
5+
<IsPackable>false</IsPackable>
6+
</PropertyGroup>
7+
8+
<ItemGroup>
9+
<PackageReference Include="nunit" Version="3.12.0" />
10+
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0">
11+
<PrivateAssets>all</PrivateAssets>
12+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
13+
</PackageReference>
14+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
15+
<PackageReference Include="SpecFlow.NUnit.Runners" Version="3.3.57" />
16+
<PackageReference Include="SpecFlow.Tools.MsBuild.Generation" Version="3.3.57" />
17+
<PackageReference Include="coverlet.msbuild" Version="2.9.0">
18+
<PrivateAssets>all</PrivateAssets>
19+
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
20+
</PackageReference>
21+
</ItemGroup>
22+
23+
<ItemGroup>
24+
<ProjectReference Include="..\Endjin.ApiChange\Endjin.ApiChange.csproj" />
25+
</ItemGroup>
26+
27+
</Project>

Solutions/Endjin.ApiChange.sln

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ VisualStudioVersion = 16.0.30320.27
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Endjin.ApiChange", "Endjin.ApiChange\Endjin.ApiChange.csproj", "{08AE77B7-78C1-4547-9674-CC00A4F15633}"
77
EndProject
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Endjin.ApiChange.Specs", "Endjin.ApiChange.Specs\Endjin.ApiChange.Specs.csproj", "{3E806BD8-4589-430E-84A4-729FE6AAF8B5}"
9+
EndProject
810
Global
911
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1012
Debug|Any CPU = Debug|Any CPU
@@ -15,6 +17,10 @@ Global
1517
{08AE77B7-78C1-4547-9674-CC00A4F15633}.Debug|Any CPU.Build.0 = Debug|Any CPU
1618
{08AE77B7-78C1-4547-9674-CC00A4F15633}.Release|Any CPU.ActiveCfg = Release|Any CPU
1719
{08AE77B7-78C1-4547-9674-CC00A4F15633}.Release|Any CPU.Build.0 = Release|Any CPU
20+
{3E806BD8-4589-430E-84A4-729FE6AAF8B5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
21+
{3E806BD8-4589-430E-84A4-729FE6AAF8B5}.Debug|Any CPU.Build.0 = Debug|Any CPU
22+
{3E806BD8-4589-430E-84A4-729FE6AAF8B5}.Release|Any CPU.ActiveCfg = Release|Any CPU
23+
{3E806BD8-4589-430E-84A4-729FE6AAF8B5}.Release|Any CPU.Build.0 = Release|Any CPU
1824
EndGlobalSection
1925
GlobalSection(SolutionProperties) = preSolution
2026
HideSolutionNode = FALSE

0 commit comments

Comments
 (0)