Skip to content

Commit 8c9533d

Browse files
committed
Initial commit. Not many things working.
0 parents  commit 8c9533d

15 files changed

+2299
-0
lines changed

.gitignore

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
*~
2+
bin
3+
obj
4+
*.user
5+
*.suo
6+
*.bak
7+
*.sln.cache
8+
_ReSharper*
9+
Reports
10+
*/build
11+
*/test-results
12+
*.pidb
13+
*.usertasks
14+
*.userprefs
15+
*.origtest-resultsdist

BTDB.sln

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 11.00
3+
# Visual Studio 2010
4+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BTDB", "BTDB\BTDB.csproj", "{4B16680A-547C-495F-8BB2-8DA239E34194}"
5+
EndProject
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BTDBTest", "BTDBTest\BTDBTest.csproj", "{E7CEDF6F-B13F-48C4-A8E6-2DECAC4C7088}"
7+
EndProject
8+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{472959C2-B845-42D0-B7CD-CE053198F518}"
9+
ProjectSection(SolutionItems) = preProject
10+
BTDB.vsmdi = BTDB.vsmdi
11+
Local.testsettings = Local.testsettings
12+
EndProjectSection
13+
EndProject
14+
Global
15+
GlobalSection(TestCaseManagementSettings) = postSolution
16+
CategoryFile = BTDB.vsmdi
17+
EndGlobalSection
18+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
19+
Debug|Any CPU = Debug|Any CPU
20+
Release|Any CPU = Release|Any CPU
21+
EndGlobalSection
22+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
23+
{4B16680A-547C-495F-8BB2-8DA239E34194}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
24+
{4B16680A-547C-495F-8BB2-8DA239E34194}.Debug|Any CPU.Build.0 = Debug|Any CPU
25+
{4B16680A-547C-495F-8BB2-8DA239E34194}.Release|Any CPU.ActiveCfg = Release|Any CPU
26+
{4B16680A-547C-495F-8BB2-8DA239E34194}.Release|Any CPU.Build.0 = Release|Any CPU
27+
{E7CEDF6F-B13F-48C4-A8E6-2DECAC4C7088}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
28+
{E7CEDF6F-B13F-48C4-A8E6-2DECAC4C7088}.Debug|Any CPU.Build.0 = Debug|Any CPU
29+
{E7CEDF6F-B13F-48C4-A8E6-2DECAC4C7088}.Release|Any CPU.ActiveCfg = Release|Any CPU
30+
{E7CEDF6F-B13F-48C4-A8E6-2DECAC4C7088}.Release|Any CPU.Build.0 = Release|Any CPU
31+
EndGlobalSection
32+
GlobalSection(SolutionProperties) = preSolution
33+
HideSolutionNode = FALSE
34+
EndGlobalSection
35+
EndGlobal

BTDB.vsmdi

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<TestLists xmlns="http://microsoft.com/schemas/VisualStudio/TeamTest/2010">
3+
<TestList name="Lists of Tests" id="8c43106b-9dc1-4907-a29f-aa66a61bf5b6">
4+
<RunConfiguration id="6790a350-c50c-4dcd-b912-93e7434f12ac" name="Local" storage="local.testsettings" type="Microsoft.VisualStudio.TestTools.Common.TestRunConfiguration, Microsoft.VisualStudio.QualityTools.Common, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
5+
</TestList>
6+
</TestLists>

0 commit comments

Comments
 (0)