diff --git a/.gitignore b/.gitignore
index 61b885c..75c0b52 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,7 +3,7 @@ bin
obj
# mstest test results
-TestResults
+TestResult*
# Misc
_ReSharper.*
@@ -13,3 +13,4 @@ _ReSharper.*
*.crunchsolution.local.xml
*.ncrunchsolution
*.ncrunchproject
+ConventionTests*.nupkg
\ No newline at end of file
diff --git a/.nuget/packages.config b/.nuget/packages.config
new file mode 100644
index 0000000..6c4d001
--- /dev/null
+++ b/.nuget/packages.config
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/Build.cmd b/Build.cmd
new file mode 100644
index 0000000..f027f2e
--- /dev/null
+++ b/Build.cmd
@@ -0,0 +1,9 @@
+@ECHO OFF
+
+SET msbuild="%windir%\Microsoft.NET\Framework\v4.0.30319\msbuild.exe"
+
+%msbuild% ConventionTests.proj
+
+IF NOT ERRORLEVEL 0 EXIT /B %ERRORLEVEL%
+
+pause
\ No newline at end of file
diff --git a/ConventionTests.proj b/ConventionTests.proj
new file mode 100644
index 0000000..c55cc95
--- /dev/null
+++ b/ConventionTests.proj
@@ -0,0 +1,57 @@
+
+
+
+ $(MSBuildProjectDirectory)\
+ Any CPU
+ Release
+ $(Root)tools\MSBuildCommunityTasks
+ $(MSBuildProjectDirectory)\packages\NUnit.Runners.2.6.2\tools\
+ $(NUnitHome)nunit-console.exe
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0.0.0.0
+
+
+
+
+
diff --git a/ConventionTests.sln b/ConventionTests.sln
index 4c3ed0b..77b1bc6 100644
--- a/ConventionTests.sln
+++ b/ConventionTests.sln
@@ -3,6 +3,22 @@ Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConventionTests", "ConventionTests\ConventionTests.csproj", "{1E12EA0C-9182-4029-991A-B0B9D38F5783}"
EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{AF9054EE-FE89-47A4-9156-BE54A837F2F7}"
+ ProjectSection(SolutionItems) = preProject
+ Build.cmd = Build.cmd
+ ConventionTests.proj = ConventionTests.proj
+ README.md = README.md
+ EndProjectSection
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestStack.ConventionTests", "TestStack.ConventionTests\TestStack.ConventionTests.csproj", "{955B0236-089F-434D-BA02-63A1E24C2B7C}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestStack.ConventionTests.Tests", "TestStack.ConventionTests.Tests\TestStack.ConventionTests.Tests.csproj", "{FEFF8305-A192-4CEA-A373-6CF2F365A9E5}"
+EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{35B8E1F6-8E97-40A6-91E3-CB765328424F}"
+ ProjectSection(SolutionItems) = preProject
+ .nuget\packages.config = .nuget\packages.config
+ EndProjectSection
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -13,6 +29,14 @@ Global
{1E12EA0C-9182-4029-991A-B0B9D38F5783}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1E12EA0C-9182-4029-991A-B0B9D38F5783}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1E12EA0C-9182-4029-991A-B0B9D38F5783}.Release|Any CPU.Build.0 = Release|Any CPU
+ {955B0236-089F-434D-BA02-63A1E24C2B7C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {955B0236-089F-434D-BA02-63A1E24C2B7C}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {955B0236-089F-434D-BA02-63A1E24C2B7C}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {955B0236-089F-434D-BA02-63A1E24C2B7C}.Release|Any CPU.Build.0 = Release|Any CPU
+ {FEFF8305-A192-4CEA-A373-6CF2F365A9E5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {FEFF8305-A192-4CEA-A373-6CF2F365A9E5}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {FEFF8305-A192-4CEA-A373-6CF2F365A9E5}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {FEFF8305-A192-4CEA-A373-6CF2F365A9E5}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
diff --git a/TestStack.ConventionTests.Tests/ATest.cs b/TestStack.ConventionTests.Tests/ATest.cs
new file mode 100644
index 0000000..ae4be33
--- /dev/null
+++ b/TestStack.ConventionTests.Tests/ATest.cs
@@ -0,0 +1,14 @@
+namespace TestStack.ConventionTests.Tests
+{
+ using NUnit.Framework;
+
+ [TestFixture]
+ public class ATest
+ {
+ [Test]
+ public void Test()
+ {
+
+ }
+ }
+}
\ No newline at end of file
diff --git a/TestStack.ConventionTests.Tests/Properties/AssemblyInfo.cs b/TestStack.ConventionTests.Tests/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..76836cd
--- /dev/null
+++ b/TestStack.ConventionTests.Tests/Properties/AssemblyInfo.cs
@@ -0,0 +1,35 @@
+using System.Reflection;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("TestStack.ConventionTests.Tests")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("TestStack.ConventionTests.Tests")]
+[assembly: AssemblyCopyright("Copyright © TestStack 2013")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("1a65a30e-e057-4058-a155-7ad12ba91cd2")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/TestStack.ConventionTests.Tests/TestStack.ConventionTests.Tests.csproj b/TestStack.ConventionTests.Tests/TestStack.ConventionTests.Tests.csproj
new file mode 100644
index 0000000..287fb99
--- /dev/null
+++ b/TestStack.ConventionTests.Tests/TestStack.ConventionTests.Tests.csproj
@@ -0,0 +1,59 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {FEFF8305-A192-4CEA-A373-6CF2F365A9E5}
+ Library
+ Properties
+ TestStack.ConventionTests.Tests
+ TestStack.ConventionTests.Tests
+ v4.0
+ 512
+
+
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+
+ ..\packages\NUnit.2.6.2\lib\nunit.framework.dll
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/TestStack.ConventionTests.Tests/packages.config b/TestStack.ConventionTests.Tests/packages.config
new file mode 100644
index 0000000..617647a
--- /dev/null
+++ b/TestStack.ConventionTests.Tests/packages.config
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/TestStack.ConventionTests/Properties/AssemblyInfo.cs b/TestStack.ConventionTests/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..5f8fb14
--- /dev/null
+++ b/TestStack.ConventionTests/Properties/AssemblyInfo.cs
@@ -0,0 +1,36 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("TestStack.ConventionTests")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("TestStack.ConventionTests")]
+[assembly: AssemblyCopyright("Copyright © 2013")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("ae7bce97-3d40-4d7c-932f-37f1c7b041a2")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/TestStack.ConventionTests/TestStack.ConventionTests.csproj b/TestStack.ConventionTests/TestStack.ConventionTests.csproj
new file mode 100644
index 0000000..136d56b
--- /dev/null
+++ b/TestStack.ConventionTests/TestStack.ConventionTests.csproj
@@ -0,0 +1,59 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {955B0236-089F-434D-BA02-63A1E24C2B7C}
+ Library
+ Properties
+ TestStack.ConventionTests
+ TestStack.ConventionTests
+ v4.0
+ 512
+
+
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+ true
+
+
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Designer
+
+
+
+
+
\ No newline at end of file
diff --git a/TestStack.ConventionTests/TestStack.ConventionTests.nuspec b/TestStack.ConventionTests/TestStack.ConventionTests.nuspec
new file mode 100644
index 0000000..be168ef
--- /dev/null
+++ b/TestStack.ConventionTests/TestStack.ConventionTests.nuspec
@@ -0,0 +1,17 @@
+
+
+
+ $version$
+ Krzysztof Kozmic
+ Krzysztof Kozmic
+ ConventionTests
+ ConventionTests
+ false
+ Simple convention-tester
+ Simple library offering a simple way to test conventions.
+
+
+
+
+
+
\ No newline at end of file
diff --git a/packages/NUnit.Runners.2.6.2/NUnit.Runners.2.6.2.nupkg b/packages/NUnit.Runners.2.6.2/NUnit.Runners.2.6.2.nupkg
new file mode 100644
index 0000000..eaaa711
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/NUnit.Runners.2.6.2.nupkg differ
diff --git a/packages/NUnit.Runners.2.6.2/NUnit.Runners.2.6.2.nuspec b/packages/NUnit.Runners.2.6.2/NUnit.Runners.2.6.2.nuspec
new file mode 100644
index 0000000..4954927
--- /dev/null
+++ b/packages/NUnit.Runners.2.6.2/NUnit.Runners.2.6.2.nuspec
@@ -0,0 +1,24 @@
+
+
+
+ NUnit.Runners
+ 2.6.2
+ NUnit.Runners
+ Charlie Poole
+ Charlie Poole
+ http://nunit.org/nuget/license.html
+ http://nunit.org/
+ http://nunit.org/nuget/nunit_32x32.png
+ false
+ NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible. A number of runners, both from the NUnit project and by third parties, are able to execute NUnit tests.
+
+Version 2.6 is the seventh major release of this well-known and well-tested programming tool.
+
+This package includes the NUnit console, gui and pnunit runners and is compatible with all NUnit framework versions 2.0 through 2.6. The NUnit project editor is also included.
+ NUnit is a unit-testing framework for all .Net languages with a strong TDD focus.
+
+
+ en-US
+ test testing tdd runner
+
+
\ No newline at end of file
diff --git a/packages/NUnit.Runners.2.6.2/license.txt b/packages/NUnit.Runners.2.6.2/license.txt
new file mode 100644
index 0000000..724e465
--- /dev/null
+++ b/packages/NUnit.Runners.2.6.2/license.txt
@@ -0,0 +1,15 @@
+Copyright © 2002-2012 Charlie Poole
+Copyright © 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov
+Copyright © 2000-2002 Philip A. Craig
+
+This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.
+
+Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:
+
+1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment (see the following) in the product documentation is required.
+
+Portions Copyright © 2002-2012 Charlie Poole or Copyright © 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov or Copyright © 2000-2002 Philip A. Craig
+
+2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
+
+3. This notice may not be removed or altered from any source distribution.
diff --git a/packages/NUnit.Runners.2.6.2/tools/agent.conf b/packages/NUnit.Runners.2.6.2/tools/agent.conf
new file mode 100644
index 0000000..b4cf550
--- /dev/null
+++ b/packages/NUnit.Runners.2.6.2/tools/agent.conf
@@ -0,0 +1,4 @@
+
+ 8080
+ .
+
\ No newline at end of file
diff --git a/packages/NUnit.Runners.2.6.2/tools/agent.log.conf b/packages/NUnit.Runners.2.6.2/tools/agent.log.conf
new file mode 100644
index 0000000..6a9ced8
--- /dev/null
+++ b/packages/NUnit.Runners.2.6.2/tools/agent.log.conf
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/NUnit.Runners.2.6.2/tools/launcher.log.conf b/packages/NUnit.Runners.2.6.2/tools/launcher.log.conf
new file mode 100644
index 0000000..6a9ced8
--- /dev/null
+++ b/packages/NUnit.Runners.2.6.2/tools/launcher.log.conf
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Circles/Failure.jpg b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Circles/Failure.jpg
new file mode 100644
index 0000000..c245548
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Circles/Failure.jpg differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Circles/Ignored.jpg b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Circles/Ignored.jpg
new file mode 100644
index 0000000..0549b70
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Circles/Ignored.jpg differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Circles/Inconclusive.jpg b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Circles/Inconclusive.jpg
new file mode 100644
index 0000000..8d36153
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Circles/Inconclusive.jpg differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Circles/Skipped.jpg b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Circles/Skipped.jpg
new file mode 100644
index 0000000..3d84255
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Circles/Skipped.jpg differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Circles/Success.jpg b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Circles/Success.jpg
new file mode 100644
index 0000000..15ec1b7
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Circles/Success.jpg differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Classic/Failure.jpg b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Classic/Failure.jpg
new file mode 100644
index 0000000..658905f
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Classic/Failure.jpg differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Classic/Ignored.jpg b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Classic/Ignored.jpg
new file mode 100644
index 0000000..95b7fdb
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Classic/Ignored.jpg differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Classic/Inconclusive.jpg b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Classic/Inconclusive.jpg
new file mode 100644
index 0000000..32a0ff7
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Classic/Inconclusive.jpg differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Classic/Skipped.jpg b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Classic/Skipped.jpg
new file mode 100644
index 0000000..3d84255
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Classic/Skipped.jpg differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Classic/Success.jpg b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Classic/Success.jpg
new file mode 100644
index 0000000..3d8e760
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Classic/Success.jpg differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Default/Failure.png b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Default/Failure.png
new file mode 100644
index 0000000..2e400b2
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Default/Failure.png differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Default/Ignored.png b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Default/Ignored.png
new file mode 100644
index 0000000..05715cb
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Default/Ignored.png differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Default/Inconclusive.png b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Default/Inconclusive.png
new file mode 100644
index 0000000..4807b7c
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Default/Inconclusive.png differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Default/Skipped.png b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Default/Skipped.png
new file mode 100644
index 0000000..7c9fc64
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Default/Skipped.png differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Default/Success.png b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Default/Success.png
new file mode 100644
index 0000000..2a30150
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Default/Success.png differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Visual Studio/Failure.png b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Visual Studio/Failure.png
new file mode 100644
index 0000000..ba03e84
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Visual Studio/Failure.png differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Visual Studio/Ignored.png b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Visual Studio/Ignored.png
new file mode 100644
index 0000000..9271d6e
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Visual Studio/Ignored.png differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Visual Studio/Inconclusive.png b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Visual Studio/Inconclusive.png
new file mode 100644
index 0000000..76219b5
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Visual Studio/Inconclusive.png differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Visual Studio/SeriousWarning.png b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Visual Studio/SeriousWarning.png
new file mode 100644
index 0000000..6a578cc
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Visual Studio/SeriousWarning.png differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Visual Studio/Skipped.png b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Visual Studio/Skipped.png
new file mode 100644
index 0000000..7c9fc64
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Visual Studio/Skipped.png differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Visual Studio/Success.png b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Visual Studio/Success.png
new file mode 100644
index 0000000..346fe8f
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/lib/Images/Tree/Visual Studio/Success.png differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/lib/log4net.dll b/packages/NUnit.Runners.2.6.2/tools/lib/log4net.dll
new file mode 100644
index 0000000..20a2e1c
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/lib/log4net.dll differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/lib/nunit-console-runner.dll b/packages/NUnit.Runners.2.6.2/tools/lib/nunit-console-runner.dll
new file mode 100644
index 0000000..85f3dfa
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/lib/nunit-console-runner.dll differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/lib/nunit-gui-runner.dll b/packages/NUnit.Runners.2.6.2/tools/lib/nunit-gui-runner.dll
new file mode 100644
index 0000000..2a22088
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/lib/nunit-gui-runner.dll differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/lib/nunit.core.dll b/packages/NUnit.Runners.2.6.2/tools/lib/nunit.core.dll
new file mode 100644
index 0000000..8e6d956
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/lib/nunit.core.dll differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/lib/nunit.core.interfaces.dll b/packages/NUnit.Runners.2.6.2/tools/lib/nunit.core.interfaces.dll
new file mode 100644
index 0000000..a966ad5
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/lib/nunit.core.interfaces.dll differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/lib/nunit.uiexception.dll b/packages/NUnit.Runners.2.6.2/tools/lib/nunit.uiexception.dll
new file mode 100644
index 0000000..39b60bf
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/lib/nunit.uiexception.dll differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/lib/nunit.uikit.dll b/packages/NUnit.Runners.2.6.2/tools/lib/nunit.uikit.dll
new file mode 100644
index 0000000..315542a
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/lib/nunit.uikit.dll differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/lib/nunit.util.dll b/packages/NUnit.Runners.2.6.2/tools/lib/nunit.util.dll
new file mode 100644
index 0000000..88aee95
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/lib/nunit.util.dll differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/nunit-agent-x86.exe b/packages/NUnit.Runners.2.6.2/tools/nunit-agent-x86.exe
new file mode 100644
index 0000000..5547d07
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/nunit-agent-x86.exe differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/nunit-agent-x86.exe.config b/packages/NUnit.Runners.2.6.2/tools/nunit-agent-x86.exe.config
new file mode 100644
index 0000000..43adb3b
--- /dev/null
+++ b/packages/NUnit.Runners.2.6.2/tools/nunit-agent-x86.exe.config
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/packages/NUnit.Runners.2.6.2/tools/nunit-agent.exe b/packages/NUnit.Runners.2.6.2/tools/nunit-agent.exe
new file mode 100644
index 0000000..637b256
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/nunit-agent.exe differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/nunit-agent.exe.config b/packages/NUnit.Runners.2.6.2/tools/nunit-agent.exe.config
new file mode 100644
index 0000000..43adb3b
--- /dev/null
+++ b/packages/NUnit.Runners.2.6.2/tools/nunit-agent.exe.config
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/packages/NUnit.Runners.2.6.2/tools/nunit-console-x86.exe b/packages/NUnit.Runners.2.6.2/tools/nunit-console-x86.exe
new file mode 100644
index 0000000..672a80e
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/nunit-console-x86.exe differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/nunit-console-x86.exe.config b/packages/NUnit.Runners.2.6.2/tools/nunit-console-x86.exe.config
new file mode 100644
index 0000000..c873deb
--- /dev/null
+++ b/packages/NUnit.Runners.2.6.2/tools/nunit-console-x86.exe.config
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/NUnit.Runners.2.6.2/tools/nunit-console.exe b/packages/NUnit.Runners.2.6.2/tools/nunit-console.exe
new file mode 100644
index 0000000..28734cb
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/nunit-console.exe differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/nunit-console.exe.config b/packages/NUnit.Runners.2.6.2/tools/nunit-console.exe.config
new file mode 100644
index 0000000..c873deb
--- /dev/null
+++ b/packages/NUnit.Runners.2.6.2/tools/nunit-console.exe.config
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/NUnit.Runners.2.6.2/tools/nunit-editor.exe b/packages/NUnit.Runners.2.6.2/tools/nunit-editor.exe
new file mode 100644
index 0000000..342174c
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/nunit-editor.exe differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/nunit-x86.exe b/packages/NUnit.Runners.2.6.2/tools/nunit-x86.exe
new file mode 100644
index 0000000..9c8147f
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/nunit-x86.exe differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/nunit-x86.exe.config b/packages/NUnit.Runners.2.6.2/tools/nunit-x86.exe.config
new file mode 100644
index 0000000..7009cac
--- /dev/null
+++ b/packages/NUnit.Runners.2.6.2/tools/nunit-x86.exe.config
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/NUnit.Runners.2.6.2/tools/nunit.exe b/packages/NUnit.Runners.2.6.2/tools/nunit.exe
new file mode 100644
index 0000000..6d24caf
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/nunit.exe differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/nunit.exe.config b/packages/NUnit.Runners.2.6.2/tools/nunit.exe.config
new file mode 100644
index 0000000..7009cac
--- /dev/null
+++ b/packages/NUnit.Runners.2.6.2/tools/nunit.exe.config
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/NUnit.Runners.2.6.2/tools/nunit.framework.dll b/packages/NUnit.Runners.2.6.2/tools/nunit.framework.dll
new file mode 100644
index 0000000..3e24ba1
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/nunit.framework.dll differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/pnunit-agent.exe b/packages/NUnit.Runners.2.6.2/tools/pnunit-agent.exe
new file mode 100644
index 0000000..ac7ca49
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/pnunit-agent.exe differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/pnunit-agent.exe.config b/packages/NUnit.Runners.2.6.2/tools/pnunit-agent.exe.config
new file mode 100644
index 0000000..2da8776
--- /dev/null
+++ b/packages/NUnit.Runners.2.6.2/tools/pnunit-agent.exe.config
@@ -0,0 +1,77 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/packages/NUnit.Runners.2.6.2/tools/pnunit-launcher.exe b/packages/NUnit.Runners.2.6.2/tools/pnunit-launcher.exe
new file mode 100644
index 0000000..1aedff3
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/pnunit-launcher.exe differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/pnunit-launcher.exe.config b/packages/NUnit.Runners.2.6.2/tools/pnunit-launcher.exe.config
new file mode 100644
index 0000000..2da8776
--- /dev/null
+++ b/packages/NUnit.Runners.2.6.2/tools/pnunit-launcher.exe.config
@@ -0,0 +1,77 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/packages/NUnit.Runners.2.6.2/tools/pnunit.framework.dll b/packages/NUnit.Runners.2.6.2/tools/pnunit.framework.dll
new file mode 100644
index 0000000..ae07067
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/pnunit.framework.dll differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/pnunit.tests.dll b/packages/NUnit.Runners.2.6.2/tools/pnunit.tests.dll
new file mode 100644
index 0000000..1bb788e
Binary files /dev/null and b/packages/NUnit.Runners.2.6.2/tools/pnunit.tests.dll differ
diff --git a/packages/NUnit.Runners.2.6.2/tools/runpnunit.bat b/packages/NUnit.Runners.2.6.2/tools/runpnunit.bat
new file mode 100644
index 0000000..f41cb5a
--- /dev/null
+++ b/packages/NUnit.Runners.2.6.2/tools/runpnunit.bat
@@ -0,0 +1,3 @@
+start pnunit-agent 8080 .
+start pnunit-agent 8081 .
+pnunit-launcher test.conf
diff --git a/packages/NUnit.Runners.2.6.2/tools/test.conf b/packages/NUnit.Runners.2.6.2/tools/test.conf
new file mode 100644
index 0000000..63cc7bd
--- /dev/null
+++ b/packages/NUnit.Runners.2.6.2/tools/test.conf
@@ -0,0 +1,82 @@
+
+
+
+
+
+
+
+
+
+
+ Testing
+
+
+ Testing
+ pnunit.tests.dll
+ TestLibraries.Testing.EqualTo19
+ $agent_host:8080
+
+
+
+
+
+
+ Parallel_Tests
+
+
+ ParallelTest_A_Test
+ pnunit.tests.dll
+ TestLibraries.ParallelExample.ParallelTest_A
+ $agent_host:8080
+
+
+ 2
+
+
+
+ ParallelTest_B_Test
+ pnunit.tests.dll
+ TestLibraries.ParallelExample.ParallelTest_B
+ $agent_host:8080
+
+ 1
+
+
+
+
+
+
+
+
+ Parallel_Barriers
+
+
+ Parallel_Barriers_TestA
+ pnunit.tests.dll
+ TestLibraries.ParallelExampleWithBarriers.ParallelTestWithBarriersA
+ $agent_host:8080
+
+
+
+ START_BARRIER
+ WAIT_BARRIER
+
+
+
+ Parallel_Barriers_TestB
+ pnunit.tests.dll
+ TestLibraries.ParallelExampleWithBarriers.ParallelTestWithBarriersB
+ $agent_host:8081
+
+
+
+ START_BARRIER
+ WAIT_BARRIER
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/packages/NuGet.CommandLine.2.6.1/NuGet.CommandLine.2.6.1.nupkg b/packages/NuGet.CommandLine.2.6.1/NuGet.CommandLine.2.6.1.nupkg
new file mode 100644
index 0000000..4767833
Binary files /dev/null and b/packages/NuGet.CommandLine.2.6.1/NuGet.CommandLine.2.6.1.nupkg differ
diff --git a/packages/NuGet.CommandLine.2.6.1/NuGet.CommandLine.2.6.1.nuspec b/packages/NuGet.CommandLine.2.6.1/NuGet.CommandLine.2.6.1.nuspec
new file mode 100644
index 0000000..ce2fe9d
--- /dev/null
+++ b/packages/NuGet.CommandLine.2.6.1/NuGet.CommandLine.2.6.1.nuspec
@@ -0,0 +1,17 @@
+
+
+
+ NuGet.CommandLine
+ 2.6.1
+ NuGet.CommandLine
+ Outercurve Foundation
+ Outercurve Foundation
+ http://nuget.codeplex.com/license
+ http://nuget.codeplex.com/
+ false
+ NuGet Command Line Tool
+
+ Copyright 2013 Microsoft. NuGet is made possible by the Outercurve Foundation’s open source project.
+
+
+
\ No newline at end of file
diff --git a/packages/NuGet.CommandLine.2.6.1/tools/NuGet.exe b/packages/NuGet.CommandLine.2.6.1/tools/NuGet.exe
new file mode 100644
index 0000000..c296edf
Binary files /dev/null and b/packages/NuGet.CommandLine.2.6.1/tools/NuGet.exe differ
diff --git a/packages/repositories.config b/packages/repositories.config
index 4e3c3de..9d8f2ff 100644
--- a/packages/repositories.config
+++ b/packages/repositories.config
@@ -1,4 +1,5 @@

+
\ No newline at end of file