Skip to content

Commit 357be90

Browse files
committed
Converted TestStack.BDDfy to new dotnet tooling
1 parent 716b790 commit 357be90

15 files changed

+124
-354
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,4 @@ TestStack.BDDfy.sln.ide/graph
1919
_NCrunch_TestStack.BDDfy/
2020
TestStack.BDDfy.sln.ide/
2121
src/packages/
22+
src/.vs/

src/NuGet.config

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
3+
<configuration>
4+
<packageSources>
5+
<!-- add key="CoreCLR Xunit" value="https://www.myget.org/F/coreclr-xunit/api/v3/index.json" / -->
6+
<!-- add key="AspNet CI Feed" value="https://www.myget.org/F/aspnetcirelease/api/v3/index.json" /> -->
7+
<add key="myget.org xunit" value="https://www.myget.org/F/xunit/api/v3/index.json" />
8+
<add key="api.nuget.org" value="https://api.nuget.org/v3/index.json" />
9+
</packageSources>
10+
</configuration>

src/TestStack.BDDfy.sln

Lines changed: 8 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,33 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 14
4-
VisualStudioVersion = 14.0.23107.0
4+
VisualStudioVersion = 14.0.25123.0
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{8F515887-AAB5-4873-8BE9-5AB10685EBCB}"
77
ProjectSection(SolutionItems) = preProject
88
.gitattributes = .gitattributes
99
.gitignore = .gitignore
1010
..\appveyor.yml = ..\appveyor.yml
11+
global.json = global.json
12+
NuGet.config = NuGet.config
1113
readme.md = readme.md
1214
release-notes.md = release-notes.md
1315
EndProjectSection
1416
EndProject
15-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestStack.BDDfy", "TestStack.BDDfy\TestStack.BDDfy.csproj", "{DA6BCB39-307C-4A8E-9A3A-27BB2DBC44A3}"
16-
EndProject
17-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestStack.BDDfy.Tests", "TestStack.BDDfy.Tests\TestStack.BDDfy.Tests.csproj", "{357B22FF-84E9-4AB4-AADF-6B9DBB76FB32}"
18-
EndProject
19-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Samples", "Samples", "{2388D556-6292-49BA-B078-1A04377C17A2}"
20-
EndProject
21-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestStack.BDDfy.Samples", "Samples\TestStack.BDDfy.Samples\TestStack.BDDfy.Samples.csproj", "{9D14B03B-9514-4DD8-9D4B-914A10D7EB59}"
17+
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "TestStack.BDDfy", "TestStack.BDDfy\TestStack.BDDfy.xproj", "{20482E5C-B996-4CC8-B30B-FC7B16268B29}"
2218
EndProject
2319
Global
2420
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2521
Debug|Any CPU = Debug|Any CPU
2622
Release|Any CPU = Release|Any CPU
2723
EndGlobalSection
2824
GlobalSection(ProjectConfigurationPlatforms) = postSolution
29-
{DA6BCB39-307C-4A8E-9A3A-27BB2DBC44A3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
30-
{DA6BCB39-307C-4A8E-9A3A-27BB2DBC44A3}.Debug|Any CPU.Build.0 = Debug|Any CPU
31-
{DA6BCB39-307C-4A8E-9A3A-27BB2DBC44A3}.Release|Any CPU.ActiveCfg = Release|Any CPU
32-
{DA6BCB39-307C-4A8E-9A3A-27BB2DBC44A3}.Release|Any CPU.Build.0 = Release|Any CPU
33-
{357B22FF-84E9-4AB4-AADF-6B9DBB76FB32}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
34-
{357B22FF-84E9-4AB4-AADF-6B9DBB76FB32}.Debug|Any CPU.Build.0 = Debug|Any CPU
35-
{357B22FF-84E9-4AB4-AADF-6B9DBB76FB32}.Release|Any CPU.ActiveCfg = Release|Any CPU
36-
{357B22FF-84E9-4AB4-AADF-6B9DBB76FB32}.Release|Any CPU.Build.0 = Release|Any CPU
37-
{9D14B03B-9514-4DD8-9D4B-914A10D7EB59}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
38-
{9D14B03B-9514-4DD8-9D4B-914A10D7EB59}.Debug|Any CPU.Build.0 = Debug|Any CPU
39-
{9D14B03B-9514-4DD8-9D4B-914A10D7EB59}.Release|Any CPU.ActiveCfg = Release|Any CPU
40-
{9D14B03B-9514-4DD8-9D4B-914A10D7EB59}.Release|Any CPU.Build.0 = Release|Any CPU
25+
{20482E5C-B996-4CC8-B30B-FC7B16268B29}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
26+
{20482E5C-B996-4CC8-B30B-FC7B16268B29}.Debug|Any CPU.Build.0 = Debug|Any CPU
27+
{20482E5C-B996-4CC8-B30B-FC7B16268B29}.Release|Any CPU.ActiveCfg = Release|Any CPU
28+
{20482E5C-B996-4CC8-B30B-FC7B16268B29}.Release|Any CPU.Build.0 = Release|Any CPU
4129
EndGlobalSection
4230
GlobalSection(SolutionProperties) = preSolution
4331
HideSolutionNode = FALSE
4432
EndGlobalSection
45-
GlobalSection(NestedProjects) = preSolution
46-
{9D14B03B-9514-4DD8-9D4B-914A10D7EB59} = {2388D556-6292-49BA-B078-1A04377C17A2}
47-
EndGlobalSection
4833
EndGlobal
Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
11
using System.Reflection;
2+
using System.Runtime.CompilerServices;
23
using System.Runtime.InteropServices;
34

4-
[assembly: AssemblyTitle("TestStack.BDDfy")]
5-
[assembly: AssemblyDescription("")]
5+
// General Information about an assembly is controlled through the following
6+
// set of attributes. Change these attribute values to modify the information
7+
// associated with an assembly.
68
[assembly: AssemblyConfiguration("")]
79
[assembly: AssemblyCompany("TestStack.BDDfy - http://teststack.github.com/TestStack.BDDfy/")]
810
[assembly: AssemblyProduct("TestStack.BDDfy")]
911
[assembly: AssemblyCopyright("Copyright © 2011-2012 TestStack.BDDfy contributors")]
1012
[assembly: AssemblyTrademark("")]
11-
[assembly: AssemblyCulture("")]
13+
14+
// Setting ComVisible to false makes the types in this assembly not visible
15+
// to COM components. If you need to access a type in this assembly from
16+
// COM, set the ComVisible attribute to true on that type.
1217
[assembly: ComVisible(false)]
1318

14-
[assembly: AssemblyVersion("1.0.0.0")]
15-
[assembly: AssemblyInformationalVersion("1.0.0.0")]
16-
[assembly: AssemblyFileVersion("1.0.0.0")]
19+
// The following GUID is for the ID of the typelib if this project is exposed to COM
20+
[assembly: Guid("20482e5c-b996-4cc8-b30b-fc7b16268b29")]

src/TestStack.BDDfy/Reporters/Html/HtmlReportResources.Designer.cs

Lines changed: 26 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)