зеркало из
1
0
Форкнуть 0

Merge pull request #1 from nunit/issue-1601

Move SilverLight to its own Repository
This commit is contained in:
Rob Prouse 2016-10-14 13:58:43 -04:00 коммит произвёл GitHub
Родитель a30dcc2cc0 dc648958b7
Коммит 98e63589ee
64 изменённых файлов: 142 добавлений и 10215 удалений

Просмотреть файл

@ -1,14 +0,0 @@
language: csharp
sudo: false
mono:
- latest
- 4.2.4
os:
- linux
- osx
matrix:
allow_failures:
- mono: latest
fast_finish: true
script:
- ./build.sh --target "Travis"

Просмотреть файл

@ -1,11 +1,13 @@
# NUnit 3.0 #
# NUnit SilverLight 3 #
[![AppVeyor Build status](https://ci.appveyor.com/api/projects/status/3xfkxtnkrts1x06q/branch/master?svg=true)](https://ci.appveyor.com/project/CharliePoole/nunit/branch/master) [![Travis Build Status](https://travis-ci.org/nunit/nunit.svg?branch=master)](https://travis-ci.org/nunit/nunit) [![NuGet Version and Downloads count](https://buildstats.info/nuget/NUnit)](https://www.nuget.org/packages/NUnit)
[![Build status](https://ci.appveyor.com/api/projects/status/cw74xvoi9kfjmip2/branch/master?svg=true)](https://ci.appveyor.com/project/CharliePoole/nunit-silverlight/branch/master) [![NuGet Version and Downloads count](https://buildstats.info/nuget/NUnit.SL50)](https://www.nuget.org/packages/NUnit.SL50)
[![Follow NUnit](https://img.shields.io/twitter/follow/nunit.svg?style=social)](https://twitter.com/nunit)
NUnit is a unit-testing framework for all .NET languages. Initially ported from JUnit, the current production release, version 3.0, has been completely rewritten with many new features and support for a wide range of .NET platforms.
This repository contains the SilverLight 5.0 version of the NUnit Framework. More information can be found in the main [NUnit Framework repository](https://github.com/nunit/nunit) and in the [documentation](https://github.com/nunit/docs/wiki).
## License ##
NUnit is Open Source software and NUnit 3.0 is released under the [MIT license](http://www.nunit.org/nuget/nunit3-license.txt). Earlier releases used the [NUnit license](http://www.nunit.org/nuget/license.html). Both of these licenses allow the use of NUnit in free and commercial applications and libraries without restrictions.

Просмотреть файл

@ -18,8 +18,6 @@ var ErrorDetail = new List<string>();
var version = "3.6.0";
var modifier = "";
var isCompactFrameworkInstalled = FileExists(Environment.GetEnvironmentVariable("windir") + "\\Microsoft.NET\\Framework\\v3.5\\Microsoft.CompactFramework.CSharp.targets");
//Find program files on 32-bit or 64-bit Windows
var programFiles = Environment.GetEnvironmentVariable("ProgramFiles(x86)") ?? Environment.GetEnvironmentVariable("ProgramFiles");
var isSilverlightSDKInstalled = FileExists(programFiles + "\\MSBuild\\Microsoft\\Silverlight\\v5.0\\Microsoft.Silverlight.CSharp.targets");
@ -28,18 +26,6 @@ var isAppveyor = BuildSystem.IsRunningOnAppVeyor;
var dbgSuffix = configuration == "Debug" ? "-dbg" : "";
var packageVersion = version + modifier + dbgSuffix;
//////////////////////////////////////////////////////////////////////
// SUPPORTED FRAMEWORKS
//////////////////////////////////////////////////////////////////////
var WindowsFrameworks = new string[] {
"net-4.5", "net-4.0", "net-3.5", "net-2.0", "portable", "sl-5.0", "netcf-3.5" };
var LinuxFrameworks = new string[] {
"net-4.5", "net-4.0", "net-3.5", "net-2.0" };
var AllFrameworks = IsRunningOnWindows() ? WindowsFrameworks : LinuxFrameworks;
//////////////////////////////////////////////////////////////////////
// DEFINE RUN CONSTANTS
//////////////////////////////////////////////////////////////////////
@ -49,9 +35,7 @@ var PACKAGE_DIR = PROJECT_DIR + "package/";
var BIN_DIR = PROJECT_DIR + "bin/" + configuration + "/";
var IMAGE_DIR = PROJECT_DIR + "images/";
var SOLUTION_FILE = IsRunningOnWindows()
? "./nunit.sln"
: "./nunit.linux.sln";
var SOLUTION_FILE = "./nunit-sl.sln";
// Package sources for nuget restore
var PACKAGE_SOURCE = new string[]
@ -65,15 +49,11 @@ var NUNITLITE_RUNNER = "nunitlite-runner.exe";
// Test Assemblies
var FRAMEWORK_TESTS = "nunit.framework.tests.dll";
var EXECUTABLE_FRAMEWORK_TESTS = "nunit.framework.tests.exe";
var NUNITLITE_TESTS = "nunitlite.tests.dll";
var EXECUTABLE_NUNITLITE_TESTS = "nunitlite.tests.exe";
// Packages
var SRC_PACKAGE = PACKAGE_DIR + "NUnit-" + version + modifier + "-src.zip";
var ZIP_PACKAGE = PACKAGE_DIR + "NUnit-" + packageVersion + ".zip";
var ZIP_PACKAGE_SL = PACKAGE_DIR + "NUnitSL-" + packageVersion + ".zip";
var ZIP_PACKAGE_CF = PACKAGE_DIR + "NUnitCF-" + packageVersion + ".zip";
var SRC_PACKAGE = PACKAGE_DIR + "NUnitSL-" + version + modifier + "-src.zip";
var ZIP_PACKAGE = PACKAGE_DIR + "NUnitSL-" + packageVersion + ".zip";
//////////////////////////////////////////////////////////////////////
// CLEAN
@ -143,84 +123,20 @@ Task("InitializeBuild")
// BUILD FRAMEWORKS
//////////////////////////////////////////////////////////////////////
Task("Build45")
.Does(() =>
{
BuildProject("src/NUnitFramework/framework/nunit.framework-4.5.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite/nunitlite-4.5.csproj", configuration);
BuildProject("src/NUnitFramework/mock-assembly/mock-assembly-4.5.csproj", configuration);
BuildProject("src/NUnitFramework/testdata/nunit.testdata-4.5.csproj", configuration);
BuildProject("src/NUnitFramework/slow-tests/slow-nunit-tests-4.5.csproj", configuration);
BuildProject("src/NUnitFramework/tests/nunit.framework.tests-4.5.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite.tests/nunitlite.tests-4.5.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite-runner/nunitlite-runner-4.5.csproj", configuration);
});
Task("Build40")
.Does(() =>
{
BuildProject("src/NUnitFramework/framework/nunit.framework-4.0.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite/nunitlite-4.0.csproj", configuration);
BuildProject("src/NUnitFramework/mock-assembly/mock-assembly-4.0.csproj", configuration);
BuildProject("src/NUnitFramework/testdata/nunit.testdata-4.0.csproj", configuration);
BuildProject("src/NUnitFramework/slow-tests/slow-nunit-tests-4.0.csproj", configuration);
BuildProject("src/NUnitFramework/tests/nunit.framework.tests-4.0.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite.tests/nunitlite.tests-4.0.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite-runner/nunitlite-runner-4.0.csproj", configuration);
});
Task("Build35")
.Does(() =>
{
BuildProject("src/NUnitFramework/framework/nunit.framework-3.5.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite/nunitlite-3.5.csproj", configuration);
BuildProject("src/NUnitFramework/mock-assembly/mock-assembly-3.5.csproj", configuration);
BuildProject("src/NUnitFramework/testdata/nunit.testdata-3.5.csproj", configuration);
BuildProject("src/NUnitFramework/slow-tests/slow-nunit-tests-3.5.csproj", configuration);
BuildProject("src/NUnitFramework/tests/nunit.framework.tests-3.5.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite.tests/nunitlite.tests-3.5.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite-runner/nunitlite-runner-3.5.csproj", configuration);
});
Task("Build20")
.Does(() =>
{
BuildProject("src/NUnitFramework/framework/nunit.framework-2.0.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite/nunitlite-2.0.csproj", configuration);
BuildProject("src/NUnitFramework/mock-assembly/mock-assembly-2.0.csproj", configuration);
BuildProject("src/NUnitFramework/testdata/nunit.testdata-2.0.csproj", configuration);
BuildProject("src/NUnitFramework/slow-tests/slow-nunit-tests-2.0.csproj", configuration);
BuildProject("src/NUnitFramework/tests/nunit.framework.tests-2.0.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite.tests/nunitlite.tests-2.0.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite-runner/nunitlite-runner-2.0.csproj", configuration);
});
Task("BuildPortable")
.WithCriteria(IsRunningOnWindows())
.Does(() =>
{
BuildProject("src/NUnitFramework/framework/nunit.framework-portable.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite/nunitlite-portable.csproj", configuration);
BuildProject("src/NUnitFramework/mock-assembly/mock-assembly-portable.csproj", configuration);
BuildProject("src/NUnitFramework/testdata/nunit.testdata-portable.csproj", configuration);
BuildProject("src/NUnitFramework/tests/nunit.framework.tests-portable.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite.tests/nunitlite.tests-portable.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite-runner/nunitlite-runner-portable.csproj", configuration);
});
Task("BuildSL")
Task("Build")
.IsDependentOn("InitializeBuild")
.WithCriteria(IsRunningOnWindows())
.Does(() =>
{
if(isSilverlightSDKInstalled)
{
BuildProjectSL("src/NUnitFramework/framework/nunit.framework-sl-5.0.csproj", configuration);
BuildProjectSL("src/NUnitFramework/nunitlite/nunitlite-sl-5.0.csproj", configuration);
BuildProjectSL("src/NUnitFramework/mock-assembly/mock-assembly-sl-5.0.csproj", configuration);
BuildProjectSL("src/NUnitFramework/testdata/nunit.testdata-sl-5.0.csproj", configuration);
BuildProjectSL("src/NUnitFramework/tests/nunit.framework.tests-sl-5.0.csproj", configuration);
BuildProjectSL("src/NUnitFramework/nunitlite.tests/nunitlite.tests-sl-5.0.csproj", configuration);
BuildProjectSL("src/NUnitFramework/nunitlite-runner/nunitlite-runner-sl-5.0.csproj", configuration);
BuildProject("src/NUnitFramework/framework/nunit.framework-sl-5.0.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite/nunitlite-sl-5.0.csproj", configuration);
BuildProject("src/NUnitFramework/mock-assembly/mock-assembly-sl-5.0.csproj", configuration);
BuildProject("src/NUnitFramework/testdata/nunit.testdata-sl-5.0.csproj", configuration);
BuildProject("src/NUnitFramework/tests/nunit.framework.tests-sl-5.0.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite.tests/nunitlite.tests-sl-5.0.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite-runner/nunitlite-runner-sl-5.0.csproj", configuration);
}
else
{
@ -230,29 +146,6 @@ Task("BuildSL")
}
});
Task("BuildCF")
.WithCriteria(IsRunningOnWindows())
.Does(() =>
{
if(isCompactFrameworkInstalled)
{
BuildProjectCF("src/NUnitFramework/framework/nunit.framework-netcf-3.5.csproj", configuration);
BuildProjectCF("src/NUnitFramework/mock-assembly/mock-assembly-netcf-3.5.csproj", configuration);
BuildProjectCF("src/NUnitFramework/testdata/nunit.testdata-netcf-3.5.csproj", configuration);
BuildProjectCF("src/NUnitFramework/tests/nunit.framework.tests-netcf-3.5.csproj", configuration);
BuildProjectCF("src/NUnitFramework/slow-tests/slow-nunit-tests-netcf-3.5.csproj", configuration);
BuildProjectCF("src/NUnitFramework/nunitlite/nunitlite-netcf-3.5.csproj", configuration);
BuildProjectCF("src/NUnitFramework/nunitlite.tests/nunitlite.tests-netcf-3.5.csproj", configuration);
BuildProjectCF("src/NUnitFramework/nunitlite-runner/nunitlite-runner-netcf-3.5.csproj", configuration);
}
else
{
Warning("Compact framework build skipped because files were not present.");
if(isAppveyor)
throw new Exception("Running Build on Appveyor, but CF not installed, please check that the appveyor-tools.ps1 script ran correctly.");
}
});
//////////////////////////////////////////////////////////////////////
// TEST
//////////////////////////////////////////////////////////////////////
@ -264,65 +157,9 @@ Task("CheckForError")
// TEST FRAMEWORK
//////////////////////////////////////////////////////////////////////
Task("Test45")
.IsDependentOn("Build45")
.OnError(exception => { ErrorDetail.Add(exception.Message); })
.Does(() =>
{
var runtime = "net-4.5";
var dir = BIN_DIR + runtime + "/";
RunTest(dir + NUNITLITE_RUNNER, dir, FRAMEWORK_TESTS, runtime, ref ErrorDetail);
RunTest(dir + EXECUTABLE_NUNITLITE_TESTS, dir, runtime, ref ErrorDetail);
});
Task("Test40")
.IsDependentOn("Build40")
.OnError(exception => { ErrorDetail.Add(exception.Message); })
.Does(() =>
{
var runtime = "net-4.0";
var dir = BIN_DIR + runtime + "/";
RunTest(dir + NUNITLITE_RUNNER, dir, FRAMEWORK_TESTS, runtime, ref ErrorDetail);
RunTest(dir + EXECUTABLE_NUNITLITE_TESTS, dir, runtime, ref ErrorDetail);
});
Task("Test35")
.IsDependentOn("Build35")
.OnError(exception => { ErrorDetail.Add(exception.Message); })
.Does(() =>
{
var runtime = "net-3.5";
var dir = BIN_DIR + runtime + "/";
RunTest(dir + NUNITLITE_RUNNER, dir, FRAMEWORK_TESTS, runtime, ref ErrorDetail);
RunTest(dir + EXECUTABLE_NUNITLITE_TESTS, dir, runtime, ref ErrorDetail);
});
Task("Test20")
.IsDependentOn("Build20")
.OnError(exception => { ErrorDetail.Add(exception.Message); })
.Does(() =>
{
var runtime = "net-2.0";
var dir = BIN_DIR + runtime + "/";
RunTest(dir + NUNITLITE_RUNNER, dir, FRAMEWORK_TESTS, runtime, ref ErrorDetail);
RunTest(dir + EXECUTABLE_NUNITLITE_TESTS, dir, runtime, ref ErrorDetail);
});
Task("TestPortable")
Task("Test")
.WithCriteria(IsRunningOnWindows())
.IsDependentOn("BuildPortable")
.OnError(exception => { ErrorDetail.Add(exception.Message); })
.Does(() =>
{
var runtime = "portable";
var dir = BIN_DIR + runtime + "/";
RunTest(dir + NUNITLITE_RUNNER, dir, FRAMEWORK_TESTS, runtime, ref ErrorDetail);
RunTest(dir + EXECUTABLE_NUNITLITE_TESTS, dir, runtime, ref ErrorDetail);
});
Task("TestSL")
.WithCriteria(IsRunningOnWindows())
.IsDependentOn("BuildSL")
.IsDependentOn("Build")
.OnError(exception => { ErrorDetail.Add(exception.Message); })
.Does(() =>
{
@ -339,25 +176,6 @@ Task("TestSL")
}
});
Task("TestCF")
.WithCriteria(IsRunningOnWindows())
.IsDependentOn("BuildCF")
.OnError(exception => { ErrorDetail.Add(exception.Message); })
.Does(() =>
{
if(isCompactFrameworkInstalled)
{
var runtime = "netcf-3.5";
var dir = BIN_DIR + runtime + "/";
RunTest(dir + EXECUTABLE_FRAMEWORK_TESTS, dir, runtime, ref ErrorDetail);
RunTest(dir + EXECUTABLE_NUNITLITE_TESTS, dir, runtime, ref ErrorDetail);
}
else
{
Warning("Compact framework tests skipped because files were not present.");
}
});
//////////////////////////////////////////////////////////////////////
// PACKAGE
//////////////////////////////////////////////////////////////////////
@ -369,33 +187,20 @@ var RootFiles = new FilePath[]
"CHANGES.txt"
};
// Not all of these are present in every framework
// The Microsoft and System assemblies are part of the BCL
// used by the .NET 4.0 framework. 4.0 tests will not run without them.
// NUnit.System.Linq is only present for the .NET 2.0 build.
var FrameworkFiles = new FilePath[]
{
"AppManifest.xaml",
"mock-assembly.dll",
"mock-assembly.exe",
"nunit.framework.dll",
"nunit.framework.xml",
"NUnit.System.Linq.dll",
"nunit.framework.tests.dll",
"nunit.framework.tests.xap",
"nunit.framework.tests_TestPage.html",
"nunit.testdata.dll",
"nunitlite.dll",
"nunitlite.tests.exe",
"nunitlite.tests.dll",
"slow-nunit-tests.dll",
"nunitlite-runner.exe",
"Microsoft.Threading.Tasks.dll",
"Microsoft.Threading.Tasks.Extensions.Desktop.dll",
"Microsoft.Threading.Tasks.Extensions.dll",
"System.IO.dll",
"System.Runtime.dll",
"System.Threading.Tasks.dll"
};
Task("PackageSource")
@ -418,17 +223,15 @@ Task("CreateImage")
CreateDirectory(imageBinDir);
Information("Created directory " + imageBinDir);
foreach (var runtime in AllFrameworks)
var runtime = "sl-5.0";
var targetDir = imageBinDir + Directory(runtime);
var sourceDir = BIN_DIR + Directory(runtime);
CreateDirectory(targetDir);
foreach (FilePath file in FrameworkFiles)
{
var targetDir = imageBinDir + Directory(runtime);
var sourceDir = BIN_DIR + Directory(runtime);
CreateDirectory(targetDir);
foreach (FilePath file in FrameworkFiles)
{
var sourcePath = sourceDir + "/" + file;
if (FileExists(sourcePath))
CopyFileToDirectory(sourcePath, targetDir);
}
var sourcePath = sourceDir + "/" + file;
if (FileExists(sourcePath))
CopyFileToDirectory(sourcePath, targetDir);
}
});
@ -440,13 +243,6 @@ Task("PackageFramework")
CreateDirectory(PACKAGE_DIR);
NuGetPack("nuget/framework/nunit.nuspec", new NuGetPackSettings()
{
Version = packageVersion,
BasePath = currentImageDir,
OutputDirectory = PACKAGE_DIR
});
NuGetPack("nuget/framework/nunitSL.nuspec", new NuGetPackSettings()
{
Version = packageVersion,
@ -454,13 +250,6 @@ Task("PackageFramework")
OutputDirectory = PACKAGE_DIR
});
NuGetPack("nuget/nunitlite/nunitlite.nuspec", new NuGetPackSettings()
{
Version = packageVersion,
BasePath = currentImageDir,
OutputDirectory = PACKAGE_DIR
});
NuGetPack("nuget/nunitlite/nunitliteSL.nuspec", new NuGetPackSettings()
{
Version = packageVersion,
@ -478,46 +267,9 @@ Task("PackageZip")
var currentImageDir = IMAGE_DIR + "NUnit-" + packageVersion + "/";
var zipFiles =
GetFiles(currentImageDir + "*.*") +
GetFiles(currentImageDir + "bin/net-2.0/*.*") +
GetFiles(currentImageDir + "bin/net-3.5/*.*") +
GetFiles(currentImageDir + "bin/net-4.0/*.*") +
GetFiles(currentImageDir + "bin/net-4.5/*.*") +
GetFiles(currentImageDir + "bin/portable/*.*");
Zip(currentImageDir, File(ZIP_PACKAGE), zipFiles);
zipFiles =
GetFiles(currentImageDir + "*.*") +
GetFiles(currentImageDir + "bin/sl-5.0/*.*");
Zip(currentImageDir, File(ZIP_PACKAGE_SL), zipFiles);
});
Task("PackageCF")
.IsDependentOn("CreateImage")
.Does(() =>
{
CreateDirectory(PACKAGE_DIR);
var currentImageDir = IMAGE_DIR + "NUnit-" + packageVersion + "/";
var zipFiles =
GetFiles(currentImageDir + "*.*") +
GetFiles(currentImageDir + "bin/netcf-3.5/*.*");
Zip(currentImageDir, File(ZIP_PACKAGE_CF), zipFiles);
NuGetPack("nuget/framework/nunitCF.nuspec", new NuGetPackSettings()
{
Version = packageVersion,
BasePath = currentImageDir,
OutputDirectory = PACKAGE_DIR
});
NuGetPack("nuget/nunitlite/nunitLiteCF.nuspec", new NuGetPackSettings()
{
Version = packageVersion,
BasePath = currentImageDir,
OutputDirectory = PACKAGE_DIR
});
Zip(currentImageDir, File(ZIP_PACKAGE), zipFiles);
});
//////////////////////////////////////////////////////////////////////
@ -573,32 +325,13 @@ void CheckForError(ref List<string> errorDetail)
//////////////////////////////////////////////////////////////////////
void BuildProject(string projectPath, string configuration)
{
DotNetBuild(projectPath, settings =>
settings.SetConfiguration(configuration)
.SetVerbosity(Verbosity.Minimal)
.WithTarget("Build")
.WithProperty("NodeReuse", "false"));
}
void BuildProjectCF(string projectPath, string configuration)
{
BuildProjectx86(projectPath, configuration, MSBuildToolVersion.VS2008);
}
void BuildProjectSL(string projectPath, string configuration)
{
BuildProjectx86(projectPath, configuration, MSBuildToolVersion.Default);
}
void BuildProjectx86(string projectPath, string configuration, MSBuildToolVersion toolVersion)
{
if(!IsRunningOnWindows()) return;
MSBuild(projectPath, new MSBuildSettings()
.SetConfiguration(configuration)
.SetMSBuildPlatform(MSBuildPlatform.x86)
.UseToolVersion(toolVersion)
.UseToolVersion(MSBuildToolVersion.Default)
.SetVerbosity(Verbosity.Minimal)
.SetNodeReuse(false));
}
@ -607,11 +340,6 @@ void BuildProjectx86(string projectPath, string configuration, MSBuildToolVersio
// HELPER METHODS - TEST
//////////////////////////////////////////////////////////////////////
void RunTest(FilePath exePath, DirectoryPath workingDir, string framework, ref List<string> errorDetail)
{
RunTest(exePath, workingDir, null, framework, ref errorDetail);
}
void RunTest(FilePath exePath, DirectoryPath workingDir, string arguments, string framework, ref List<string> errorDetail)
{
int rc = StartProcess(
@ -636,32 +364,9 @@ Task("Rebuild")
.IsDependentOn("Clean")
.IsDependentOn("Build");
Task("Build")
.IsDependentOn("InitializeBuild")
.IsDependentOn("Build45")
.IsDependentOn("Build40")
.IsDependentOn("Build35")
.IsDependentOn("Build20")
// NOTE: The following tasks use Criteria and will be skipped on Linux
.IsDependentOn("BuildPortable")
.IsDependentOn("BuildSL")
.IsDependentOn("BuildCF");
Task("Test")
.IsDependentOn("Build")
.IsDependentOn("Test45")
.IsDependentOn("Test40")
.IsDependentOn("Test35")
.IsDependentOn("Test20")
// NOTE: The following tasks use Criteria and will be skipped on Linux
.IsDependentOn("TestPortable")
.IsDependentOn("TestSL")
.IsDependentOn("TestCF");
Task("Package")
.IsDependentOn("CheckForError")
.IsDependentOn("PackageFramework")
.IsDependentOn("PackageCF")
.IsDependentOn("PackageZip");
Task("Appveyor")
@ -670,10 +375,6 @@ Task("Appveyor")
.IsDependentOn("Package")
.IsDependentOn("UploadArtifacts");
Task("Travis")
.IsDependentOn("Build")
.IsDependentOn("Test");
Task("Default")
.IsDependentOn("Build");

Просмотреть файл

@ -1,49 +0,0 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>NUnit</id>
<title>NUnit</title>
<version>$version$</version>
<authors>Charlie Poole</authors>
<owners>Charlie Poole</owners>
<licenseUrl>http://nunit.org/nuget/nunit3-license.txt</licenseUrl>
<projectUrl>http://nunit.org</projectUrl>
<iconUrl>http://nunit.org/nuget/nunitv3_32x32.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<summary>NUnit is a unit-testing framework for all .NET languages with a strong TDD focus.</summary>
<description>NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible.
This package includes the NUnit 3.0 framework assembly, which is referenced by your tests. You will need to install version 3.0 of the nunit3-console program or a third-party runner that supports NUnit 3.0 in order to execute tests. Runners intended for use with NUnit 2.x will not run 3.0 tests correctly.
Supported platforms:
- .NET 2.0+
- .NET Core (Universal Windows Apps 10+, DNX Core 5+)
- Windows 8
- Windows Phone 8 (Silverlight)
- Universal (Windows Phone 8.1+, Windows 8.1+)
- Xamarin (MonoTouch, MonoAndroid, Xamarin iOS Universal)
- Portable Libraries (supporting Profile259)</description>
<releaseNotes>This package includes the NUnit 3.0 framework assembly, which is referenced by your tests. You will need to install version 3.0 of the nunit3-console program or a third-party runner that supports NUnit 3.0 in order to execute tests. Runners intended for use with NUnit 2.x will not run 3.0 tests correctly.</releaseNotes>
<language>en-US</language>
<tags>nunit test testing tdd framework fluent assert theory plugin addin</tags>
<copyright>Copyright (c) 2016 Charlie Poole</copyright>
</metadata>
<files>
<file src="LICENSE.txt" />
<file src="NOTICES.txt" />
<file src="CHANGES.txt" />
<file src="bin/net-2.0/nunit.framework.dll" target="lib/net20" />
<file src="bin/net-2.0/nunit.framework.xml" target="lib/net20" />
<file src="bin/net-2.0/NUnit.System.Linq.dll" target="lib/net20" />
<file src="bin/net-3.5/nunit.framework.dll" target="lib/net35" />
<file src="bin/net-3.5/nunit.framework.xml" target="lib/net35" />
<file src="bin/net-4.0/nunit.framework.dll" target="lib/net40" />
<file src="bin/net-4.0/nunit.framework.xml" target="lib/net40" />
<file src="bin/net-4.5/nunit.framework.dll" target="lib/net45" />
<file src="bin/net-4.5/nunit.framework.xml" target="lib/net45" />
<file src="bin/portable/nunit.framework.dll" target="lib/dotnet" />
<file src="bin/portable/nunit.framework.xml" target="lib/dotnet" />
<file src="bin/portable/nunit.framework.dll" target="lib/portable-net45+win8+wp8+wpa81+Xamarin.Mac+MonoAndroid10+MonoTouch10+Xamarin.iOS10" />
<file src="bin/portable/nunit.framework.xml" target="lib/portable-net45+win8+wp8+wpa81+Xamarin.Mac+MonoAndroid10+MonoTouch10+Xamarin.iOS10" />
</files>
</package>

Просмотреть файл

@ -1,26 +0,0 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>NUnitCF</id>
<title>NUnit Version 3 for Compact Framework</title>
<version>$version$</version>
<authors>Charlie Poole</authors>
<owners>Charlie Poole</owners>
<licenseUrl>http://nunit.org/nuget/nunit3-license.txt</licenseUrl>
<projectUrl>http://nunit.org</projectUrl>
<iconUrl>http://nunit.org/nuget/nunitv3_32x32.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<summary>NUnit is a unit-testing framework for all .NET languages with a strong TDD focus.</summary>
<description>NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible.&#10;&#13;This package includes the NUnit 3.0 framework assembly for .NET Compact Framework 3.5, which is referenced by your tests. You will need to install the NUnitLiteCF package in order to run the tests. Two separate packages are used because future versions will be supported by additional runners.</description>
<language>en-US</language>
<tags>nunit test testing tdd framework fluent assert theory plugin addin cf compact framework</tags>
<copyright>Copyright (c) 2016 Charlie Poole</copyright>
</metadata>
<files>
<file src="LICENSE.txt" />
<file src="NOTICES.txt" />
<file src="CHANGES.txt" />
<file src="bin\netcf-3.5\nunit.framework.dll" target="lib\net35-cf" />
<file src="bin\netcf-3.5\nunit.framework.xml" target="lib\net35-cf" />
</files>
</package>

Просмотреть файл

@ -1,41 +0,0 @@
// ***********************************************************************
// Copyright (c) 2015 Charlie Poole
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
// ***********************************************************************
using NUnitLite;
namespace NUnitLite.Tests
{
public class Program
{
/// <summary>
/// The main program executes the tests. Output may be routed to
/// various locations, depending on the arguments passed.
/// </summary>
/// <remarks>Run with --help for a full list of arguments supported</remarks>
/// <param name="args"></param>
public static int Main(string[] args)
{
return new AutoRun().Execute(args);
}
}
}

Просмотреть файл

@ -1,37 +0,0 @@
' ***********************************************************************
' Copyright (c) 2015 Charlie Poole
'
' Permission is hereby granted, free of charge, to any person obtaining
' a copy of this software and associated documentation files (the
' "Software"), to deal in the Software without restriction, including
' without limitation the rights to use, copy, modify, merge, publish,
' distribute, sublicense, and/or sell copies of the Software, and to
' permit persons to whom the Software is furnished to do so, subject to
' the following conditions:
'
' The above copyright notice and this permission notice shall be
' included in all copies or substantial portions of the Software.
'
' THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
' EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
' MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
' NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
' LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
' OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
' WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
' ***********************************************************************
Imports NUnitLite
Public Class Program
''' <summary>
''' The main program executes the tests. Output may be routed to
''' various locations, depending on the arguments passed.
''' </summary>
''' <remarks>Run with --help for a full list of arguments supported</remarks>
Public Shared Function Main(ByVal args() As String) As Integer
Return New AutoRun().Execute(args)
End Function
End Class

Просмотреть файл

@ -1,9 +0,0 @@
param($installPath, $toolsPath, $package, $project)
If ($project.Type -ne "VB.NET")
{
$project.ProjectItems.Item("Program.vb").Delete()
}
If ($project.Type -ne "C#")
{
$project.ProjectItems.Item("Program.cs").Delete()
}

Просмотреть файл

@ -1,54 +0,0 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>NUnitLite</id>
<title>NUnitLite Version 3</title>
<version>$version$</version>
<authors>Charlie Poole</authors>
<owners>Charlie Poole</owners>
<licenseUrl>http://nunit.org/nuget/nunit3-license.txt</licenseUrl>
<projectUrl>http://nunit.org</projectUrl>
<iconUrl>http://nunit.org/nuget/nunitv3_32x32.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<summary>NUnitlite is a lightweight runner for tests that use the NUnit testing framework.</summary>
<description>NUnitLite provides a simple way to run NUnit tests, without the overhead of a full NUnit installation. It is suitable for projects that want to have a quick way to run tests using a console runner and don't need all the features of the NUnit engine and console runner.
Supported platforms:
- .NET 2.0+
- .NET Core (Universal Windows Apps 10+, DNX Core 5+)
- Portable Libraries (supporting Profile259)
How to use this package:
1. Create a console application for your tests and delete the generated class containing Main().
2. Install the NUnitLite package, which creates a new Main() as well as adding a reference to NUnitLite. This will also bring in the NUnit package, which adds a reference to the nunit framework to your project.
3. Add your tests to the test project and simply start the project to execute them.</description>
<language>en-US</language>
<tags>test unit testing tdd framework fluent assert device phone embedded</tags>
<copyright>Copyright (c) 2016 Charlie Poole</copyright>
<dependencies>
<group>
<dependency id="NUnit" version="[$version$]" />
</group>
</dependencies>
</metadata>
<files>
<file src="LICENSE.txt" />
<file src="NOTICES.txt" />
<file src="CHANGES.txt" />
<file src="bin/net-2.0/nunitlite.dll" target="lib/net20" />
<file src="bin/net-3.5/nunitlite.dll" target="lib/net35" />
<file src="bin/net-4.0/nunitlite.dll" target="lib/net40" />
<file src="bin/net-4.5/nunitlite.dll" target="lib/net45" />
<file src="bin/portable/nunitlite.dll" target="lib/dotnet" />
<file src="bin/portable/nunitlite.dll" target="lib/portable-net45+win8+wp8+wpa81+Xamarin.Mac" />
<file src="bin/net-2.0/nunitlite-runner.exe" target="tools/net20" />
<file src="bin/net-3.5/nunitlite-runner.exe" target="tools/net35" />
<file src="bin/net-4.0/nunitlite-runner.exe" target="tools/net40" />
<file src="bin/net-4.5/nunitlite-runner.exe" target="tools/net45" />
<file src="bin/portable/nunitlite-runner.exe" target="tools/portable" />
<file src="..\..\nuget\nunitlite\Program.cs" target="content" />
<file src="..\..\nuget\nunitlite\Program.vb" target="content" />
<file src="..\..\nuget\nunitlite\install.ps1" target="tools" />
</files>
</package>

Просмотреть файл

@ -1,33 +0,0 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>NUnitLiteCF</id>
<title>NUnitLite Version 3 for Compact Framework</title>
<version>$version$</version>
<authors>Charlie Poole</authors>
<owners>Charlie Poole</owners>
<licenseUrl>http://nunit.org/nuget/nunit3-license.txt</licenseUrl>
<projectUrl>http://nunit.org</projectUrl>
<iconUrl>http://nunit.org/nuget/nunitv3_32x32.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<summary>NUnitlite is a lightweight runner for tests that use the NUnit testing framework.</summary>
<description>NUnitLite provides a simple way to run NUnit tests, without the overhead of a full NUnit installation. This package contains a build of the NUnitLite runner for the .NET compact framework 3.5.</description>
<language>en-US</language>
<tags>test unit testing tdd framework fluent assert device phone embedded cf compact</tags>
<copyright>Copyright (c) 2016 Charlie Poole</copyright>
<dependencies>
<group>
<dependency id="NUnitCF" version="[$version$]" />
</group>
</dependencies>
</metadata>
<files>
<file src="LICENSE.txt" />
<file src="NOTICES.txt" />
<file src="CHANGES.txt" />
<file src="bin\netcf-3.5\nunitlite.dll" target="lib\net35-cf" />
<file src="..\..\nuget\nunitlite\Program.cs" target="content" />
<file src="..\..\nuget\nunitlite\Program.vb" target="content" />
<file src="..\..\nuget\nunitlite\install.ps1" target="tools" />
</files>
</package>

114
nunit-sl.sln Normal file
Просмотреть файл

@ -0,0 +1,114 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "NUnitFramework", "NUnitFramework", "{5D8A9D62-C11C-45B2-8965-43DE8160B558}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{49D441DF-39FD-4F4D-AECA-86CF8EFE23AF}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
.gitattributes = .gitattributes
.gitignore = .gitignore
.travis.yml = .travis.yml
appveyor.yml = appveyor.yml
build.cake = build.cake
BUILDING.md = BUILDING.md
CHANGES.txt = CHANGES.txt
CONTRIBUTING.md = CONTRIBUTING.md
LICENSE.txt = LICENSE.txt
NOTICES.txt = NOTICES.txt
NuGet.config = NuGet.config
README.md = README.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "nuget", "nuget", "{A972031D-2F61-4183-AF75-99EE1A9F6B32}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.framework-sl-5.0", "src\NUnitFramework\framework\nunit.framework-sl-5.0.csproj", "{3DEB15F9-E7DA-403F-B6D3-A8499310397F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.testdata-sl-5.0", "src\NUnitFramework\testdata\nunit.testdata-sl-5.0.csproj", "{A76794DA-29A4-4D63-9850-E0E363A2FAFD}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.framework.tests-sl-5.0", "src\NUnitFramework\tests\nunit.framework.tests-sl-5.0.csproj", "{A4F0C741-6ED4-46C8-AE75-57E1C7197E22}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "mock-assembly-sl-5.0", "src\NUnitFramework\mock-assembly\mock-assembly-sl-5.0.csproj", "{C4D16DF1-B6FA-42F5-834E-B01DA1BAA1FF}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite.tests-sl-5.0", "src\NUnitFramework\nunitlite.tests\nunitlite.tests-sl-5.0.csproj", "{5249870F-7119-45DE-A269-66D6451E2507}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite-sl-5.0", "src\NUnitFramework\nunitlite\nunitlite-sl-5.0.csproj", "{0A5F920A-1BF5-4DAC-B799-0C618B203797}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite-runner-sl-5.0", "src\NUnitFramework\nunitlite-runner\nunitlite-runner-sl-5.0.csproj", "{901DA110-F30A-4515-880D-E9D59B6ECB4E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "slow-nunit-tests-sl-5.0", "src\NUnitFramework\slow-tests\slow-nunit-tests-sl-5.0.csproj", "{A2B973C4-EA96-4B00-B2BE-04BFD9D5AA39}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "framework", "framework", "{BC87F477-1A7A-45D0-9AC1-9F7315264732}"
ProjectSection(SolutionItems) = preProject
nuget\framework\nunitSL.nuspec = nuget\framework\nunitSL.nuspec
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "nunitlite", "nunitlite", "{140CDAD6-6E11-4A97-94F3-B23A14391117}"
ProjectSection(SolutionItems) = preProject
nuget\nunitlite\nunitliteSL.nuspec = nuget\nunitlite\nunitliteSL.nuspec
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{3DEB15F9-E7DA-403F-B6D3-A8499310397F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3DEB15F9-E7DA-403F-B6D3-A8499310397F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3DEB15F9-E7DA-403F-B6D3-A8499310397F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3DEB15F9-E7DA-403F-B6D3-A8499310397F}.Release|Any CPU.Build.0 = Release|Any CPU
{A76794DA-29A4-4D63-9850-E0E363A2FAFD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A76794DA-29A4-4D63-9850-E0E363A2FAFD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A76794DA-29A4-4D63-9850-E0E363A2FAFD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A76794DA-29A4-4D63-9850-E0E363A2FAFD}.Release|Any CPU.Build.0 = Release|Any CPU
{A4F0C741-6ED4-46C8-AE75-57E1C7197E22}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A4F0C741-6ED4-46C8-AE75-57E1C7197E22}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A4F0C741-6ED4-46C8-AE75-57E1C7197E22}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A4F0C741-6ED4-46C8-AE75-57E1C7197E22}.Release|Any CPU.Build.0 = Release|Any CPU
{C4D16DF1-B6FA-42F5-834E-B01DA1BAA1FF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C4D16DF1-B6FA-42F5-834E-B01DA1BAA1FF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C4D16DF1-B6FA-42F5-834E-B01DA1BAA1FF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C4D16DF1-B6FA-42F5-834E-B01DA1BAA1FF}.Release|Any CPU.Build.0 = Release|Any CPU
{5249870F-7119-45DE-A269-66D6451E2507}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5249870F-7119-45DE-A269-66D6451E2507}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5249870F-7119-45DE-A269-66D6451E2507}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5249870F-7119-45DE-A269-66D6451E2507}.Release|Any CPU.Build.0 = Release|Any CPU
{0A5F920A-1BF5-4DAC-B799-0C618B203797}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0A5F920A-1BF5-4DAC-B799-0C618B203797}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0A5F920A-1BF5-4DAC-B799-0C618B203797}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0A5F920A-1BF5-4DAC-B799-0C618B203797}.Release|Any CPU.Build.0 = Release|Any CPU
{901DA110-F30A-4515-880D-E9D59B6ECB4E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{901DA110-F30A-4515-880D-E9D59B6ECB4E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{901DA110-F30A-4515-880D-E9D59B6ECB4E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{901DA110-F30A-4515-880D-E9D59B6ECB4E}.Release|Any CPU.Build.0 = Release|Any CPU
{A2B973C4-EA96-4B00-B2BE-04BFD9D5AA39}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A2B973C4-EA96-4B00-B2BE-04BFD9D5AA39}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A2B973C4-EA96-4B00-B2BE-04BFD9D5AA39}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A2B973C4-EA96-4B00-B2BE-04BFD9D5AA39}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{A972031D-2F61-4183-AF75-99EE1A9F6B32} = {49D441DF-39FD-4F4D-AECA-86CF8EFE23AF}
{3DEB15F9-E7DA-403F-B6D3-A8499310397F} = {5D8A9D62-C11C-45B2-8965-43DE8160B558}
{A76794DA-29A4-4D63-9850-E0E363A2FAFD} = {5D8A9D62-C11C-45B2-8965-43DE8160B558}
{A4F0C741-6ED4-46C8-AE75-57E1C7197E22} = {5D8A9D62-C11C-45B2-8965-43DE8160B558}
{C4D16DF1-B6FA-42F5-834E-B01DA1BAA1FF} = {5D8A9D62-C11C-45B2-8965-43DE8160B558}
{5249870F-7119-45DE-A269-66D6451E2507} = {5D8A9D62-C11C-45B2-8965-43DE8160B558}
{0A5F920A-1BF5-4DAC-B799-0C618B203797} = {5D8A9D62-C11C-45B2-8965-43DE8160B558}
{901DA110-F30A-4515-880D-E9D59B6ECB4E} = {5D8A9D62-C11C-45B2-8965-43DE8160B558}
{A2B973C4-EA96-4B00-B2BE-04BFD9D5AA39} = {5D8A9D62-C11C-45B2-8965-43DE8160B558}
{BC87F477-1A7A-45D0-9AC1-9F7315264732} = {A972031D-2F61-4183-AF75-99EE1A9F6B32}
{140CDAD6-6E11-4A97-94F3-B23A14391117} = {A972031D-2F61-4183-AF75-99EE1A9F6B32}
EndGlobalSection
GlobalSection(MonoDevelopProperties) = preSolution
StartupItem = src\NUnitFramework\tests\nunitlite.tests-2.0.csproj
{28B605B2-E2E9-417E-8369-49E263F1F31B} = {31B45C4C-206F-4F31-9CC6-33BF11DFEE39}
{FFF45826-991F-465B-8A03-0E1DB7E8F38C} = {31B45C4C-206F-4F31-9CC6-33BF11DFEE39}
{11640C9F-03A3-456B-848D-9B4A126F9506} = {31B45C4C-206F-4F31-9CC6-33BF11DFEE39}
EndGlobalSection
EndGlobal

Просмотреть файл

Просмотреть файл

@ -1,774 +0,0 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "NUnitFramework", "NUnitFramework", "{5D8A9D62-C11C-45B2-8965-43DE8160B558}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "NET-2.0", "NET-2.0", "{64FE69B2-CE0B-4A47-83A3-9DE803851447}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.framework-2.0", "src\NUnitFramework\framework\nunit.framework-2.0.csproj", "{12B66B03-90F1-4992-BD33-BDF3C69AE49E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.testdata-2.0", "src\NUnitFramework\testdata\nunit.testdata-2.0.csproj", "{15B64946-4989-4873-915C-3E181772FA03}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "slow-nunit-tests-2.0", "src\NUnitFramework\slow-tests\slow-nunit-tests-2.0.csproj", "{B0791F6D-5D14-40DD-A2CB-5D2A97892693}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.framework.tests-2.0", "src\NUnitFramework\tests\nunit.framework.tests-2.0.csproj", "{EA9871E3-9972-4476-821E-3961C28125E8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite-2.0", "src\NUnitFramework\nunitlite\nunitlite-2.0.csproj", "{28C7B9D6-BE1F-45E5-952C-0D5C9CA3EFDF}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite.tests-2.0", "src\NUnitFramework\nunitlite.tests\nunitlite.tests-2.0.csproj", "{42BC31BF-0A03-43EC-925B-1419DD7F2C7C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "mock-assembly-2.0", "src\NUnitFramework\mock-assembly\mock-assembly-2.0.csproj", "{2E368281-3BA8-4050-B05E-0E0E43F8F446}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite-runner-2.0", "src\NUnitFramework\nunitlite-runner\nunitlite-runner-2.0.csproj", "{3FA7B726-8AF9-4554-B41A-0BD915E4EAB5}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "NET-4.0", "NET-4.0", "{83154E24-B0DD-48E7-8BB5-55CF3D7B0FE3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.framework-4.0", "src\NUnitFramework\framework\nunit.framework-4.0.csproj", "{6A281C98-B74D-403B-8536-966871B992E3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "slow-nunit-tests-4.0", "src\NUnitFramework\slow-tests\slow-nunit-tests-4.0.csproj", "{1D38AEC8-F5C0-4B1C-A0AE-18F4015A2E78}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.testdata-4.0", "src\NUnitFramework\testdata\nunit.testdata-4.0.csproj", "{A35E6AD6-6D46-41E1-8DB1-A41086793893}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.framework.tests-4.0", "src\NUnitFramework\tests\nunit.framework.tests-4.0.csproj", "{08D0F53A-CD37-4060-B5A2-BCC202F0DE46}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite-4.0", "src\NUnitFramework\nunitlite\nunitlite-4.0.csproj", "{DBD0C8B0-BE4E-4CBF-AAD4-44BEA2EA830B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite.tests-4.0", "src\NUnitFramework\nunitlite.tests\nunitlite.tests-4.0.csproj", "{F0BA2671-5160-4164-B1FC-2883728C42D9}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "mock-assembly-4.0", "src\NUnitFramework\mock-assembly\mock-assembly-4.0.csproj", "{DDCE1AE3-AA0D-4E2D-AD1B-8CA322AFA7DD}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite-runner-4.0", "src\NUnitFramework\nunitlite-runner\nunitlite-runner-4.0.csproj", "{C861E6BA-852B-4BC1-ACE7-77C8D6E7898B}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "NET-4.5", "NET-4.5", "{7B573D52-181D-482F-A61C-82E543B3E958}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.framework-4.5", "src\NUnitFramework\framework\nunit.framework-4.5.csproj", "{D209C368-1277-4EA6-A887-AA6EBA51AB99}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "slow-nunit-tests-4.5", "src\NUnitFramework\slow-tests\slow-nunit-tests-4.5.csproj", "{705FBD41-77A9-4FE7-A6C1-85026F2DDA09}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.testdata-4.5", "src\NUnitFramework\testdata\nunit.testdata-4.5.csproj", "{E7541163-D7BB-4E9A-A722-D7737B7A2995}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.framework.tests-4.5", "src\NUnitFramework\tests\nunit.framework.tests-4.5.csproj", "{5B8B0EAB-3E74-48BB-8231-26E73B2019DC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite-4.5", "src\NUnitFramework\nunitlite\nunitlite-4.5.csproj", "{46EC0BC1-8F51-4B4D-B967-2EE452EA68FC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite.tests-4.5", "src\NUnitFramework\nunitlite.tests\nunitlite.tests-4.5.csproj", "{8472DB53-5950-4A70-864C-567A55A6C4A1}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "mock-assembly-4.5", "src\NUnitFramework\mock-assembly\mock-assembly-4.5.csproj", "{C3264FF3-E2D7-48D7-93A7-CDC9A827AD9D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite-runner-4.5", "src\NUnitFramework\nunitlite-runner\nunitlite-runner-4.5.csproj", "{B00DC1F7-764B-4B65-9953-FA557E2EC493}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Portable", "Portable", "{05CA7939-235D-4E1F-BDFE-D639485A67E9}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.framework-portable", "src\NUnitFramework\framework\nunit.framework-portable.csproj", "{D6FBBB3A-F6B8-45BB-B657-A7226AB96624}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.testdata-portable", "src\NUnitFramework\testdata\nunit.testdata-portable.csproj", "{9ED200E4-2026-4955-87E0-D8CEA7BD9E7F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.framework.tests-portable", "src\NUnitFramework\tests\nunit.framework.tests-portable.csproj", "{3AFA44B9-9DF0-494E-B633-6E6B9F2BB808}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite-portable", "src\NUnitFramework\nunitlite\nunitlite-portable.csproj", "{D339BFC2-AF3F-46FA-899A-14BAD4BCA35B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite.tests-portable", "src\NUnitFramework\nunitlite.tests\nunitlite.tests-portable.csproj", "{6872DB53-3250-4A70-2A4C-567A55A6C4B3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "mock-assembly-portable", "src\NUnitFramework\mock-assembly\mock-assembly-portable.csproj", "{8C53C716-3E54-4DFE-8CD9-F4099042FCFA}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite-runner-portable", "src\NUnitFramework\nunitlite-runner\nunitlite-runner-portable.csproj", "{1A48458D-31A4-48D3-8EB2-2C79CFE4E82C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "slow-nunit-tests-portable", "src\NUnitFramework\slow-tests\slow-nunit-tests-portable.csproj", "{74CB429E-69D7-4525-BBDF-BBC47DBC7070}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{49D441DF-39FD-4F4D-AECA-86CF8EFE23AF}"
ProjectSection(SolutionItems) = preProject
BUILDING.md = BUILDING.md
LICENSE.txt = LICENSE.txt
NOTICES.txt = NOTICES.txt
README.md = README.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "nuget", "nuget", "{A972031D-2F61-4183-AF75-99EE1A9F6B32}"
ProjectSection(SolutionItems) = preProject
nuget\framework\nunit.nuspec = nuget\framework\nunit.nuspec
nuget\nunitlite\nunitlite.nuspec = nuget\nunitlite\nunitlite.nuspec
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "NET-3.5", "NET-3.5", "{0DA39A07-D5ED-4031-AA6E-CAA873124ACA}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.framework-3.5", "src\NUnitFramework\framework\nunit.framework-3.5.csproj", "{7FA125B4-E377-4D4C-AECB-17B934E3A4B3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite-3.5", "src\NUnitFramework\nunitlite\nunitlite-3.5.csproj", "{82F93F6E-5C10-4CC7-BC65-AC0B9CA6D39A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "mock-assembly-3.5", "src\NUnitFramework\mock-assembly\mock-assembly-3.5.csproj", "{8FCE12F2-FE7B-43D0-94E9-3B71FECAFE64}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "slow-nunit-tests-3.5", "src\NUnitFramework\slow-tests\slow-nunit-tests-3.5.csproj", "{C6156B98-923A-474B-B257-29107476E93C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite-runner-3.5", "src\NUnitFramework\nunitlite-runner\nunitlite-runner-3.5.csproj", "{A7E48768-23B5-4A11-B10A-048FB21A0955}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.testdata-3.5", "src\NUnitFramework\testdata\nunit.testdata-3.5.csproj", "{520F4C89-51B6-49D6-9ED7-4523048C0154}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite.tests-3.5", "src\NUnitFramework\nunitlite.tests\nunitlite.tests-3.5.csproj", "{FD6D4774-71B7-4D7A-BE91-753B12C0BB4E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.framework.tests-3.5", "src\NUnitFramework\tests\nunit.framework.tests-3.5.csproj", "{B93FC354-D59D-4650-84E4-7FCA7D51689A}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|Mixed Platforms = Debug|Mixed Platforms
Debug|Win32 = Debug|Win32
Debug|x64 = Debug|x64
Release|Any CPU = Release|Any CPU
Release|Mixed Platforms = Release|Mixed Platforms
Release|Win32 = Release|Win32
Release|x64 = Release|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{12B66B03-90F1-4992-BD33-BDF3C69AE49E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{12B66B03-90F1-4992-BD33-BDF3C69AE49E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{12B66B03-90F1-4992-BD33-BDF3C69AE49E}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{12B66B03-90F1-4992-BD33-BDF3C69AE49E}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{12B66B03-90F1-4992-BD33-BDF3C69AE49E}.Debug|Win32.ActiveCfg = Debug|Any CPU
{12B66B03-90F1-4992-BD33-BDF3C69AE49E}.Debug|x64.ActiveCfg = Debug|Any CPU
{12B66B03-90F1-4992-BD33-BDF3C69AE49E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{12B66B03-90F1-4992-BD33-BDF3C69AE49E}.Release|Any CPU.Build.0 = Release|Any CPU
{12B66B03-90F1-4992-BD33-BDF3C69AE49E}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{12B66B03-90F1-4992-BD33-BDF3C69AE49E}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{12B66B03-90F1-4992-BD33-BDF3C69AE49E}.Release|Win32.ActiveCfg = Release|Any CPU
{12B66B03-90F1-4992-BD33-BDF3C69AE49E}.Release|x64.ActiveCfg = Release|Any CPU
{15B64946-4989-4873-915C-3E181772FA03}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{15B64946-4989-4873-915C-3E181772FA03}.Debug|Any CPU.Build.0 = Debug|Any CPU
{15B64946-4989-4873-915C-3E181772FA03}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{15B64946-4989-4873-915C-3E181772FA03}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{15B64946-4989-4873-915C-3E181772FA03}.Debug|Win32.ActiveCfg = Debug|Any CPU
{15B64946-4989-4873-915C-3E181772FA03}.Debug|x64.ActiveCfg = Debug|Any CPU
{15B64946-4989-4873-915C-3E181772FA03}.Release|Any CPU.ActiveCfg = Release|Any CPU
{15B64946-4989-4873-915C-3E181772FA03}.Release|Any CPU.Build.0 = Release|Any CPU
{15B64946-4989-4873-915C-3E181772FA03}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{15B64946-4989-4873-915C-3E181772FA03}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{15B64946-4989-4873-915C-3E181772FA03}.Release|Win32.ActiveCfg = Release|Any CPU
{15B64946-4989-4873-915C-3E181772FA03}.Release|x64.ActiveCfg = Release|Any CPU
{B0791F6D-5D14-40DD-A2CB-5D2A97892693}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B0791F6D-5D14-40DD-A2CB-5D2A97892693}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B0791F6D-5D14-40DD-A2CB-5D2A97892693}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{B0791F6D-5D14-40DD-A2CB-5D2A97892693}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{B0791F6D-5D14-40DD-A2CB-5D2A97892693}.Debug|Win32.ActiveCfg = Debug|Any CPU
{B0791F6D-5D14-40DD-A2CB-5D2A97892693}.Debug|x64.ActiveCfg = Debug|Any CPU
{B0791F6D-5D14-40DD-A2CB-5D2A97892693}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B0791F6D-5D14-40DD-A2CB-5D2A97892693}.Release|Any CPU.Build.0 = Release|Any CPU
{B0791F6D-5D14-40DD-A2CB-5D2A97892693}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{B0791F6D-5D14-40DD-A2CB-5D2A97892693}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{B0791F6D-5D14-40DD-A2CB-5D2A97892693}.Release|Win32.ActiveCfg = Release|Any CPU
{B0791F6D-5D14-40DD-A2CB-5D2A97892693}.Release|x64.ActiveCfg = Release|Any CPU
{EA9871E3-9972-4476-821E-3961C28125E8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EA9871E3-9972-4476-821E-3961C28125E8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EA9871E3-9972-4476-821E-3961C28125E8}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{EA9871E3-9972-4476-821E-3961C28125E8}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{EA9871E3-9972-4476-821E-3961C28125E8}.Debug|Win32.ActiveCfg = Debug|Any CPU
{EA9871E3-9972-4476-821E-3961C28125E8}.Debug|x64.ActiveCfg = Debug|Any CPU
{EA9871E3-9972-4476-821E-3961C28125E8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EA9871E3-9972-4476-821E-3961C28125E8}.Release|Any CPU.Build.0 = Release|Any CPU
{EA9871E3-9972-4476-821E-3961C28125E8}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{EA9871E3-9972-4476-821E-3961C28125E8}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{EA9871E3-9972-4476-821E-3961C28125E8}.Release|Win32.ActiveCfg = Release|Any CPU
{EA9871E3-9972-4476-821E-3961C28125E8}.Release|x64.ActiveCfg = Release|Any CPU
{28C7B9D6-BE1F-45E5-952C-0D5C9CA3EFDF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{28C7B9D6-BE1F-45E5-952C-0D5C9CA3EFDF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{28C7B9D6-BE1F-45E5-952C-0D5C9CA3EFDF}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{28C7B9D6-BE1F-45E5-952C-0D5C9CA3EFDF}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{28C7B9D6-BE1F-45E5-952C-0D5C9CA3EFDF}.Debug|Win32.ActiveCfg = Debug|Any CPU
{28C7B9D6-BE1F-45E5-952C-0D5C9CA3EFDF}.Debug|Win32.Build.0 = Debug|Any CPU
{28C7B9D6-BE1F-45E5-952C-0D5C9CA3EFDF}.Debug|x64.ActiveCfg = Debug|Any CPU
{28C7B9D6-BE1F-45E5-952C-0D5C9CA3EFDF}.Debug|x64.Build.0 = Debug|Any CPU
{28C7B9D6-BE1F-45E5-952C-0D5C9CA3EFDF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{28C7B9D6-BE1F-45E5-952C-0D5C9CA3EFDF}.Release|Any CPU.Build.0 = Release|Any CPU
{28C7B9D6-BE1F-45E5-952C-0D5C9CA3EFDF}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{28C7B9D6-BE1F-45E5-952C-0D5C9CA3EFDF}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{28C7B9D6-BE1F-45E5-952C-0D5C9CA3EFDF}.Release|Win32.ActiveCfg = Release|Any CPU
{28C7B9D6-BE1F-45E5-952C-0D5C9CA3EFDF}.Release|Win32.Build.0 = Release|Any CPU
{28C7B9D6-BE1F-45E5-952C-0D5C9CA3EFDF}.Release|x64.ActiveCfg = Release|Any CPU
{28C7B9D6-BE1F-45E5-952C-0D5C9CA3EFDF}.Release|x64.Build.0 = Release|Any CPU
{42BC31BF-0A03-43EC-925B-1419DD7F2C7C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{42BC31BF-0A03-43EC-925B-1419DD7F2C7C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{42BC31BF-0A03-43EC-925B-1419DD7F2C7C}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{42BC31BF-0A03-43EC-925B-1419DD7F2C7C}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{42BC31BF-0A03-43EC-925B-1419DD7F2C7C}.Debug|Win32.ActiveCfg = Debug|Any CPU
{42BC31BF-0A03-43EC-925B-1419DD7F2C7C}.Debug|Win32.Build.0 = Debug|Any CPU
{42BC31BF-0A03-43EC-925B-1419DD7F2C7C}.Debug|x64.ActiveCfg = Debug|Any CPU
{42BC31BF-0A03-43EC-925B-1419DD7F2C7C}.Debug|x64.Build.0 = Debug|Any CPU
{42BC31BF-0A03-43EC-925B-1419DD7F2C7C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{42BC31BF-0A03-43EC-925B-1419DD7F2C7C}.Release|Any CPU.Build.0 = Release|Any CPU
{42BC31BF-0A03-43EC-925B-1419DD7F2C7C}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{42BC31BF-0A03-43EC-925B-1419DD7F2C7C}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{42BC31BF-0A03-43EC-925B-1419DD7F2C7C}.Release|Win32.ActiveCfg = Release|Any CPU
{42BC31BF-0A03-43EC-925B-1419DD7F2C7C}.Release|Win32.Build.0 = Release|Any CPU
{42BC31BF-0A03-43EC-925B-1419DD7F2C7C}.Release|x64.ActiveCfg = Release|Any CPU
{42BC31BF-0A03-43EC-925B-1419DD7F2C7C}.Release|x64.Build.0 = Release|Any CPU
{2E368281-3BA8-4050-B05E-0E0E43F8F446}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2E368281-3BA8-4050-B05E-0E0E43F8F446}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2E368281-3BA8-4050-B05E-0E0E43F8F446}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{2E368281-3BA8-4050-B05E-0E0E43F8F446}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{2E368281-3BA8-4050-B05E-0E0E43F8F446}.Debug|Win32.ActiveCfg = Debug|Any CPU
{2E368281-3BA8-4050-B05E-0E0E43F8F446}.Debug|Win32.Build.0 = Debug|Any CPU
{2E368281-3BA8-4050-B05E-0E0E43F8F446}.Debug|x64.ActiveCfg = Debug|Any CPU
{2E368281-3BA8-4050-B05E-0E0E43F8F446}.Debug|x64.Build.0 = Debug|Any CPU
{2E368281-3BA8-4050-B05E-0E0E43F8F446}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2E368281-3BA8-4050-B05E-0E0E43F8F446}.Release|Any CPU.Build.0 = Release|Any CPU
{2E368281-3BA8-4050-B05E-0E0E43F8F446}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{2E368281-3BA8-4050-B05E-0E0E43F8F446}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{2E368281-3BA8-4050-B05E-0E0E43F8F446}.Release|Win32.ActiveCfg = Release|Any CPU
{2E368281-3BA8-4050-B05E-0E0E43F8F446}.Release|Win32.Build.0 = Release|Any CPU
{2E368281-3BA8-4050-B05E-0E0E43F8F446}.Release|x64.ActiveCfg = Release|Any CPU
{2E368281-3BA8-4050-B05E-0E0E43F8F446}.Release|x64.Build.0 = Release|Any CPU
{3FA7B726-8AF9-4554-B41A-0BD915E4EAB5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3FA7B726-8AF9-4554-B41A-0BD915E4EAB5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3FA7B726-8AF9-4554-B41A-0BD915E4EAB5}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{3FA7B726-8AF9-4554-B41A-0BD915E4EAB5}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{3FA7B726-8AF9-4554-B41A-0BD915E4EAB5}.Debug|Win32.ActiveCfg = Debug|Any CPU
{3FA7B726-8AF9-4554-B41A-0BD915E4EAB5}.Debug|Win32.Build.0 = Debug|Any CPU
{3FA7B726-8AF9-4554-B41A-0BD915E4EAB5}.Debug|x64.ActiveCfg = Debug|Any CPU
{3FA7B726-8AF9-4554-B41A-0BD915E4EAB5}.Debug|x64.Build.0 = Debug|Any CPU
{3FA7B726-8AF9-4554-B41A-0BD915E4EAB5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3FA7B726-8AF9-4554-B41A-0BD915E4EAB5}.Release|Any CPU.Build.0 = Release|Any CPU
{3FA7B726-8AF9-4554-B41A-0BD915E4EAB5}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{3FA7B726-8AF9-4554-B41A-0BD915E4EAB5}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{3FA7B726-8AF9-4554-B41A-0BD915E4EAB5}.Release|Win32.ActiveCfg = Release|Any CPU
{3FA7B726-8AF9-4554-B41A-0BD915E4EAB5}.Release|Win32.Build.0 = Release|Any CPU
{3FA7B726-8AF9-4554-B41A-0BD915E4EAB5}.Release|x64.ActiveCfg = Release|Any CPU
{3FA7B726-8AF9-4554-B41A-0BD915E4EAB5}.Release|x64.Build.0 = Release|Any CPU
{6A281C98-B74D-403B-8536-966871B992E3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6A281C98-B74D-403B-8536-966871B992E3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6A281C98-B74D-403B-8536-966871B992E3}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{6A281C98-B74D-403B-8536-966871B992E3}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{6A281C98-B74D-403B-8536-966871B992E3}.Debug|Win32.ActiveCfg = Debug|Any CPU
{6A281C98-B74D-403B-8536-966871B992E3}.Debug|x64.ActiveCfg = Debug|Any CPU
{6A281C98-B74D-403B-8536-966871B992E3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6A281C98-B74D-403B-8536-966871B992E3}.Release|Any CPU.Build.0 = Release|Any CPU
{6A281C98-B74D-403B-8536-966871B992E3}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{6A281C98-B74D-403B-8536-966871B992E3}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{6A281C98-B74D-403B-8536-966871B992E3}.Release|Win32.ActiveCfg = Release|Any CPU
{6A281C98-B74D-403B-8536-966871B992E3}.Release|x64.ActiveCfg = Release|Any CPU
{1D38AEC8-F5C0-4B1C-A0AE-18F4015A2E78}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1D38AEC8-F5C0-4B1C-A0AE-18F4015A2E78}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1D38AEC8-F5C0-4B1C-A0AE-18F4015A2E78}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{1D38AEC8-F5C0-4B1C-A0AE-18F4015A2E78}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{1D38AEC8-F5C0-4B1C-A0AE-18F4015A2E78}.Debug|Win32.ActiveCfg = Debug|Any CPU
{1D38AEC8-F5C0-4B1C-A0AE-18F4015A2E78}.Debug|x64.ActiveCfg = Debug|Any CPU
{1D38AEC8-F5C0-4B1C-A0AE-18F4015A2E78}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1D38AEC8-F5C0-4B1C-A0AE-18F4015A2E78}.Release|Any CPU.Build.0 = Release|Any CPU
{1D38AEC8-F5C0-4B1C-A0AE-18F4015A2E78}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{1D38AEC8-F5C0-4B1C-A0AE-18F4015A2E78}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{1D38AEC8-F5C0-4B1C-A0AE-18F4015A2E78}.Release|Win32.ActiveCfg = Release|Any CPU
{1D38AEC8-F5C0-4B1C-A0AE-18F4015A2E78}.Release|x64.ActiveCfg = Release|Any CPU
{A35E6AD6-6D46-41E1-8DB1-A41086793893}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A35E6AD6-6D46-41E1-8DB1-A41086793893}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A35E6AD6-6D46-41E1-8DB1-A41086793893}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{A35E6AD6-6D46-41E1-8DB1-A41086793893}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{A35E6AD6-6D46-41E1-8DB1-A41086793893}.Debug|Win32.ActiveCfg = Debug|Any CPU
{A35E6AD6-6D46-41E1-8DB1-A41086793893}.Debug|x64.ActiveCfg = Debug|Any CPU
{A35E6AD6-6D46-41E1-8DB1-A41086793893}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A35E6AD6-6D46-41E1-8DB1-A41086793893}.Release|Any CPU.Build.0 = Release|Any CPU
{A35E6AD6-6D46-41E1-8DB1-A41086793893}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{A35E6AD6-6D46-41E1-8DB1-A41086793893}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{A35E6AD6-6D46-41E1-8DB1-A41086793893}.Release|Win32.ActiveCfg = Release|Any CPU
{A35E6AD6-6D46-41E1-8DB1-A41086793893}.Release|x64.ActiveCfg = Release|Any CPU
{08D0F53A-CD37-4060-B5A2-BCC202F0DE46}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{08D0F53A-CD37-4060-B5A2-BCC202F0DE46}.Debug|Any CPU.Build.0 = Debug|Any CPU
{08D0F53A-CD37-4060-B5A2-BCC202F0DE46}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{08D0F53A-CD37-4060-B5A2-BCC202F0DE46}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{08D0F53A-CD37-4060-B5A2-BCC202F0DE46}.Debug|Win32.ActiveCfg = Debug|Any CPU
{08D0F53A-CD37-4060-B5A2-BCC202F0DE46}.Debug|x64.ActiveCfg = Debug|Any CPU
{08D0F53A-CD37-4060-B5A2-BCC202F0DE46}.Release|Any CPU.ActiveCfg = Release|Any CPU
{08D0F53A-CD37-4060-B5A2-BCC202F0DE46}.Release|Any CPU.Build.0 = Release|Any CPU
{08D0F53A-CD37-4060-B5A2-BCC202F0DE46}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{08D0F53A-CD37-4060-B5A2-BCC202F0DE46}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{08D0F53A-CD37-4060-B5A2-BCC202F0DE46}.Release|Win32.ActiveCfg = Release|Any CPU
{08D0F53A-CD37-4060-B5A2-BCC202F0DE46}.Release|x64.ActiveCfg = Release|Any CPU
{DBD0C8B0-BE4E-4CBF-AAD4-44BEA2EA830B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DBD0C8B0-BE4E-4CBF-AAD4-44BEA2EA830B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DBD0C8B0-BE4E-4CBF-AAD4-44BEA2EA830B}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{DBD0C8B0-BE4E-4CBF-AAD4-44BEA2EA830B}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{DBD0C8B0-BE4E-4CBF-AAD4-44BEA2EA830B}.Debug|Win32.ActiveCfg = Debug|Any CPU
{DBD0C8B0-BE4E-4CBF-AAD4-44BEA2EA830B}.Debug|Win32.Build.0 = Debug|Any CPU
{DBD0C8B0-BE4E-4CBF-AAD4-44BEA2EA830B}.Debug|x64.ActiveCfg = Debug|Any CPU
{DBD0C8B0-BE4E-4CBF-AAD4-44BEA2EA830B}.Debug|x64.Build.0 = Debug|Any CPU
{DBD0C8B0-BE4E-4CBF-AAD4-44BEA2EA830B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DBD0C8B0-BE4E-4CBF-AAD4-44BEA2EA830B}.Release|Any CPU.Build.0 = Release|Any CPU
{DBD0C8B0-BE4E-4CBF-AAD4-44BEA2EA830B}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{DBD0C8B0-BE4E-4CBF-AAD4-44BEA2EA830B}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{DBD0C8B0-BE4E-4CBF-AAD4-44BEA2EA830B}.Release|Win32.ActiveCfg = Release|Any CPU
{DBD0C8B0-BE4E-4CBF-AAD4-44BEA2EA830B}.Release|Win32.Build.0 = Release|Any CPU
{DBD0C8B0-BE4E-4CBF-AAD4-44BEA2EA830B}.Release|x64.ActiveCfg = Release|Any CPU
{DBD0C8B0-BE4E-4CBF-AAD4-44BEA2EA830B}.Release|x64.Build.0 = Release|Any CPU
{F0BA2671-5160-4164-B1FC-2883728C42D9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F0BA2671-5160-4164-B1FC-2883728C42D9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F0BA2671-5160-4164-B1FC-2883728C42D9}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{F0BA2671-5160-4164-B1FC-2883728C42D9}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{F0BA2671-5160-4164-B1FC-2883728C42D9}.Debug|Win32.ActiveCfg = Debug|Any CPU
{F0BA2671-5160-4164-B1FC-2883728C42D9}.Debug|Win32.Build.0 = Debug|Any CPU
{F0BA2671-5160-4164-B1FC-2883728C42D9}.Debug|x64.ActiveCfg = Debug|Any CPU
{F0BA2671-5160-4164-B1FC-2883728C42D9}.Debug|x64.Build.0 = Debug|Any CPU
{F0BA2671-5160-4164-B1FC-2883728C42D9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F0BA2671-5160-4164-B1FC-2883728C42D9}.Release|Any CPU.Build.0 = Release|Any CPU
{F0BA2671-5160-4164-B1FC-2883728C42D9}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{F0BA2671-5160-4164-B1FC-2883728C42D9}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{F0BA2671-5160-4164-B1FC-2883728C42D9}.Release|Win32.ActiveCfg = Release|Any CPU
{F0BA2671-5160-4164-B1FC-2883728C42D9}.Release|Win32.Build.0 = Release|Any CPU
{F0BA2671-5160-4164-B1FC-2883728C42D9}.Release|x64.ActiveCfg = Release|Any CPU
{F0BA2671-5160-4164-B1FC-2883728C42D9}.Release|x64.Build.0 = Release|Any CPU
{DDCE1AE3-AA0D-4E2D-AD1B-8CA322AFA7DD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DDCE1AE3-AA0D-4E2D-AD1B-8CA322AFA7DD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DDCE1AE3-AA0D-4E2D-AD1B-8CA322AFA7DD}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{DDCE1AE3-AA0D-4E2D-AD1B-8CA322AFA7DD}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{DDCE1AE3-AA0D-4E2D-AD1B-8CA322AFA7DD}.Debug|Win32.ActiveCfg = Debug|Any CPU
{DDCE1AE3-AA0D-4E2D-AD1B-8CA322AFA7DD}.Debug|Win32.Build.0 = Debug|Any CPU
{DDCE1AE3-AA0D-4E2D-AD1B-8CA322AFA7DD}.Debug|x64.ActiveCfg = Debug|Any CPU
{DDCE1AE3-AA0D-4E2D-AD1B-8CA322AFA7DD}.Debug|x64.Build.0 = Debug|Any CPU
{DDCE1AE3-AA0D-4E2D-AD1B-8CA322AFA7DD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DDCE1AE3-AA0D-4E2D-AD1B-8CA322AFA7DD}.Release|Any CPU.Build.0 = Release|Any CPU
{DDCE1AE3-AA0D-4E2D-AD1B-8CA322AFA7DD}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{DDCE1AE3-AA0D-4E2D-AD1B-8CA322AFA7DD}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{DDCE1AE3-AA0D-4E2D-AD1B-8CA322AFA7DD}.Release|Win32.ActiveCfg = Release|Any CPU
{DDCE1AE3-AA0D-4E2D-AD1B-8CA322AFA7DD}.Release|Win32.Build.0 = Release|Any CPU
{DDCE1AE3-AA0D-4E2D-AD1B-8CA322AFA7DD}.Release|x64.ActiveCfg = Release|Any CPU
{DDCE1AE3-AA0D-4E2D-AD1B-8CA322AFA7DD}.Release|x64.Build.0 = Release|Any CPU
{C861E6BA-852B-4BC1-ACE7-77C8D6E7898B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C861E6BA-852B-4BC1-ACE7-77C8D6E7898B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C861E6BA-852B-4BC1-ACE7-77C8D6E7898B}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{C861E6BA-852B-4BC1-ACE7-77C8D6E7898B}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{C861E6BA-852B-4BC1-ACE7-77C8D6E7898B}.Debug|Win32.ActiveCfg = Debug|Any CPU
{C861E6BA-852B-4BC1-ACE7-77C8D6E7898B}.Debug|Win32.Build.0 = Debug|Any CPU
{C861E6BA-852B-4BC1-ACE7-77C8D6E7898B}.Debug|x64.ActiveCfg = Debug|Any CPU
{C861E6BA-852B-4BC1-ACE7-77C8D6E7898B}.Debug|x64.Build.0 = Debug|Any CPU
{C861E6BA-852B-4BC1-ACE7-77C8D6E7898B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C861E6BA-852B-4BC1-ACE7-77C8D6E7898B}.Release|Any CPU.Build.0 = Release|Any CPU
{C861E6BA-852B-4BC1-ACE7-77C8D6E7898B}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{C861E6BA-852B-4BC1-ACE7-77C8D6E7898B}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{C861E6BA-852B-4BC1-ACE7-77C8D6E7898B}.Release|Win32.ActiveCfg = Release|Any CPU
{C861E6BA-852B-4BC1-ACE7-77C8D6E7898B}.Release|Win32.Build.0 = Release|Any CPU
{C861E6BA-852B-4BC1-ACE7-77C8D6E7898B}.Release|x64.ActiveCfg = Release|Any CPU
{C861E6BA-852B-4BC1-ACE7-77C8D6E7898B}.Release|x64.Build.0 = Release|Any CPU
{D209C368-1277-4EA6-A887-AA6EBA51AB99}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D209C368-1277-4EA6-A887-AA6EBA51AB99}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D209C368-1277-4EA6-A887-AA6EBA51AB99}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{D209C368-1277-4EA6-A887-AA6EBA51AB99}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{D209C368-1277-4EA6-A887-AA6EBA51AB99}.Debug|Win32.ActiveCfg = Debug|Any CPU
{D209C368-1277-4EA6-A887-AA6EBA51AB99}.Debug|x64.ActiveCfg = Debug|Any CPU
{D209C368-1277-4EA6-A887-AA6EBA51AB99}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D209C368-1277-4EA6-A887-AA6EBA51AB99}.Release|Any CPU.Build.0 = Release|Any CPU
{D209C368-1277-4EA6-A887-AA6EBA51AB99}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{D209C368-1277-4EA6-A887-AA6EBA51AB99}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{D209C368-1277-4EA6-A887-AA6EBA51AB99}.Release|Win32.ActiveCfg = Release|Any CPU
{D209C368-1277-4EA6-A887-AA6EBA51AB99}.Release|x64.ActiveCfg = Release|Any CPU
{705FBD41-77A9-4FE7-A6C1-85026F2DDA09}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{705FBD41-77A9-4FE7-A6C1-85026F2DDA09}.Debug|Any CPU.Build.0 = Debug|Any CPU
{705FBD41-77A9-4FE7-A6C1-85026F2DDA09}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{705FBD41-77A9-4FE7-A6C1-85026F2DDA09}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{705FBD41-77A9-4FE7-A6C1-85026F2DDA09}.Debug|Win32.ActiveCfg = Debug|Any CPU
{705FBD41-77A9-4FE7-A6C1-85026F2DDA09}.Debug|x64.ActiveCfg = Debug|Any CPU
{705FBD41-77A9-4FE7-A6C1-85026F2DDA09}.Release|Any CPU.ActiveCfg = Release|Any CPU
{705FBD41-77A9-4FE7-A6C1-85026F2DDA09}.Release|Any CPU.Build.0 = Release|Any CPU
{705FBD41-77A9-4FE7-A6C1-85026F2DDA09}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{705FBD41-77A9-4FE7-A6C1-85026F2DDA09}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{705FBD41-77A9-4FE7-A6C1-85026F2DDA09}.Release|Win32.ActiveCfg = Release|Any CPU
{705FBD41-77A9-4FE7-A6C1-85026F2DDA09}.Release|x64.ActiveCfg = Release|Any CPU
{E7541163-D7BB-4E9A-A722-D7737B7A2995}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E7541163-D7BB-4E9A-A722-D7737B7A2995}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E7541163-D7BB-4E9A-A722-D7737B7A2995}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{E7541163-D7BB-4E9A-A722-D7737B7A2995}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{E7541163-D7BB-4E9A-A722-D7737B7A2995}.Debug|Win32.ActiveCfg = Debug|Any CPU
{E7541163-D7BB-4E9A-A722-D7737B7A2995}.Debug|x64.ActiveCfg = Debug|Any CPU
{E7541163-D7BB-4E9A-A722-D7737B7A2995}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E7541163-D7BB-4E9A-A722-D7737B7A2995}.Release|Any CPU.Build.0 = Release|Any CPU
{E7541163-D7BB-4E9A-A722-D7737B7A2995}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{E7541163-D7BB-4E9A-A722-D7737B7A2995}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{E7541163-D7BB-4E9A-A722-D7737B7A2995}.Release|Win32.ActiveCfg = Release|Any CPU
{E7541163-D7BB-4E9A-A722-D7737B7A2995}.Release|x64.ActiveCfg = Release|Any CPU
{5B8B0EAB-3E74-48BB-8231-26E73B2019DC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5B8B0EAB-3E74-48BB-8231-26E73B2019DC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5B8B0EAB-3E74-48BB-8231-26E73B2019DC}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{5B8B0EAB-3E74-48BB-8231-26E73B2019DC}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{5B8B0EAB-3E74-48BB-8231-26E73B2019DC}.Debug|Win32.ActiveCfg = Debug|Any CPU
{5B8B0EAB-3E74-48BB-8231-26E73B2019DC}.Debug|x64.ActiveCfg = Debug|Any CPU
{5B8B0EAB-3E74-48BB-8231-26E73B2019DC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5B8B0EAB-3E74-48BB-8231-26E73B2019DC}.Release|Any CPU.Build.0 = Release|Any CPU
{5B8B0EAB-3E74-48BB-8231-26E73B2019DC}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{5B8B0EAB-3E74-48BB-8231-26E73B2019DC}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{5B8B0EAB-3E74-48BB-8231-26E73B2019DC}.Release|Win32.ActiveCfg = Release|Any CPU
{5B8B0EAB-3E74-48BB-8231-26E73B2019DC}.Release|x64.ActiveCfg = Release|Any CPU
{46EC0BC1-8F51-4B4D-B967-2EE452EA68FC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{46EC0BC1-8F51-4B4D-B967-2EE452EA68FC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{46EC0BC1-8F51-4B4D-B967-2EE452EA68FC}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{46EC0BC1-8F51-4B4D-B967-2EE452EA68FC}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{46EC0BC1-8F51-4B4D-B967-2EE452EA68FC}.Debug|Win32.ActiveCfg = Debug|Any CPU
{46EC0BC1-8F51-4B4D-B967-2EE452EA68FC}.Debug|Win32.Build.0 = Debug|Any CPU
{46EC0BC1-8F51-4B4D-B967-2EE452EA68FC}.Debug|x64.ActiveCfg = Debug|Any CPU
{46EC0BC1-8F51-4B4D-B967-2EE452EA68FC}.Debug|x64.Build.0 = Debug|Any CPU
{46EC0BC1-8F51-4B4D-B967-2EE452EA68FC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{46EC0BC1-8F51-4B4D-B967-2EE452EA68FC}.Release|Any CPU.Build.0 = Release|Any CPU
{46EC0BC1-8F51-4B4D-B967-2EE452EA68FC}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{46EC0BC1-8F51-4B4D-B967-2EE452EA68FC}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{46EC0BC1-8F51-4B4D-B967-2EE452EA68FC}.Release|Win32.ActiveCfg = Release|Any CPU
{46EC0BC1-8F51-4B4D-B967-2EE452EA68FC}.Release|Win32.Build.0 = Release|Any CPU
{46EC0BC1-8F51-4B4D-B967-2EE452EA68FC}.Release|x64.ActiveCfg = Release|Any CPU
{46EC0BC1-8F51-4B4D-B967-2EE452EA68FC}.Release|x64.Build.0 = Release|Any CPU
{8472DB53-5950-4A70-864C-567A55A6C4A1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8472DB53-5950-4A70-864C-567A55A6C4A1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8472DB53-5950-4A70-864C-567A55A6C4A1}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{8472DB53-5950-4A70-864C-567A55A6C4A1}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{8472DB53-5950-4A70-864C-567A55A6C4A1}.Debug|Win32.ActiveCfg = Debug|Any CPU
{8472DB53-5950-4A70-864C-567A55A6C4A1}.Debug|Win32.Build.0 = Debug|Any CPU
{8472DB53-5950-4A70-864C-567A55A6C4A1}.Debug|x64.ActiveCfg = Debug|Any CPU
{8472DB53-5950-4A70-864C-567A55A6C4A1}.Debug|x64.Build.0 = Debug|Any CPU
{8472DB53-5950-4A70-864C-567A55A6C4A1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8472DB53-5950-4A70-864C-567A55A6C4A1}.Release|Any CPU.Build.0 = Release|Any CPU
{8472DB53-5950-4A70-864C-567A55A6C4A1}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{8472DB53-5950-4A70-864C-567A55A6C4A1}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{8472DB53-5950-4A70-864C-567A55A6C4A1}.Release|Win32.ActiveCfg = Release|Any CPU
{8472DB53-5950-4A70-864C-567A55A6C4A1}.Release|Win32.Build.0 = Release|Any CPU
{8472DB53-5950-4A70-864C-567A55A6C4A1}.Release|x64.ActiveCfg = Release|Any CPU
{8472DB53-5950-4A70-864C-567A55A6C4A1}.Release|x64.Build.0 = Release|Any CPU
{C3264FF3-E2D7-48D7-93A7-CDC9A827AD9D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C3264FF3-E2D7-48D7-93A7-CDC9A827AD9D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C3264FF3-E2D7-48D7-93A7-CDC9A827AD9D}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{C3264FF3-E2D7-48D7-93A7-CDC9A827AD9D}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{C3264FF3-E2D7-48D7-93A7-CDC9A827AD9D}.Debug|Win32.ActiveCfg = Debug|Any CPU
{C3264FF3-E2D7-48D7-93A7-CDC9A827AD9D}.Debug|Win32.Build.0 = Debug|Any CPU
{C3264FF3-E2D7-48D7-93A7-CDC9A827AD9D}.Debug|x64.ActiveCfg = Debug|Any CPU
{C3264FF3-E2D7-48D7-93A7-CDC9A827AD9D}.Debug|x64.Build.0 = Debug|Any CPU
{C3264FF3-E2D7-48D7-93A7-CDC9A827AD9D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C3264FF3-E2D7-48D7-93A7-CDC9A827AD9D}.Release|Any CPU.Build.0 = Release|Any CPU
{C3264FF3-E2D7-48D7-93A7-CDC9A827AD9D}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{C3264FF3-E2D7-48D7-93A7-CDC9A827AD9D}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{C3264FF3-E2D7-48D7-93A7-CDC9A827AD9D}.Release|Win32.ActiveCfg = Release|Any CPU
{C3264FF3-E2D7-48D7-93A7-CDC9A827AD9D}.Release|Win32.Build.0 = Release|Any CPU
{C3264FF3-E2D7-48D7-93A7-CDC9A827AD9D}.Release|x64.ActiveCfg = Release|Any CPU
{C3264FF3-E2D7-48D7-93A7-CDC9A827AD9D}.Release|x64.Build.0 = Release|Any CPU
{B00DC1F7-764B-4B65-9953-FA557E2EC493}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B00DC1F7-764B-4B65-9953-FA557E2EC493}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B00DC1F7-764B-4B65-9953-FA557E2EC493}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{B00DC1F7-764B-4B65-9953-FA557E2EC493}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{B00DC1F7-764B-4B65-9953-FA557E2EC493}.Debug|Win32.ActiveCfg = Debug|Any CPU
{B00DC1F7-764B-4B65-9953-FA557E2EC493}.Debug|Win32.Build.0 = Debug|Any CPU
{B00DC1F7-764B-4B65-9953-FA557E2EC493}.Debug|x64.ActiveCfg = Debug|Any CPU
{B00DC1F7-764B-4B65-9953-FA557E2EC493}.Debug|x64.Build.0 = Debug|Any CPU
{B00DC1F7-764B-4B65-9953-FA557E2EC493}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B00DC1F7-764B-4B65-9953-FA557E2EC493}.Release|Any CPU.Build.0 = Release|Any CPU
{B00DC1F7-764B-4B65-9953-FA557E2EC493}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{B00DC1F7-764B-4B65-9953-FA557E2EC493}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{B00DC1F7-764B-4B65-9953-FA557E2EC493}.Release|Win32.ActiveCfg = Release|Any CPU
{B00DC1F7-764B-4B65-9953-FA557E2EC493}.Release|Win32.Build.0 = Release|Any CPU
{B00DC1F7-764B-4B65-9953-FA557E2EC493}.Release|x64.ActiveCfg = Release|Any CPU
{B00DC1F7-764B-4B65-9953-FA557E2EC493}.Release|x64.Build.0 = Release|Any CPU
{D6FBBB3A-F6B8-45BB-B657-A7226AB96624}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D6FBBB3A-F6B8-45BB-B657-A7226AB96624}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D6FBBB3A-F6B8-45BB-B657-A7226AB96624}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{D6FBBB3A-F6B8-45BB-B657-A7226AB96624}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{D6FBBB3A-F6B8-45BB-B657-A7226AB96624}.Debug|Win32.ActiveCfg = Debug|Any CPU
{D6FBBB3A-F6B8-45BB-B657-A7226AB96624}.Debug|Win32.Build.0 = Debug|Any CPU
{D6FBBB3A-F6B8-45BB-B657-A7226AB96624}.Debug|x64.ActiveCfg = Debug|Any CPU
{D6FBBB3A-F6B8-45BB-B657-A7226AB96624}.Debug|x64.Build.0 = Debug|Any CPU
{D6FBBB3A-F6B8-45BB-B657-A7226AB96624}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D6FBBB3A-F6B8-45BB-B657-A7226AB96624}.Release|Any CPU.Build.0 = Release|Any CPU
{D6FBBB3A-F6B8-45BB-B657-A7226AB96624}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{D6FBBB3A-F6B8-45BB-B657-A7226AB96624}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{D6FBBB3A-F6B8-45BB-B657-A7226AB96624}.Release|Win32.ActiveCfg = Release|Any CPU
{D6FBBB3A-F6B8-45BB-B657-A7226AB96624}.Release|Win32.Build.0 = Release|Any CPU
{D6FBBB3A-F6B8-45BB-B657-A7226AB96624}.Release|x64.ActiveCfg = Release|Any CPU
{D6FBBB3A-F6B8-45BB-B657-A7226AB96624}.Release|x64.Build.0 = Release|Any CPU
{9ED200E4-2026-4955-87E0-D8CEA7BD9E7F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9ED200E4-2026-4955-87E0-D8CEA7BD9E7F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9ED200E4-2026-4955-87E0-D8CEA7BD9E7F}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{9ED200E4-2026-4955-87E0-D8CEA7BD9E7F}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{9ED200E4-2026-4955-87E0-D8CEA7BD9E7F}.Debug|Win32.ActiveCfg = Debug|Any CPU
{9ED200E4-2026-4955-87E0-D8CEA7BD9E7F}.Debug|Win32.Build.0 = Debug|Any CPU
{9ED200E4-2026-4955-87E0-D8CEA7BD9E7F}.Debug|x64.ActiveCfg = Debug|Any CPU
{9ED200E4-2026-4955-87E0-D8CEA7BD9E7F}.Debug|x64.Build.0 = Debug|Any CPU
{9ED200E4-2026-4955-87E0-D8CEA7BD9E7F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9ED200E4-2026-4955-87E0-D8CEA7BD9E7F}.Release|Any CPU.Build.0 = Release|Any CPU
{9ED200E4-2026-4955-87E0-D8CEA7BD9E7F}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{9ED200E4-2026-4955-87E0-D8CEA7BD9E7F}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{9ED200E4-2026-4955-87E0-D8CEA7BD9E7F}.Release|Win32.ActiveCfg = Release|Any CPU
{9ED200E4-2026-4955-87E0-D8CEA7BD9E7F}.Release|Win32.Build.0 = Release|Any CPU
{9ED200E4-2026-4955-87E0-D8CEA7BD9E7F}.Release|x64.ActiveCfg = Release|Any CPU
{9ED200E4-2026-4955-87E0-D8CEA7BD9E7F}.Release|x64.Build.0 = Release|Any CPU
{3AFA44B9-9DF0-494E-B633-6E6B9F2BB808}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3AFA44B9-9DF0-494E-B633-6E6B9F2BB808}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3AFA44B9-9DF0-494E-B633-6E6B9F2BB808}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{3AFA44B9-9DF0-494E-B633-6E6B9F2BB808}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{3AFA44B9-9DF0-494E-B633-6E6B9F2BB808}.Debug|Win32.ActiveCfg = Debug|Any CPU
{3AFA44B9-9DF0-494E-B633-6E6B9F2BB808}.Debug|Win32.Build.0 = Debug|Any CPU
{3AFA44B9-9DF0-494E-B633-6E6B9F2BB808}.Debug|x64.ActiveCfg = Debug|Any CPU
{3AFA44B9-9DF0-494E-B633-6E6B9F2BB808}.Debug|x64.Build.0 = Debug|Any CPU
{3AFA44B9-9DF0-494E-B633-6E6B9F2BB808}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3AFA44B9-9DF0-494E-B633-6E6B9F2BB808}.Release|Any CPU.Build.0 = Release|Any CPU
{3AFA44B9-9DF0-494E-B633-6E6B9F2BB808}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{3AFA44B9-9DF0-494E-B633-6E6B9F2BB808}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{3AFA44B9-9DF0-494E-B633-6E6B9F2BB808}.Release|Win32.ActiveCfg = Release|Any CPU
{3AFA44B9-9DF0-494E-B633-6E6B9F2BB808}.Release|Win32.Build.0 = Release|Any CPU
{3AFA44B9-9DF0-494E-B633-6E6B9F2BB808}.Release|x64.ActiveCfg = Release|Any CPU
{3AFA44B9-9DF0-494E-B633-6E6B9F2BB808}.Release|x64.Build.0 = Release|Any CPU
{D339BFC2-AF3F-46FA-899A-14BAD4BCA35B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D339BFC2-AF3F-46FA-899A-14BAD4BCA35B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D339BFC2-AF3F-46FA-899A-14BAD4BCA35B}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{D339BFC2-AF3F-46FA-899A-14BAD4BCA35B}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{D339BFC2-AF3F-46FA-899A-14BAD4BCA35B}.Debug|Win32.ActiveCfg = Debug|Any CPU
{D339BFC2-AF3F-46FA-899A-14BAD4BCA35B}.Debug|Win32.Build.0 = Debug|Any CPU
{D339BFC2-AF3F-46FA-899A-14BAD4BCA35B}.Debug|x64.ActiveCfg = Debug|Any CPU
{D339BFC2-AF3F-46FA-899A-14BAD4BCA35B}.Debug|x64.Build.0 = Debug|Any CPU
{D339BFC2-AF3F-46FA-899A-14BAD4BCA35B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D339BFC2-AF3F-46FA-899A-14BAD4BCA35B}.Release|Any CPU.Build.0 = Release|Any CPU
{D339BFC2-AF3F-46FA-899A-14BAD4BCA35B}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{D339BFC2-AF3F-46FA-899A-14BAD4BCA35B}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{D339BFC2-AF3F-46FA-899A-14BAD4BCA35B}.Release|Win32.ActiveCfg = Release|Any CPU
{D339BFC2-AF3F-46FA-899A-14BAD4BCA35B}.Release|Win32.Build.0 = Release|Any CPU
{D339BFC2-AF3F-46FA-899A-14BAD4BCA35B}.Release|x64.ActiveCfg = Release|Any CPU
{D339BFC2-AF3F-46FA-899A-14BAD4BCA35B}.Release|x64.Build.0 = Release|Any CPU
{6872DB53-3250-4A70-2A4C-567A55A6C4B3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6872DB53-3250-4A70-2A4C-567A55A6C4B3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6872DB53-3250-4A70-2A4C-567A55A6C4B3}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{6872DB53-3250-4A70-2A4C-567A55A6C4B3}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{6872DB53-3250-4A70-2A4C-567A55A6C4B3}.Debug|Win32.ActiveCfg = Debug|Any CPU
{6872DB53-3250-4A70-2A4C-567A55A6C4B3}.Debug|Win32.Build.0 = Debug|Any CPU
{6872DB53-3250-4A70-2A4C-567A55A6C4B3}.Debug|x64.ActiveCfg = Debug|Any CPU
{6872DB53-3250-4A70-2A4C-567A55A6C4B3}.Debug|x64.Build.0 = Debug|Any CPU
{6872DB53-3250-4A70-2A4C-567A55A6C4B3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6872DB53-3250-4A70-2A4C-567A55A6C4B3}.Release|Any CPU.Build.0 = Release|Any CPU
{6872DB53-3250-4A70-2A4C-567A55A6C4B3}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{6872DB53-3250-4A70-2A4C-567A55A6C4B3}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{6872DB53-3250-4A70-2A4C-567A55A6C4B3}.Release|Win32.ActiveCfg = Release|Any CPU
{6872DB53-3250-4A70-2A4C-567A55A6C4B3}.Release|Win32.Build.0 = Release|Any CPU
{6872DB53-3250-4A70-2A4C-567A55A6C4B3}.Release|x64.ActiveCfg = Release|Any CPU
{6872DB53-3250-4A70-2A4C-567A55A6C4B3}.Release|x64.Build.0 = Release|Any CPU
{8C53C716-3E54-4DFE-8CD9-F4099042FCFA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8C53C716-3E54-4DFE-8CD9-F4099042FCFA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8C53C716-3E54-4DFE-8CD9-F4099042FCFA}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{8C53C716-3E54-4DFE-8CD9-F4099042FCFA}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{8C53C716-3E54-4DFE-8CD9-F4099042FCFA}.Debug|Win32.ActiveCfg = Debug|Any CPU
{8C53C716-3E54-4DFE-8CD9-F4099042FCFA}.Debug|Win32.Build.0 = Debug|Any CPU
{8C53C716-3E54-4DFE-8CD9-F4099042FCFA}.Debug|x64.ActiveCfg = Debug|Any CPU
{8C53C716-3E54-4DFE-8CD9-F4099042FCFA}.Debug|x64.Build.0 = Debug|Any CPU
{8C53C716-3E54-4DFE-8CD9-F4099042FCFA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8C53C716-3E54-4DFE-8CD9-F4099042FCFA}.Release|Any CPU.Build.0 = Release|Any CPU
{8C53C716-3E54-4DFE-8CD9-F4099042FCFA}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{8C53C716-3E54-4DFE-8CD9-F4099042FCFA}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{8C53C716-3E54-4DFE-8CD9-F4099042FCFA}.Release|Win32.ActiveCfg = Release|Any CPU
{8C53C716-3E54-4DFE-8CD9-F4099042FCFA}.Release|Win32.Build.0 = Release|Any CPU
{8C53C716-3E54-4DFE-8CD9-F4099042FCFA}.Release|x64.ActiveCfg = Release|Any CPU
{8C53C716-3E54-4DFE-8CD9-F4099042FCFA}.Release|x64.Build.0 = Release|Any CPU
{1A48458D-31A4-48D3-8EB2-2C79CFE4E82C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1A48458D-31A4-48D3-8EB2-2C79CFE4E82C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1A48458D-31A4-48D3-8EB2-2C79CFE4E82C}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{1A48458D-31A4-48D3-8EB2-2C79CFE4E82C}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{1A48458D-31A4-48D3-8EB2-2C79CFE4E82C}.Debug|Win32.ActiveCfg = Debug|Any CPU
{1A48458D-31A4-48D3-8EB2-2C79CFE4E82C}.Debug|Win32.Build.0 = Debug|Any CPU
{1A48458D-31A4-48D3-8EB2-2C79CFE4E82C}.Debug|x64.ActiveCfg = Debug|Any CPU
{1A48458D-31A4-48D3-8EB2-2C79CFE4E82C}.Debug|x64.Build.0 = Debug|Any CPU
{1A48458D-31A4-48D3-8EB2-2C79CFE4E82C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1A48458D-31A4-48D3-8EB2-2C79CFE4E82C}.Release|Any CPU.Build.0 = Release|Any CPU
{1A48458D-31A4-48D3-8EB2-2C79CFE4E82C}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{1A48458D-31A4-48D3-8EB2-2C79CFE4E82C}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{1A48458D-31A4-48D3-8EB2-2C79CFE4E82C}.Release|Win32.ActiveCfg = Release|Any CPU
{1A48458D-31A4-48D3-8EB2-2C79CFE4E82C}.Release|Win32.Build.0 = Release|Any CPU
{1A48458D-31A4-48D3-8EB2-2C79CFE4E82C}.Release|x64.ActiveCfg = Release|Any CPU
{1A48458D-31A4-48D3-8EB2-2C79CFE4E82C}.Release|x64.Build.0 = Release|Any CPU
{74CB429E-69D7-4525-BBDF-BBC47DBC7070}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{74CB429E-69D7-4525-BBDF-BBC47DBC7070}.Debug|Any CPU.Build.0 = Debug|Any CPU
{74CB429E-69D7-4525-BBDF-BBC47DBC7070}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{74CB429E-69D7-4525-BBDF-BBC47DBC7070}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{74CB429E-69D7-4525-BBDF-BBC47DBC7070}.Debug|Win32.ActiveCfg = Debug|Any CPU
{74CB429E-69D7-4525-BBDF-BBC47DBC7070}.Debug|Win32.Build.0 = Debug|Any CPU
{74CB429E-69D7-4525-BBDF-BBC47DBC7070}.Debug|x64.ActiveCfg = Debug|Any CPU
{74CB429E-69D7-4525-BBDF-BBC47DBC7070}.Debug|x64.Build.0 = Debug|Any CPU
{74CB429E-69D7-4525-BBDF-BBC47DBC7070}.Release|Any CPU.ActiveCfg = Release|Any CPU
{74CB429E-69D7-4525-BBDF-BBC47DBC7070}.Release|Any CPU.Build.0 = Release|Any CPU
{74CB429E-69D7-4525-BBDF-BBC47DBC7070}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{74CB429E-69D7-4525-BBDF-BBC47DBC7070}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{74CB429E-69D7-4525-BBDF-BBC47DBC7070}.Release|Win32.ActiveCfg = Release|Any CPU
{74CB429E-69D7-4525-BBDF-BBC47DBC7070}.Release|Win32.Build.0 = Release|Any CPU
{74CB429E-69D7-4525-BBDF-BBC47DBC7070}.Release|x64.ActiveCfg = Release|Any CPU
{74CB429E-69D7-4525-BBDF-BBC47DBC7070}.Release|x64.Build.0 = Release|Any CPU
{7FA125B4-E377-4D4C-AECB-17B934E3A4B3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7FA125B4-E377-4D4C-AECB-17B934E3A4B3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7FA125B4-E377-4D4C-AECB-17B934E3A4B3}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{7FA125B4-E377-4D4C-AECB-17B934E3A4B3}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{7FA125B4-E377-4D4C-AECB-17B934E3A4B3}.Debug|Win32.ActiveCfg = Debug|Any CPU
{7FA125B4-E377-4D4C-AECB-17B934E3A4B3}.Debug|Win32.Build.0 = Debug|Any CPU
{7FA125B4-E377-4D4C-AECB-17B934E3A4B3}.Debug|x64.ActiveCfg = Debug|Any CPU
{7FA125B4-E377-4D4C-AECB-17B934E3A4B3}.Debug|x64.Build.0 = Debug|Any CPU
{7FA125B4-E377-4D4C-AECB-17B934E3A4B3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7FA125B4-E377-4D4C-AECB-17B934E3A4B3}.Release|Any CPU.Build.0 = Release|Any CPU
{7FA125B4-E377-4D4C-AECB-17B934E3A4B3}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{7FA125B4-E377-4D4C-AECB-17B934E3A4B3}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{7FA125B4-E377-4D4C-AECB-17B934E3A4B3}.Release|Win32.ActiveCfg = Release|Any CPU
{7FA125B4-E377-4D4C-AECB-17B934E3A4B3}.Release|Win32.Build.0 = Release|Any CPU
{7FA125B4-E377-4D4C-AECB-17B934E3A4B3}.Release|x64.ActiveCfg = Release|Any CPU
{7FA125B4-E377-4D4C-AECB-17B934E3A4B3}.Release|x64.Build.0 = Release|Any CPU
{82F93F6E-5C10-4CC7-BC65-AC0B9CA6D39A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{82F93F6E-5C10-4CC7-BC65-AC0B9CA6D39A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{82F93F6E-5C10-4CC7-BC65-AC0B9CA6D39A}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{82F93F6E-5C10-4CC7-BC65-AC0B9CA6D39A}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{82F93F6E-5C10-4CC7-BC65-AC0B9CA6D39A}.Debug|Win32.ActiveCfg = Debug|Any CPU
{82F93F6E-5C10-4CC7-BC65-AC0B9CA6D39A}.Debug|Win32.Build.0 = Debug|Any CPU
{82F93F6E-5C10-4CC7-BC65-AC0B9CA6D39A}.Debug|x64.ActiveCfg = Debug|Any CPU
{82F93F6E-5C10-4CC7-BC65-AC0B9CA6D39A}.Debug|x64.Build.0 = Debug|Any CPU
{82F93F6E-5C10-4CC7-BC65-AC0B9CA6D39A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{82F93F6E-5C10-4CC7-BC65-AC0B9CA6D39A}.Release|Any CPU.Build.0 = Release|Any CPU
{82F93F6E-5C10-4CC7-BC65-AC0B9CA6D39A}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{82F93F6E-5C10-4CC7-BC65-AC0B9CA6D39A}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{82F93F6E-5C10-4CC7-BC65-AC0B9CA6D39A}.Release|Win32.ActiveCfg = Release|Any CPU
{82F93F6E-5C10-4CC7-BC65-AC0B9CA6D39A}.Release|Win32.Build.0 = Release|Any CPU
{82F93F6E-5C10-4CC7-BC65-AC0B9CA6D39A}.Release|x64.ActiveCfg = Release|Any CPU
{82F93F6E-5C10-4CC7-BC65-AC0B9CA6D39A}.Release|x64.Build.0 = Release|Any CPU
{8FCE12F2-FE7B-43D0-94E9-3B71FECAFE64}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8FCE12F2-FE7B-43D0-94E9-3B71FECAFE64}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8FCE12F2-FE7B-43D0-94E9-3B71FECAFE64}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{8FCE12F2-FE7B-43D0-94E9-3B71FECAFE64}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{8FCE12F2-FE7B-43D0-94E9-3B71FECAFE64}.Debug|Win32.ActiveCfg = Debug|Any CPU
{8FCE12F2-FE7B-43D0-94E9-3B71FECAFE64}.Debug|Win32.Build.0 = Debug|Any CPU
{8FCE12F2-FE7B-43D0-94E9-3B71FECAFE64}.Debug|x64.ActiveCfg = Debug|Any CPU
{8FCE12F2-FE7B-43D0-94E9-3B71FECAFE64}.Debug|x64.Build.0 = Debug|Any CPU
{8FCE12F2-FE7B-43D0-94E9-3B71FECAFE64}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8FCE12F2-FE7B-43D0-94E9-3B71FECAFE64}.Release|Any CPU.Build.0 = Release|Any CPU
{8FCE12F2-FE7B-43D0-94E9-3B71FECAFE64}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{8FCE12F2-FE7B-43D0-94E9-3B71FECAFE64}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{8FCE12F2-FE7B-43D0-94E9-3B71FECAFE64}.Release|Win32.ActiveCfg = Release|Any CPU
{8FCE12F2-FE7B-43D0-94E9-3B71FECAFE64}.Release|Win32.Build.0 = Release|Any CPU
{8FCE12F2-FE7B-43D0-94E9-3B71FECAFE64}.Release|x64.ActiveCfg = Release|Any CPU
{8FCE12F2-FE7B-43D0-94E9-3B71FECAFE64}.Release|x64.Build.0 = Release|Any CPU
{C6156B98-923A-474B-B257-29107476E93C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C6156B98-923A-474B-B257-29107476E93C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C6156B98-923A-474B-B257-29107476E93C}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{C6156B98-923A-474B-B257-29107476E93C}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{C6156B98-923A-474B-B257-29107476E93C}.Debug|Win32.ActiveCfg = Debug|Any CPU
{C6156B98-923A-474B-B257-29107476E93C}.Debug|Win32.Build.0 = Debug|Any CPU
{C6156B98-923A-474B-B257-29107476E93C}.Debug|x64.ActiveCfg = Debug|Any CPU
{C6156B98-923A-474B-B257-29107476E93C}.Debug|x64.Build.0 = Debug|Any CPU
{C6156B98-923A-474B-B257-29107476E93C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C6156B98-923A-474B-B257-29107476E93C}.Release|Any CPU.Build.0 = Release|Any CPU
{C6156B98-923A-474B-B257-29107476E93C}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{C6156B98-923A-474B-B257-29107476E93C}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{C6156B98-923A-474B-B257-29107476E93C}.Release|Win32.ActiveCfg = Release|Any CPU
{C6156B98-923A-474B-B257-29107476E93C}.Release|Win32.Build.0 = Release|Any CPU
{C6156B98-923A-474B-B257-29107476E93C}.Release|x64.ActiveCfg = Release|Any CPU
{C6156B98-923A-474B-B257-29107476E93C}.Release|x64.Build.0 = Release|Any CPU
{A7E48768-23B5-4A11-B10A-048FB21A0955}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A7E48768-23B5-4A11-B10A-048FB21A0955}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A7E48768-23B5-4A11-B10A-048FB21A0955}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{A7E48768-23B5-4A11-B10A-048FB21A0955}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{A7E48768-23B5-4A11-B10A-048FB21A0955}.Debug|Win32.ActiveCfg = Debug|Any CPU
{A7E48768-23B5-4A11-B10A-048FB21A0955}.Debug|Win32.Build.0 = Debug|Any CPU
{A7E48768-23B5-4A11-B10A-048FB21A0955}.Debug|x64.ActiveCfg = Debug|Any CPU
{A7E48768-23B5-4A11-B10A-048FB21A0955}.Debug|x64.Build.0 = Debug|Any CPU
{A7E48768-23B5-4A11-B10A-048FB21A0955}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A7E48768-23B5-4A11-B10A-048FB21A0955}.Release|Any CPU.Build.0 = Release|Any CPU
{A7E48768-23B5-4A11-B10A-048FB21A0955}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{A7E48768-23B5-4A11-B10A-048FB21A0955}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{A7E48768-23B5-4A11-B10A-048FB21A0955}.Release|Win32.ActiveCfg = Release|Any CPU
{A7E48768-23B5-4A11-B10A-048FB21A0955}.Release|Win32.Build.0 = Release|Any CPU
{A7E48768-23B5-4A11-B10A-048FB21A0955}.Release|x64.ActiveCfg = Release|Any CPU
{A7E48768-23B5-4A11-B10A-048FB21A0955}.Release|x64.Build.0 = Release|Any CPU
{520F4C89-51B6-49D6-9ED7-4523048C0154}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{520F4C89-51B6-49D6-9ED7-4523048C0154}.Debug|Any CPU.Build.0 = Debug|Any CPU
{520F4C89-51B6-49D6-9ED7-4523048C0154}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{520F4C89-51B6-49D6-9ED7-4523048C0154}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{520F4C89-51B6-49D6-9ED7-4523048C0154}.Debug|Win32.ActiveCfg = Debug|Any CPU
{520F4C89-51B6-49D6-9ED7-4523048C0154}.Debug|Win32.Build.0 = Debug|Any CPU
{520F4C89-51B6-49D6-9ED7-4523048C0154}.Debug|x64.ActiveCfg = Debug|Any CPU
{520F4C89-51B6-49D6-9ED7-4523048C0154}.Debug|x64.Build.0 = Debug|Any CPU
{520F4C89-51B6-49D6-9ED7-4523048C0154}.Release|Any CPU.ActiveCfg = Release|Any CPU
{520F4C89-51B6-49D6-9ED7-4523048C0154}.Release|Any CPU.Build.0 = Release|Any CPU
{520F4C89-51B6-49D6-9ED7-4523048C0154}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{520F4C89-51B6-49D6-9ED7-4523048C0154}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{520F4C89-51B6-49D6-9ED7-4523048C0154}.Release|Win32.ActiveCfg = Release|Any CPU
{520F4C89-51B6-49D6-9ED7-4523048C0154}.Release|Win32.Build.0 = Release|Any CPU
{520F4C89-51B6-49D6-9ED7-4523048C0154}.Release|x64.ActiveCfg = Release|Any CPU
{520F4C89-51B6-49D6-9ED7-4523048C0154}.Release|x64.Build.0 = Release|Any CPU
{FD6D4774-71B7-4D7A-BE91-753B12C0BB4E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FD6D4774-71B7-4D7A-BE91-753B12C0BB4E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FD6D4774-71B7-4D7A-BE91-753B12C0BB4E}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{FD6D4774-71B7-4D7A-BE91-753B12C0BB4E}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{FD6D4774-71B7-4D7A-BE91-753B12C0BB4E}.Debug|Win32.ActiveCfg = Debug|Any CPU
{FD6D4774-71B7-4D7A-BE91-753B12C0BB4E}.Debug|Win32.Build.0 = Debug|Any CPU
{FD6D4774-71B7-4D7A-BE91-753B12C0BB4E}.Debug|x64.ActiveCfg = Debug|Any CPU
{FD6D4774-71B7-4D7A-BE91-753B12C0BB4E}.Debug|x64.Build.0 = Debug|Any CPU
{FD6D4774-71B7-4D7A-BE91-753B12C0BB4E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FD6D4774-71B7-4D7A-BE91-753B12C0BB4E}.Release|Any CPU.Build.0 = Release|Any CPU
{FD6D4774-71B7-4D7A-BE91-753B12C0BB4E}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{FD6D4774-71B7-4D7A-BE91-753B12C0BB4E}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{FD6D4774-71B7-4D7A-BE91-753B12C0BB4E}.Release|Win32.ActiveCfg = Release|Any CPU
{FD6D4774-71B7-4D7A-BE91-753B12C0BB4E}.Release|Win32.Build.0 = Release|Any CPU
{FD6D4774-71B7-4D7A-BE91-753B12C0BB4E}.Release|x64.ActiveCfg = Release|Any CPU
{FD6D4774-71B7-4D7A-BE91-753B12C0BB4E}.Release|x64.Build.0 = Release|Any CPU
{B93FC354-D59D-4650-84E4-7FCA7D51689A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B93FC354-D59D-4650-84E4-7FCA7D51689A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B93FC354-D59D-4650-84E4-7FCA7D51689A}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{B93FC354-D59D-4650-84E4-7FCA7D51689A}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{B93FC354-D59D-4650-84E4-7FCA7D51689A}.Debug|Win32.ActiveCfg = Debug|Any CPU
{B93FC354-D59D-4650-84E4-7FCA7D51689A}.Debug|Win32.Build.0 = Debug|Any CPU
{B93FC354-D59D-4650-84E4-7FCA7D51689A}.Debug|x64.ActiveCfg = Debug|Any CPU
{B93FC354-D59D-4650-84E4-7FCA7D51689A}.Debug|x64.Build.0 = Debug|Any CPU
{B93FC354-D59D-4650-84E4-7FCA7D51689A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B93FC354-D59D-4650-84E4-7FCA7D51689A}.Release|Any CPU.Build.0 = Release|Any CPU
{B93FC354-D59D-4650-84E4-7FCA7D51689A}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{B93FC354-D59D-4650-84E4-7FCA7D51689A}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{B93FC354-D59D-4650-84E4-7FCA7D51689A}.Release|Win32.ActiveCfg = Release|Any CPU
{B93FC354-D59D-4650-84E4-7FCA7D51689A}.Release|Win32.Build.0 = Release|Any CPU
{B93FC354-D59D-4650-84E4-7FCA7D51689A}.Release|x64.ActiveCfg = Release|Any CPU
{B93FC354-D59D-4650-84E4-7FCA7D51689A}.Release|x64.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{64FE69B2-CE0B-4A47-83A3-9DE803851447} = {5D8A9D62-C11C-45B2-8965-43DE8160B558}
{12B66B03-90F1-4992-BD33-BDF3C69AE49E} = {64FE69B2-CE0B-4A47-83A3-9DE803851447}
{15B64946-4989-4873-915C-3E181772FA03} = {64FE69B2-CE0B-4A47-83A3-9DE803851447}
{B0791F6D-5D14-40DD-A2CB-5D2A97892693} = {64FE69B2-CE0B-4A47-83A3-9DE803851447}
{EA9871E3-9972-4476-821E-3961C28125E8} = {64FE69B2-CE0B-4A47-83A3-9DE803851447}
{28C7B9D6-BE1F-45E5-952C-0D5C9CA3EFDF} = {64FE69B2-CE0B-4A47-83A3-9DE803851447}
{42BC31BF-0A03-43EC-925B-1419DD7F2C7C} = {64FE69B2-CE0B-4A47-83A3-9DE803851447}
{2E368281-3BA8-4050-B05E-0E0E43F8F446} = {64FE69B2-CE0B-4A47-83A3-9DE803851447}
{3FA7B726-8AF9-4554-B41A-0BD915E4EAB5} = {64FE69B2-CE0B-4A47-83A3-9DE803851447}
{83154E24-B0DD-48E7-8BB5-55CF3D7B0FE3} = {5D8A9D62-C11C-45B2-8965-43DE8160B558}
{6A281C98-B74D-403B-8536-966871B992E3} = {83154E24-B0DD-48E7-8BB5-55CF3D7B0FE3}
{1D38AEC8-F5C0-4B1C-A0AE-18F4015A2E78} = {83154E24-B0DD-48E7-8BB5-55CF3D7B0FE3}
{A35E6AD6-6D46-41E1-8DB1-A41086793893} = {83154E24-B0DD-48E7-8BB5-55CF3D7B0FE3}
{08D0F53A-CD37-4060-B5A2-BCC202F0DE46} = {83154E24-B0DD-48E7-8BB5-55CF3D7B0FE3}
{DBD0C8B0-BE4E-4CBF-AAD4-44BEA2EA830B} = {83154E24-B0DD-48E7-8BB5-55CF3D7B0FE3}
{F0BA2671-5160-4164-B1FC-2883728C42D9} = {83154E24-B0DD-48E7-8BB5-55CF3D7B0FE3}
{DDCE1AE3-AA0D-4E2D-AD1B-8CA322AFA7DD} = {83154E24-B0DD-48E7-8BB5-55CF3D7B0FE3}
{C861E6BA-852B-4BC1-ACE7-77C8D6E7898B} = {83154E24-B0DD-48E7-8BB5-55CF3D7B0FE3}
{7B573D52-181D-482F-A61C-82E543B3E958} = {5D8A9D62-C11C-45B2-8965-43DE8160B558}
{D209C368-1277-4EA6-A887-AA6EBA51AB99} = {7B573D52-181D-482F-A61C-82E543B3E958}
{705FBD41-77A9-4FE7-A6C1-85026F2DDA09} = {7B573D52-181D-482F-A61C-82E543B3E958}
{E7541163-D7BB-4E9A-A722-D7737B7A2995} = {7B573D52-181D-482F-A61C-82E543B3E958}
{5B8B0EAB-3E74-48BB-8231-26E73B2019DC} = {7B573D52-181D-482F-A61C-82E543B3E958}
{46EC0BC1-8F51-4B4D-B967-2EE452EA68FC} = {7B573D52-181D-482F-A61C-82E543B3E958}
{8472DB53-5950-4A70-864C-567A55A6C4A1} = {7B573D52-181D-482F-A61C-82E543B3E958}
{C3264FF3-E2D7-48D7-93A7-CDC9A827AD9D} = {7B573D52-181D-482F-A61C-82E543B3E958}
{B00DC1F7-764B-4B65-9953-FA557E2EC493} = {7B573D52-181D-482F-A61C-82E543B3E958}
{05CA7939-235D-4E1F-BDFE-D639485A67E9} = {5D8A9D62-C11C-45B2-8965-43DE8160B558}
{D6FBBB3A-F6B8-45BB-B657-A7226AB96624} = {05CA7939-235D-4E1F-BDFE-D639485A67E9}
{9ED200E4-2026-4955-87E0-D8CEA7BD9E7F} = {05CA7939-235D-4E1F-BDFE-D639485A67E9}
{3AFA44B9-9DF0-494E-B633-6E6B9F2BB808} = {05CA7939-235D-4E1F-BDFE-D639485A67E9}
{D339BFC2-AF3F-46FA-899A-14BAD4BCA35B} = {05CA7939-235D-4E1F-BDFE-D639485A67E9}
{6872DB53-3250-4A70-2A4C-567A55A6C4B3} = {05CA7939-235D-4E1F-BDFE-D639485A67E9}
{8C53C716-3E54-4DFE-8CD9-F4099042FCFA} = {05CA7939-235D-4E1F-BDFE-D639485A67E9}
{1A48458D-31A4-48D3-8EB2-2C79CFE4E82C} = {05CA7939-235D-4E1F-BDFE-D639485A67E9}
{74CB429E-69D7-4525-BBDF-BBC47DBC7070} = {05CA7939-235D-4E1F-BDFE-D639485A67E9}
{A972031D-2F61-4183-AF75-99EE1A9F6B32} = {49D441DF-39FD-4F4D-AECA-86CF8EFE23AF}
{0DA39A07-D5ED-4031-AA6E-CAA873124ACA} = {5D8A9D62-C11C-45B2-8965-43DE8160B558}
{7FA125B4-E377-4D4C-AECB-17B934E3A4B3} = {0DA39A07-D5ED-4031-AA6E-CAA873124ACA}
{82F93F6E-5C10-4CC7-BC65-AC0B9CA6D39A} = {0DA39A07-D5ED-4031-AA6E-CAA873124ACA}
{8FCE12F2-FE7B-43D0-94E9-3B71FECAFE64} = {0DA39A07-D5ED-4031-AA6E-CAA873124ACA}
{C6156B98-923A-474B-B257-29107476E93C} = {0DA39A07-D5ED-4031-AA6E-CAA873124ACA}
{A7E48768-23B5-4A11-B10A-048FB21A0955} = {0DA39A07-D5ED-4031-AA6E-CAA873124ACA}
{520F4C89-51B6-49D6-9ED7-4523048C0154} = {0DA39A07-D5ED-4031-AA6E-CAA873124ACA}
{FD6D4774-71B7-4D7A-BE91-753B12C0BB4E} = {0DA39A07-D5ED-4031-AA6E-CAA873124ACA}
{B93FC354-D59D-4650-84E4-7FCA7D51689A} = {0DA39A07-D5ED-4031-AA6E-CAA873124ACA}
EndGlobalSection
GlobalSection(MonoDevelopProperties) = preSolution
StartupItem = src\NUnitConsole\nunit3-console\nunit3-console.csproj
{28B605B2-E2E9-417E-8369-49E263F1F31B} = {31B45C4C-206F-4F31-9CC6-33BF11DFEE39}
{FFF45826-991F-465B-8A03-0E1DB7E8F38C} = {31B45C4C-206F-4F31-9CC6-33BF11DFEE39}
{11640C9F-03A3-456B-848D-9B4A126F9506} = {31B45C4C-206F-4F31-9CC6-33BF11DFEE39}
EndGlobalSection
EndGlobal

419
nunit.sln
Просмотреть файл

@ -1,419 +0,0 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "NUnitFramework", "NUnitFramework", "{5D8A9D62-C11C-45B2-8965-43DE8160B558}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "NET-2.0", "NET-2.0", "{64FE69B2-CE0B-4A47-83A3-9DE803851447}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.framework-2.0", "src\NUnitFramework\framework\nunit.framework-2.0.csproj", "{12B66B03-90F1-4992-BD33-BDF3C69AE49E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "mock-assembly-2.0", "src\NUnitFramework\mock-assembly\mock-assembly-2.0.csproj", "{2E368281-3BA8-4050-B05E-0E0E43F8F446}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.testdata-2.0", "src\NUnitFramework\testdata\nunit.testdata-2.0.csproj", "{15B64946-4989-4873-915C-3E181772FA03}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "slow-nunit-tests-2.0", "src\NUnitFramework\slow-tests\slow-nunit-tests-2.0.csproj", "{B0791F6D-5D14-40DD-A2CB-5D2A97892693}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.framework.tests-2.0", "src\NUnitFramework\tests\nunit.framework.tests-2.0.csproj", "{EA9871E3-9972-4476-821E-3961C28125E8}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "NET-4.0", "NET-4.0", "{83154E24-B0DD-48E7-8BB5-55CF3D7B0FE3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.framework-4.0", "src\NUnitFramework\framework\nunit.framework-4.0.csproj", "{6A281C98-B74D-403B-8536-966871B992E3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "mock-assembly-4.0", "src\NUnitFramework\mock-assembly\mock-assembly-4.0.csproj", "{DDCE1AE3-AA0D-4E2D-AD1B-8CA322AFA7DD}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "slow-nunit-tests-4.0", "src\NUnitFramework\slow-tests\slow-nunit-tests-4.0.csproj", "{1D38AEC8-F5C0-4B1C-A0AE-18F4015A2E78}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.testdata-4.0", "src\NUnitFramework\testdata\nunit.testdata-4.0.csproj", "{A35E6AD6-6D46-41E1-8DB1-A41086793893}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.framework.tests-4.0", "src\NUnitFramework\tests\nunit.framework.tests-4.0.csproj", "{08D0F53A-CD37-4060-B5A2-BCC202F0DE46}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "NET-4.5", "NET-4.5", "{7B573D52-181D-482F-A61C-82E543B3E958}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.framework-4.5", "src\NUnitFramework\framework\nunit.framework-4.5.csproj", "{D209C368-1277-4EA6-A887-AA6EBA51AB99}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "mock-assembly-4.5", "src\NUnitFramework\mock-assembly\mock-assembly-4.5.csproj", "{C3264FF3-E2D7-48D7-93A7-CDC9A827AD9D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "slow-nunit-tests-4.5", "src\NUnitFramework\slow-tests\slow-nunit-tests-4.5.csproj", "{705FBD41-77A9-4FE7-A6C1-85026F2DDA09}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.testdata-4.5", "src\NUnitFramework\testdata\nunit.testdata-4.5.csproj", "{E7541163-D7BB-4E9A-A722-D7737B7A2995}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.framework.tests-4.5", "src\NUnitFramework\tests\nunit.framework.tests-4.5.csproj", "{5B8B0EAB-3E74-48BB-8231-26E73B2019DC}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SL-5.0", "SL-5.0", "{A21BFC37-44FC-41A0-B6E7-6F949F45A635}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{49D441DF-39FD-4F4D-AECA-86CF8EFE23AF}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
.gitattributes = .gitattributes
.gitignore = .gitignore
.travis.yml = .travis.yml
appveyor.yml = appveyor.yml
build.cake = build.cake
BUILDING.md = BUILDING.md
CHANGES.txt = CHANGES.txt
CONTRIBUTING.md = CONTRIBUTING.md
LICENSE.txt = LICENSE.txt
NOTICES.txt = NOTICES.txt
NuGet.config = NuGet.config
README.md = README.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "nuget", "nuget", "{A972031D-2F61-4183-AF75-99EE1A9F6B32}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Portable", "Portable", "{A6EBC77C-9A34-4796-B4D0-E7A1E21A65A7}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.framework-portable", "src\NUnitFramework\framework\nunit.framework-portable.csproj", "{D6FBBB3A-F6B8-45BB-B657-A7226AB96624}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.framework-sl-5.0", "src\NUnitFramework\framework\nunit.framework-sl-5.0.csproj", "{3DEB15F9-E7DA-403F-B6D3-A8499310397F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.testdata-portable", "src\NUnitFramework\testdata\nunit.testdata-portable.csproj", "{9ED200E4-2026-4955-87E0-D8CEA7BD9E7F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.testdata-sl-5.0", "src\NUnitFramework\testdata\nunit.testdata-sl-5.0.csproj", "{A76794DA-29A4-4D63-9850-E0E363A2FAFD}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.framework.tests-sl-5.0", "src\NUnitFramework\tests\nunit.framework.tests-sl-5.0.csproj", "{A4F0C741-6ED4-46C8-AE75-57E1C7197E22}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "mock-assembly-portable", "src\NUnitFramework\mock-assembly\mock-assembly-portable.csproj", "{8C53C716-3E54-4DFE-8CD9-F4099042FCFA}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "mock-assembly-sl-5.0", "src\NUnitFramework\mock-assembly\mock-assembly-sl-5.0.csproj", "{C4D16DF1-B6FA-42F5-834E-B01DA1BAA1FF}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.framework.tests-portable", "src\NUnitFramework\tests\nunit.framework.tests-portable.csproj", "{3AFA44B9-9DF0-494E-B633-6E6B9F2BB808}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite.tests-2.0", "src\NUnitFramework\nunitlite.tests\nunitlite.tests-2.0.csproj", "{42BC31BF-0A03-43EC-925B-1419DD7F2C7C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite.tests-4.0", "src\NUnitFramework\nunitlite.tests\nunitlite.tests-4.0.csproj", "{F0BA2671-5160-4164-B1FC-2883728C42D9}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite.tests-4.5", "src\NUnitFramework\nunitlite.tests\nunitlite.tests-4.5.csproj", "{8472DB53-5950-4A70-864C-567A55A6C4A1}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite.tests-sl-5.0", "src\NUnitFramework\nunitlite.tests\nunitlite.tests-sl-5.0.csproj", "{5249870F-7119-45DE-A269-66D6451E2507}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite.tests-portable", "src\NUnitFramework\nunitlite.tests\nunitlite.tests-portable.csproj", "{6872DB53-3250-4A70-2A4C-567A55A6C4B3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite-2.0", "src\NUnitFramework\nunitlite\nunitlite-2.0.csproj", "{28C7B9D6-BE1F-45E5-952C-0D5C9CA3EFDF}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite-4.0", "src\NUnitFramework\nunitlite\nunitlite-4.0.csproj", "{DBD0C8B0-BE4E-4CBF-AAD4-44BEA2EA830B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite-4.5", "src\NUnitFramework\nunitlite\nunitlite-4.5.csproj", "{46EC0BC1-8F51-4B4D-B967-2EE452EA68FC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite-portable", "src\NUnitFramework\nunitlite\nunitlite-portable.csproj", "{D339BFC2-AF3F-46FA-899A-14BAD4BCA35B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite-sl-5.0", "src\NUnitFramework\nunitlite\nunitlite-sl-5.0.csproj", "{0A5F920A-1BF5-4DAC-B799-0C618B203797}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite-runner-portable", "src\NUnitFramework\nunitlite-runner\nunitlite-runner-portable.csproj", "{1A48458D-31A4-48D3-8EB2-2C79CFE4E82C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite-runner-4.5", "src\NUnitFramework\nunitlite-runner\nunitlite-runner-4.5.csproj", "{B00DC1F7-764B-4B65-9953-FA557E2EC493}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite-runner-2.0", "src\NUnitFramework\nunitlite-runner\nunitlite-runner-2.0.csproj", "{3FA7B726-8AF9-4554-B41A-0BD915E4EAB5}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite-runner-4.0", "src\NUnitFramework\nunitlite-runner\nunitlite-runner-4.0.csproj", "{C861E6BA-852B-4BC1-ACE7-77C8D6E7898B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite-runner-sl-5.0", "src\NUnitFramework\nunitlite-runner\nunitlite-runner-sl-5.0.csproj", "{901DA110-F30A-4515-880D-E9D59B6ECB4E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "slow-nunit-tests-portable", "src\NUnitFramework\slow-tests\slow-nunit-tests-portable.csproj", "{74CB429E-69D7-4525-BBDF-BBC47DBC7070}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "slow-nunit-tests-sl-5.0", "src\NUnitFramework\slow-tests\slow-nunit-tests-sl-5.0.csproj", "{A2B973C4-EA96-4B00-B2BE-04BFD9D5AA39}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "framework", "framework", "{BC87F477-1A7A-45D0-9AC1-9F7315264732}"
ProjectSection(SolutionItems) = preProject
nuget\framework\nunit.nuspec = nuget\framework\nunit.nuspec
nuget\framework\nunitCF.nuspec = nuget\framework\nunitCF.nuspec
nuget\framework\nunitSL.nuspec = nuget\framework\nunitSL.nuspec
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "nunitlite", "nunitlite", "{140CDAD6-6E11-4A97-94F3-B23A14391117}"
ProjectSection(SolutionItems) = preProject
nuget\nunitlite\install.ps1 = nuget\nunitlite\install.ps1
nuget\nunitlite\nunitlite.nuspec = nuget\nunitlite\nunitlite.nuspec
nuget\nunitlite\nunitliteCF.nuspec = nuget\nunitlite\nunitliteCF.nuspec
nuget\nunitlite\nunitliteSL.nuspec = nuget\nunitlite\nunitliteSL.nuspec
nuget\nunitlite\Program.cs = nuget\nunitlite\Program.cs
nuget\nunitlite\Program.vb = nuget\nunitlite\Program.vb
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "NET-3.5", "NET-3.5", "{49BF96D3-3F1B-4553-BE55-296FA7C3F659}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.framework-3.5", "src\NUnitFramework\framework\nunit.framework-3.5.csproj", "{7FA125B4-E377-4D4C-AECB-17B934E3A4B3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite-3.5", "src\NUnitFramework\nunitlite\nunitlite-3.5.csproj", "{82F93F6E-5C10-4CC7-BC65-AC0B9CA6D39A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "mock-assembly-3.5", "src\NUnitFramework\mock-assembly\mock-assembly-3.5.csproj", "{8FCE12F2-FE7B-43D0-94E9-3B71FECAFE64}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite.tests-3.5", "src\NUnitFramework\nunitlite.tests\nunitlite.tests-3.5.csproj", "{FD6D4774-71B7-4D7A-BE91-753B12C0BB4E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite-runner-3.5", "src\NUnitFramework\nunitlite-runner\nunitlite-runner-3.5.csproj", "{A7E48768-23B5-4A11-B10A-048FB21A0955}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "slow-nunit-tests-3.5", "src\NUnitFramework\slow-tests\slow-nunit-tests-3.5.csproj", "{C6156B98-923A-474B-B257-29107476E93C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.testdata-3.5", "src\NUnitFramework\testdata\nunit.testdata-3.5.csproj", "{520F4C89-51B6-49D6-9ED7-4523048C0154}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.framework.tests-3.5", "src\NUnitFramework\tests\nunit.framework.tests-3.5.csproj", "{B93FC354-D59D-4650-84E4-7FCA7D51689A}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{12B66B03-90F1-4992-BD33-BDF3C69AE49E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{12B66B03-90F1-4992-BD33-BDF3C69AE49E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{12B66B03-90F1-4992-BD33-BDF3C69AE49E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{12B66B03-90F1-4992-BD33-BDF3C69AE49E}.Release|Any CPU.Build.0 = Release|Any CPU
{2E368281-3BA8-4050-B05E-0E0E43F8F446}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2E368281-3BA8-4050-B05E-0E0E43F8F446}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2E368281-3BA8-4050-B05E-0E0E43F8F446}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2E368281-3BA8-4050-B05E-0E0E43F8F446}.Release|Any CPU.Build.0 = Release|Any CPU
{15B64946-4989-4873-915C-3E181772FA03}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{15B64946-4989-4873-915C-3E181772FA03}.Debug|Any CPU.Build.0 = Debug|Any CPU
{15B64946-4989-4873-915C-3E181772FA03}.Release|Any CPU.ActiveCfg = Release|Any CPU
{15B64946-4989-4873-915C-3E181772FA03}.Release|Any CPU.Build.0 = Release|Any CPU
{B0791F6D-5D14-40DD-A2CB-5D2A97892693}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B0791F6D-5D14-40DD-A2CB-5D2A97892693}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B0791F6D-5D14-40DD-A2CB-5D2A97892693}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B0791F6D-5D14-40DD-A2CB-5D2A97892693}.Release|Any CPU.Build.0 = Release|Any CPU
{EA9871E3-9972-4476-821E-3961C28125E8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EA9871E3-9972-4476-821E-3961C28125E8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EA9871E3-9972-4476-821E-3961C28125E8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EA9871E3-9972-4476-821E-3961C28125E8}.Release|Any CPU.Build.0 = Release|Any CPU
{6A281C98-B74D-403B-8536-966871B992E3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6A281C98-B74D-403B-8536-966871B992E3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6A281C98-B74D-403B-8536-966871B992E3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6A281C98-B74D-403B-8536-966871B992E3}.Release|Any CPU.Build.0 = Release|Any CPU
{DDCE1AE3-AA0D-4E2D-AD1B-8CA322AFA7DD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DDCE1AE3-AA0D-4E2D-AD1B-8CA322AFA7DD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DDCE1AE3-AA0D-4E2D-AD1B-8CA322AFA7DD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DDCE1AE3-AA0D-4E2D-AD1B-8CA322AFA7DD}.Release|Any CPU.Build.0 = Release|Any CPU
{1D38AEC8-F5C0-4B1C-A0AE-18F4015A2E78}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1D38AEC8-F5C0-4B1C-A0AE-18F4015A2E78}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1D38AEC8-F5C0-4B1C-A0AE-18F4015A2E78}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1D38AEC8-F5C0-4B1C-A0AE-18F4015A2E78}.Release|Any CPU.Build.0 = Release|Any CPU
{A35E6AD6-6D46-41E1-8DB1-A41086793893}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A35E6AD6-6D46-41E1-8DB1-A41086793893}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A35E6AD6-6D46-41E1-8DB1-A41086793893}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A35E6AD6-6D46-41E1-8DB1-A41086793893}.Release|Any CPU.Build.0 = Release|Any CPU
{08D0F53A-CD37-4060-B5A2-BCC202F0DE46}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{08D0F53A-CD37-4060-B5A2-BCC202F0DE46}.Debug|Any CPU.Build.0 = Debug|Any CPU
{08D0F53A-CD37-4060-B5A2-BCC202F0DE46}.Release|Any CPU.ActiveCfg = Release|Any CPU
{08D0F53A-CD37-4060-B5A2-BCC202F0DE46}.Release|Any CPU.Build.0 = Release|Any CPU
{D209C368-1277-4EA6-A887-AA6EBA51AB99}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D209C368-1277-4EA6-A887-AA6EBA51AB99}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D209C368-1277-4EA6-A887-AA6EBA51AB99}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D209C368-1277-4EA6-A887-AA6EBA51AB99}.Release|Any CPU.Build.0 = Release|Any CPU
{C3264FF3-E2D7-48D7-93A7-CDC9A827AD9D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C3264FF3-E2D7-48D7-93A7-CDC9A827AD9D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C3264FF3-E2D7-48D7-93A7-CDC9A827AD9D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C3264FF3-E2D7-48D7-93A7-CDC9A827AD9D}.Release|Any CPU.Build.0 = Release|Any CPU
{705FBD41-77A9-4FE7-A6C1-85026F2DDA09}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{705FBD41-77A9-4FE7-A6C1-85026F2DDA09}.Debug|Any CPU.Build.0 = Debug|Any CPU
{705FBD41-77A9-4FE7-A6C1-85026F2DDA09}.Release|Any CPU.ActiveCfg = Release|Any CPU
{705FBD41-77A9-4FE7-A6C1-85026F2DDA09}.Release|Any CPU.Build.0 = Release|Any CPU
{E7541163-D7BB-4E9A-A722-D7737B7A2995}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E7541163-D7BB-4E9A-A722-D7737B7A2995}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E7541163-D7BB-4E9A-A722-D7737B7A2995}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E7541163-D7BB-4E9A-A722-D7737B7A2995}.Release|Any CPU.Build.0 = Release|Any CPU
{5B8B0EAB-3E74-48BB-8231-26E73B2019DC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5B8B0EAB-3E74-48BB-8231-26E73B2019DC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5B8B0EAB-3E74-48BB-8231-26E73B2019DC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5B8B0EAB-3E74-48BB-8231-26E73B2019DC}.Release|Any CPU.Build.0 = Release|Any CPU
{D6FBBB3A-F6B8-45BB-B657-A7226AB96624}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D6FBBB3A-F6B8-45BB-B657-A7226AB96624}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D6FBBB3A-F6B8-45BB-B657-A7226AB96624}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D6FBBB3A-F6B8-45BB-B657-A7226AB96624}.Release|Any CPU.Build.0 = Release|Any CPU
{3DEB15F9-E7DA-403F-B6D3-A8499310397F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3DEB15F9-E7DA-403F-B6D3-A8499310397F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3DEB15F9-E7DA-403F-B6D3-A8499310397F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3DEB15F9-E7DA-403F-B6D3-A8499310397F}.Release|Any CPU.Build.0 = Release|Any CPU
{9ED200E4-2026-4955-87E0-D8CEA7BD9E7F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9ED200E4-2026-4955-87E0-D8CEA7BD9E7F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9ED200E4-2026-4955-87E0-D8CEA7BD9E7F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9ED200E4-2026-4955-87E0-D8CEA7BD9E7F}.Release|Any CPU.Build.0 = Release|Any CPU
{A76794DA-29A4-4D63-9850-E0E363A2FAFD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A76794DA-29A4-4D63-9850-E0E363A2FAFD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A76794DA-29A4-4D63-9850-E0E363A2FAFD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A76794DA-29A4-4D63-9850-E0E363A2FAFD}.Release|Any CPU.Build.0 = Release|Any CPU
{A4F0C741-6ED4-46C8-AE75-57E1C7197E22}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A4F0C741-6ED4-46C8-AE75-57E1C7197E22}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A4F0C741-6ED4-46C8-AE75-57E1C7197E22}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A4F0C741-6ED4-46C8-AE75-57E1C7197E22}.Release|Any CPU.Build.0 = Release|Any CPU
{8C53C716-3E54-4DFE-8CD9-F4099042FCFA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8C53C716-3E54-4DFE-8CD9-F4099042FCFA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8C53C716-3E54-4DFE-8CD9-F4099042FCFA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8C53C716-3E54-4DFE-8CD9-F4099042FCFA}.Release|Any CPU.Build.0 = Release|Any CPU
{C4D16DF1-B6FA-42F5-834E-B01DA1BAA1FF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C4D16DF1-B6FA-42F5-834E-B01DA1BAA1FF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C4D16DF1-B6FA-42F5-834E-B01DA1BAA1FF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C4D16DF1-B6FA-42F5-834E-B01DA1BAA1FF}.Release|Any CPU.Build.0 = Release|Any CPU
{3AFA44B9-9DF0-494E-B633-6E6B9F2BB808}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3AFA44B9-9DF0-494E-B633-6E6B9F2BB808}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3AFA44B9-9DF0-494E-B633-6E6B9F2BB808}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3AFA44B9-9DF0-494E-B633-6E6B9F2BB808}.Release|Any CPU.Build.0 = Release|Any CPU
{42BC31BF-0A03-43EC-925B-1419DD7F2C7C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{42BC31BF-0A03-43EC-925B-1419DD7F2C7C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{42BC31BF-0A03-43EC-925B-1419DD7F2C7C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{42BC31BF-0A03-43EC-925B-1419DD7F2C7C}.Release|Any CPU.Build.0 = Release|Any CPU
{F0BA2671-5160-4164-B1FC-2883728C42D9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F0BA2671-5160-4164-B1FC-2883728C42D9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F0BA2671-5160-4164-B1FC-2883728C42D9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F0BA2671-5160-4164-B1FC-2883728C42D9}.Release|Any CPU.Build.0 = Release|Any CPU
{8472DB53-5950-4A70-864C-567A55A6C4A1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8472DB53-5950-4A70-864C-567A55A6C4A1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8472DB53-5950-4A70-864C-567A55A6C4A1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8472DB53-5950-4A70-864C-567A55A6C4A1}.Release|Any CPU.Build.0 = Release|Any CPU
{5249870F-7119-45DE-A269-66D6451E2507}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5249870F-7119-45DE-A269-66D6451E2507}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5249870F-7119-45DE-A269-66D6451E2507}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5249870F-7119-45DE-A269-66D6451E2507}.Release|Any CPU.Build.0 = Release|Any CPU
{6872DB53-3250-4A70-2A4C-567A55A6C4B3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6872DB53-3250-4A70-2A4C-567A55A6C4B3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6872DB53-3250-4A70-2A4C-567A55A6C4B3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6872DB53-3250-4A70-2A4C-567A55A6C4B3}.Release|Any CPU.Build.0 = Release|Any CPU
{28C7B9D6-BE1F-45E5-952C-0D5C9CA3EFDF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{28C7B9D6-BE1F-45E5-952C-0D5C9CA3EFDF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{28C7B9D6-BE1F-45E5-952C-0D5C9CA3EFDF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{28C7B9D6-BE1F-45E5-952C-0D5C9CA3EFDF}.Release|Any CPU.Build.0 = Release|Any CPU
{DBD0C8B0-BE4E-4CBF-AAD4-44BEA2EA830B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DBD0C8B0-BE4E-4CBF-AAD4-44BEA2EA830B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DBD0C8B0-BE4E-4CBF-AAD4-44BEA2EA830B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DBD0C8B0-BE4E-4CBF-AAD4-44BEA2EA830B}.Release|Any CPU.Build.0 = Release|Any CPU
{46EC0BC1-8F51-4B4D-B967-2EE452EA68FC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{46EC0BC1-8F51-4B4D-B967-2EE452EA68FC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{46EC0BC1-8F51-4B4D-B967-2EE452EA68FC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{46EC0BC1-8F51-4B4D-B967-2EE452EA68FC}.Release|Any CPU.Build.0 = Release|Any CPU
{D339BFC2-AF3F-46FA-899A-14BAD4BCA35B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D339BFC2-AF3F-46FA-899A-14BAD4BCA35B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D339BFC2-AF3F-46FA-899A-14BAD4BCA35B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D339BFC2-AF3F-46FA-899A-14BAD4BCA35B}.Release|Any CPU.Build.0 = Release|Any CPU
{0A5F920A-1BF5-4DAC-B799-0C618B203797}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0A5F920A-1BF5-4DAC-B799-0C618B203797}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0A5F920A-1BF5-4DAC-B799-0C618B203797}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0A5F920A-1BF5-4DAC-B799-0C618B203797}.Release|Any CPU.Build.0 = Release|Any CPU
{1A48458D-31A4-48D3-8EB2-2C79CFE4E82C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1A48458D-31A4-48D3-8EB2-2C79CFE4E82C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1A48458D-31A4-48D3-8EB2-2C79CFE4E82C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1A48458D-31A4-48D3-8EB2-2C79CFE4E82C}.Release|Any CPU.Build.0 = Release|Any CPU
{B00DC1F7-764B-4B65-9953-FA557E2EC493}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B00DC1F7-764B-4B65-9953-FA557E2EC493}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B00DC1F7-764B-4B65-9953-FA557E2EC493}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B00DC1F7-764B-4B65-9953-FA557E2EC493}.Release|Any CPU.Build.0 = Release|Any CPU
{3FA7B726-8AF9-4554-B41A-0BD915E4EAB5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3FA7B726-8AF9-4554-B41A-0BD915E4EAB5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3FA7B726-8AF9-4554-B41A-0BD915E4EAB5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3FA7B726-8AF9-4554-B41A-0BD915E4EAB5}.Release|Any CPU.Build.0 = Release|Any CPU
{C861E6BA-852B-4BC1-ACE7-77C8D6E7898B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C861E6BA-852B-4BC1-ACE7-77C8D6E7898B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C861E6BA-852B-4BC1-ACE7-77C8D6E7898B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C861E6BA-852B-4BC1-ACE7-77C8D6E7898B}.Release|Any CPU.Build.0 = Release|Any CPU
{901DA110-F30A-4515-880D-E9D59B6ECB4E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{901DA110-F30A-4515-880D-E9D59B6ECB4E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{901DA110-F30A-4515-880D-E9D59B6ECB4E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{901DA110-F30A-4515-880D-E9D59B6ECB4E}.Release|Any CPU.Build.0 = Release|Any CPU
{74CB429E-69D7-4525-BBDF-BBC47DBC7070}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{74CB429E-69D7-4525-BBDF-BBC47DBC7070}.Debug|Any CPU.Build.0 = Debug|Any CPU
{74CB429E-69D7-4525-BBDF-BBC47DBC7070}.Release|Any CPU.ActiveCfg = Release|Any CPU
{74CB429E-69D7-4525-BBDF-BBC47DBC7070}.Release|Any CPU.Build.0 = Release|Any CPU
{A2B973C4-EA96-4B00-B2BE-04BFD9D5AA39}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A2B973C4-EA96-4B00-B2BE-04BFD9D5AA39}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A2B973C4-EA96-4B00-B2BE-04BFD9D5AA39}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A2B973C4-EA96-4B00-B2BE-04BFD9D5AA39}.Release|Any CPU.Build.0 = Release|Any CPU
{7FA125B4-E377-4D4C-AECB-17B934E3A4B3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7FA125B4-E377-4D4C-AECB-17B934E3A4B3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7FA125B4-E377-4D4C-AECB-17B934E3A4B3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7FA125B4-E377-4D4C-AECB-17B934E3A4B3}.Release|Any CPU.Build.0 = Release|Any CPU
{82F93F6E-5C10-4CC7-BC65-AC0B9CA6D39A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{82F93F6E-5C10-4CC7-BC65-AC0B9CA6D39A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{82F93F6E-5C10-4CC7-BC65-AC0B9CA6D39A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{82F93F6E-5C10-4CC7-BC65-AC0B9CA6D39A}.Release|Any CPU.Build.0 = Release|Any CPU
{8FCE12F2-FE7B-43D0-94E9-3B71FECAFE64}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8FCE12F2-FE7B-43D0-94E9-3B71FECAFE64}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8FCE12F2-FE7B-43D0-94E9-3B71FECAFE64}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8FCE12F2-FE7B-43D0-94E9-3B71FECAFE64}.Release|Any CPU.Build.0 = Release|Any CPU
{FD6D4774-71B7-4D7A-BE91-753B12C0BB4E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FD6D4774-71B7-4D7A-BE91-753B12C0BB4E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FD6D4774-71B7-4D7A-BE91-753B12C0BB4E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FD6D4774-71B7-4D7A-BE91-753B12C0BB4E}.Release|Any CPU.Build.0 = Release|Any CPU
{A7E48768-23B5-4A11-B10A-048FB21A0955}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A7E48768-23B5-4A11-B10A-048FB21A0955}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A7E48768-23B5-4A11-B10A-048FB21A0955}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A7E48768-23B5-4A11-B10A-048FB21A0955}.Release|Any CPU.Build.0 = Release|Any CPU
{C6156B98-923A-474B-B257-29107476E93C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C6156B98-923A-474B-B257-29107476E93C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C6156B98-923A-474B-B257-29107476E93C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C6156B98-923A-474B-B257-29107476E93C}.Release|Any CPU.Build.0 = Release|Any CPU
{520F4C89-51B6-49D6-9ED7-4523048C0154}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{520F4C89-51B6-49D6-9ED7-4523048C0154}.Debug|Any CPU.Build.0 = Debug|Any CPU
{520F4C89-51B6-49D6-9ED7-4523048C0154}.Release|Any CPU.ActiveCfg = Release|Any CPU
{520F4C89-51B6-49D6-9ED7-4523048C0154}.Release|Any CPU.Build.0 = Release|Any CPU
{B93FC354-D59D-4650-84E4-7FCA7D51689A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B93FC354-D59D-4650-84E4-7FCA7D51689A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B93FC354-D59D-4650-84E4-7FCA7D51689A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B93FC354-D59D-4650-84E4-7FCA7D51689A}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{64FE69B2-CE0B-4A47-83A3-9DE803851447} = {5D8A9D62-C11C-45B2-8965-43DE8160B558}
{12B66B03-90F1-4992-BD33-BDF3C69AE49E} = {64FE69B2-CE0B-4A47-83A3-9DE803851447}
{2E368281-3BA8-4050-B05E-0E0E43F8F446} = {64FE69B2-CE0B-4A47-83A3-9DE803851447}
{15B64946-4989-4873-915C-3E181772FA03} = {64FE69B2-CE0B-4A47-83A3-9DE803851447}
{B0791F6D-5D14-40DD-A2CB-5D2A97892693} = {64FE69B2-CE0B-4A47-83A3-9DE803851447}
{EA9871E3-9972-4476-821E-3961C28125E8} = {64FE69B2-CE0B-4A47-83A3-9DE803851447}
{83154E24-B0DD-48E7-8BB5-55CF3D7B0FE3} = {5D8A9D62-C11C-45B2-8965-43DE8160B558}
{6A281C98-B74D-403B-8536-966871B992E3} = {83154E24-B0DD-48E7-8BB5-55CF3D7B0FE3}
{DDCE1AE3-AA0D-4E2D-AD1B-8CA322AFA7DD} = {83154E24-B0DD-48E7-8BB5-55CF3D7B0FE3}
{1D38AEC8-F5C0-4B1C-A0AE-18F4015A2E78} = {83154E24-B0DD-48E7-8BB5-55CF3D7B0FE3}
{A35E6AD6-6D46-41E1-8DB1-A41086793893} = {83154E24-B0DD-48E7-8BB5-55CF3D7B0FE3}
{08D0F53A-CD37-4060-B5A2-BCC202F0DE46} = {83154E24-B0DD-48E7-8BB5-55CF3D7B0FE3}
{7B573D52-181D-482F-A61C-82E543B3E958} = {5D8A9D62-C11C-45B2-8965-43DE8160B558}
{D209C368-1277-4EA6-A887-AA6EBA51AB99} = {7B573D52-181D-482F-A61C-82E543B3E958}
{C3264FF3-E2D7-48D7-93A7-CDC9A827AD9D} = {7B573D52-181D-482F-A61C-82E543B3E958}
{705FBD41-77A9-4FE7-A6C1-85026F2DDA09} = {7B573D52-181D-482F-A61C-82E543B3E958}
{E7541163-D7BB-4E9A-A722-D7737B7A2995} = {7B573D52-181D-482F-A61C-82E543B3E958}
{5B8B0EAB-3E74-48BB-8231-26E73B2019DC} = {7B573D52-181D-482F-A61C-82E543B3E958}
{A21BFC37-44FC-41A0-B6E7-6F949F45A635} = {5D8A9D62-C11C-45B2-8965-43DE8160B558}
{A972031D-2F61-4183-AF75-99EE1A9F6B32} = {49D441DF-39FD-4F4D-AECA-86CF8EFE23AF}
{A6EBC77C-9A34-4796-B4D0-E7A1E21A65A7} = {5D8A9D62-C11C-45B2-8965-43DE8160B558}
{D6FBBB3A-F6B8-45BB-B657-A7226AB96624} = {A6EBC77C-9A34-4796-B4D0-E7A1E21A65A7}
{3DEB15F9-E7DA-403F-B6D3-A8499310397F} = {A21BFC37-44FC-41A0-B6E7-6F949F45A635}
{9ED200E4-2026-4955-87E0-D8CEA7BD9E7F} = {A6EBC77C-9A34-4796-B4D0-E7A1E21A65A7}
{A76794DA-29A4-4D63-9850-E0E363A2FAFD} = {A21BFC37-44FC-41A0-B6E7-6F949F45A635}
{A4F0C741-6ED4-46C8-AE75-57E1C7197E22} = {A21BFC37-44FC-41A0-B6E7-6F949F45A635}
{8C53C716-3E54-4DFE-8CD9-F4099042FCFA} = {A6EBC77C-9A34-4796-B4D0-E7A1E21A65A7}
{C4D16DF1-B6FA-42F5-834E-B01DA1BAA1FF} = {A21BFC37-44FC-41A0-B6E7-6F949F45A635}
{3AFA44B9-9DF0-494E-B633-6E6B9F2BB808} = {A6EBC77C-9A34-4796-B4D0-E7A1E21A65A7}
{42BC31BF-0A03-43EC-925B-1419DD7F2C7C} = {64FE69B2-CE0B-4A47-83A3-9DE803851447}
{F0BA2671-5160-4164-B1FC-2883728C42D9} = {83154E24-B0DD-48E7-8BB5-55CF3D7B0FE3}
{8472DB53-5950-4A70-864C-567A55A6C4A1} = {7B573D52-181D-482F-A61C-82E543B3E958}
{5249870F-7119-45DE-A269-66D6451E2507} = {A21BFC37-44FC-41A0-B6E7-6F949F45A635}
{6872DB53-3250-4A70-2A4C-567A55A6C4B3} = {A6EBC77C-9A34-4796-B4D0-E7A1E21A65A7}
{28C7B9D6-BE1F-45E5-952C-0D5C9CA3EFDF} = {64FE69B2-CE0B-4A47-83A3-9DE803851447}
{DBD0C8B0-BE4E-4CBF-AAD4-44BEA2EA830B} = {83154E24-B0DD-48E7-8BB5-55CF3D7B0FE3}
{46EC0BC1-8F51-4B4D-B967-2EE452EA68FC} = {7B573D52-181D-482F-A61C-82E543B3E958}
{D339BFC2-AF3F-46FA-899A-14BAD4BCA35B} = {A6EBC77C-9A34-4796-B4D0-E7A1E21A65A7}
{0A5F920A-1BF5-4DAC-B799-0C618B203797} = {A21BFC37-44FC-41A0-B6E7-6F949F45A635}
{1A48458D-31A4-48D3-8EB2-2C79CFE4E82C} = {A6EBC77C-9A34-4796-B4D0-E7A1E21A65A7}
{B00DC1F7-764B-4B65-9953-FA557E2EC493} = {7B573D52-181D-482F-A61C-82E543B3E958}
{3FA7B726-8AF9-4554-B41A-0BD915E4EAB5} = {64FE69B2-CE0B-4A47-83A3-9DE803851447}
{C861E6BA-852B-4BC1-ACE7-77C8D6E7898B} = {83154E24-B0DD-48E7-8BB5-55CF3D7B0FE3}
{901DA110-F30A-4515-880D-E9D59B6ECB4E} = {A21BFC37-44FC-41A0-B6E7-6F949F45A635}
{74CB429E-69D7-4525-BBDF-BBC47DBC7070} = {A6EBC77C-9A34-4796-B4D0-E7A1E21A65A7}
{A2B973C4-EA96-4B00-B2BE-04BFD9D5AA39} = {A21BFC37-44FC-41A0-B6E7-6F949F45A635}
{BC87F477-1A7A-45D0-9AC1-9F7315264732} = {A972031D-2F61-4183-AF75-99EE1A9F6B32}
{140CDAD6-6E11-4A97-94F3-B23A14391117} = {A972031D-2F61-4183-AF75-99EE1A9F6B32}
{49BF96D3-3F1B-4553-BE55-296FA7C3F659} = {5D8A9D62-C11C-45B2-8965-43DE8160B558}
{7FA125B4-E377-4D4C-AECB-17B934E3A4B3} = {49BF96D3-3F1B-4553-BE55-296FA7C3F659}
{82F93F6E-5C10-4CC7-BC65-AC0B9CA6D39A} = {49BF96D3-3F1B-4553-BE55-296FA7C3F659}
{8FCE12F2-FE7B-43D0-94E9-3B71FECAFE64} = {49BF96D3-3F1B-4553-BE55-296FA7C3F659}
{FD6D4774-71B7-4D7A-BE91-753B12C0BB4E} = {49BF96D3-3F1B-4553-BE55-296FA7C3F659}
{A7E48768-23B5-4A11-B10A-048FB21A0955} = {49BF96D3-3F1B-4553-BE55-296FA7C3F659}
{C6156B98-923A-474B-B257-29107476E93C} = {49BF96D3-3F1B-4553-BE55-296FA7C3F659}
{520F4C89-51B6-49D6-9ED7-4523048C0154} = {49BF96D3-3F1B-4553-BE55-296FA7C3F659}
{B93FC354-D59D-4650-84E4-7FCA7D51689A} = {49BF96D3-3F1B-4553-BE55-296FA7C3F659}
EndGlobalSection
GlobalSection(MonoDevelopProperties) = preSolution
StartupItem = src\NUnitFramework\tests\nunitlite.tests-2.0.csproj
{28B605B2-E2E9-417E-8369-49E263F1F31B} = {31B45C4C-206F-4F31-9CC6-33BF11DFEE39}
{FFF45826-991F-465B-8A03-0E1DB7E8F38C} = {31B45C4C-206F-4F31-9CC6-33BF11DFEE39}
{11640C9F-03A3-456B-848D-9B4A126F9506} = {31B45C4C-206F-4F31-9CC6-33BF11DFEE39}
EndGlobalSection
EndGlobal

Просмотреть файл

@ -1,66 +0,0 @@

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.framework-netcf-3.5", "src\NUnitFramework\framework\nunit.framework-netcf-3.5.csproj", "{B41DB8FB-0D2F-45CE-9345-AF469FC05EE8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.testdata-netcf-3.5", "src\NUnitFramework\testdata\nunit.testdata-netcf-3.5.csproj", "{0B7C0B55-6A49-4F32-993E-C9ED6DA0B73C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.framework.tests-netcf-3.5", "src\NUnitFramework\tests\nunit.framework.tests-netcf-3.5.csproj", "{80A9EC94-2C42-44AC-9D2C-E1418D712C48}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "mock-assembly-netcf-3.5", "src\NUnitFramework\mock-assembly\mock-assembly-netcf-3.5.csproj", "{D40A4728-2F9B-41D7-AAD9-7AD95D0032C3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "slow-nunit-tests-netcf-3.5", "src\NUnitFramework\slow-tests\slow-nunit-tests-netcf-3.5.csproj", "{48C7F514-CA22-4405-9804-AE1703B8BC3F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite.tests-netcf-3.5", "src\NUnitFramework\nunitlite.tests\nunitlite.tests-netcf-3.5.csproj", "{C99C43D5-7706-4072-9CC0-9CF52412440E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite-netcf-3.5", "src\NUnitFramework\nunitlite\nunitlite-netcf-3.5.csproj", "{FCB4F998-02D6-4D7F-A188-E0FB1F12F151}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunitlite-runner-netcf-3.5", "src\NUnitFramework\nunitlite-runner\nunitlite-runner-netcf-3.5.csproj", "{D8D5220D-E155-4A60-AB63-0DEC87A54C87}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{B41DB8FB-0D2F-45CE-9345-AF469FC05EE8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B41DB8FB-0D2F-45CE-9345-AF469FC05EE8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B41DB8FB-0D2F-45CE-9345-AF469FC05EE8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B41DB8FB-0D2F-45CE-9345-AF469FC05EE8}.Release|Any CPU.Build.0 = Release|Any CPU
{0B7C0B55-6A49-4F32-993E-C9ED6DA0B73C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0B7C0B55-6A49-4F32-993E-C9ED6DA0B73C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0B7C0B55-6A49-4F32-993E-C9ED6DA0B73C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0B7C0B55-6A49-4F32-993E-C9ED6DA0B73C}.Release|Any CPU.Build.0 = Release|Any CPU
{80A9EC94-2C42-44AC-9D2C-E1418D712C48}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{80A9EC94-2C42-44AC-9D2C-E1418D712C48}.Debug|Any CPU.Build.0 = Debug|Any CPU
{80A9EC94-2C42-44AC-9D2C-E1418D712C48}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{80A9EC94-2C42-44AC-9D2C-E1418D712C48}.Release|Any CPU.ActiveCfg = Release|Any CPU
{80A9EC94-2C42-44AC-9D2C-E1418D712C48}.Release|Any CPU.Build.0 = Release|Any CPU
{80A9EC94-2C42-44AC-9D2C-E1418D712C48}.Release|Any CPU.Deploy.0 = Release|Any CPU
{D40A4728-2F9B-41D7-AAD9-7AD95D0032C3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D40A4728-2F9B-41D7-AAD9-7AD95D0032C3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D40A4728-2F9B-41D7-AAD9-7AD95D0032C3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D40A4728-2F9B-41D7-AAD9-7AD95D0032C3}.Release|Any CPU.Build.0 = Release|Any CPU
{48C7F514-CA22-4405-9804-AE1703B8BC3F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{48C7F514-CA22-4405-9804-AE1703B8BC3F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{48C7F514-CA22-4405-9804-AE1703B8BC3F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{48C7F514-CA22-4405-9804-AE1703B8BC3F}.Release|Any CPU.Build.0 = Release|Any CPU
{C99C43D5-7706-4072-9CC0-9CF52412440E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C99C43D5-7706-4072-9CC0-9CF52412440E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C99C43D5-7706-4072-9CC0-9CF52412440E}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{C99C43D5-7706-4072-9CC0-9CF52412440E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C99C43D5-7706-4072-9CC0-9CF52412440E}.Release|Any CPU.Build.0 = Release|Any CPU
{FCB4F998-02D6-4D7F-A188-E0FB1F12F151}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FCB4F998-02D6-4D7F-A188-E0FB1F12F151}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FCB4F998-02D6-4D7F-A188-E0FB1F12F151}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FCB4F998-02D6-4D7F-A188-E0FB1F12F151}.Release|Any CPU.Build.0 = Release|Any CPU
{D8D5220D-E155-4A60-AB63-0DEC87A54C87}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D8D5220D-E155-4A60-AB63-0DEC87A54C87}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D8D5220D-E155-4A60-AB63-0DEC87A54C87}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{D8D5220D-E155-4A60-AB63-0DEC87A54C87}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D8D5220D-E155-4A60-AB63-0DEC87A54C87}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal

Просмотреть файл

@ -1,440 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{12B66B03-90F1-4992-BD33-BDF3C69AE49E}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnit.Framework</RootNamespace>
<AssemblyName>nunit.framework</AssemblyName>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>3.5</OldToolsVersion>
<UpgradeBackupLocation />
<IntermediateOutputPath>obj\$(Configuration)\net-2.0\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\net-2.0\</OutputPath>
<DefineConstants>TRACE;DEBUG;NUNIT_FRAMEWORK;NET_2_0;PARALLEL</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>$(OutputPath)\nunit.framework.xml</DocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\net-2.0\</OutputPath>
<DefineConstants>TRACE;NUNIT_FRAMEWORK;NET_2_0;PARALLEL</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>$(OutputPath)\nunit.framework.xml</DocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="ActionTargets.cs" />
<Compile Include="Api\FrameworkController.cs" />
<Compile Include="Api\FrameworkPackageSettings.cs" />
<Compile Include="Api\NUnitTestAssemblyRunner.cs" />
<Compile Include="Attributes\ApartmentAttribute.cs" />
<Compile Include="Attributes\AuthorAttribute.cs" />
<Compile Include="Attributes\CombiningStrategyAttribute.cs" />
<Compile Include="Attributes\SingleThreadedAttribute.cs" />
<Compile Include="Attributes\TestAssemblyDirectoryResolveAttribute.cs" />
<Compile Include="Attributes\OrderAttribute.cs" />
<Compile Include="Attributes\RetryAttribute.cs" />
<Compile Include="Attributes\OneTimeTearDownAttribute.cs" />
<Compile Include="Attributes\OneTimeSetUpAttribute.cs" />
<Compile Include="Attributes\LevelOfParallelismAttribute.cs" />
<Compile Include="Attributes\ParallelizableAttribute.cs" />
<Compile Include="Attributes\ParallelScope.cs" />
<Compile Include="Attributes\TestActionAttribute.cs" />
<Compile Include="Attributes\TestFixtureSourceAttribute.cs" />
<Compile Include="Attributes\TestOfAttribute.cs" />
<Compile Include="Compatibility\AttributeHelper.cs" />
<Compile Include="Compatibility\LongLivedMarshalByRefObject.cs" />
<Compile Include="Compatibility\ReaderWriterLockSlim.cs" />
<Compile Include="Compatibility\ReflectionExtensions.cs" />
<Compile Include="Compatibility\System.Collections.Concurrent\ConcurrentQueue.cs" />
<Compile Include="Compatibility\System.Collections.Concurrent\IProducerConsumerCollection.cs" />
<Compile Include="Compatibility\System.Collections\CollectionDebuggerView.cs" />
<Compile Include="Compatibility\System.Threading\LazyThreadSafetyMode.cs" />
<Compile Include="Compatibility\System.Threading\SpinWait.cs" />
<Compile Include="Compatibility\System\Lazy.cs" />
<Compile Include="Constraints\CollectionSupersetConstraint.cs" />
<Compile Include="Constraints\DictionaryContainsValueConstraint.cs" />
<Compile Include="Constraints\EqualConstraintResult.cs" />
<Compile Include="Constraints\ExceptionNotThrownConstraint.cs" />
<Compile Include="Constraints\FileExistsConstraint.cs" />
<Compile Include="Constraints\FileOrDirectoryExistsConstraint.cs" />
<Compile Include="Constraints\IConstraint.cs" />
<Compile Include="Constraints\Operators\AllOperator.cs" />
<Compile Include="Constraints\Operators\NoneOperator.cs" />
<Compile Include="Constraints\Operators\SomeOperator.cs" />
<Compile Include="Constraints\SubPathConstraint.cs" />
<Compile Include="Constraints\ThrowsExceptionConstraint.cs" />
<Compile Include="Assert.Exceptions.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.Equality.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.Exceptions.Async.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.Types.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.That.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.Comparisons.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.Conditions.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Env.cs" />
<Compile Include="Guard.cs" />
<Compile Include="Interfaces\IDisposableFixture.cs" />
<Compile Include="Interfaces\IMethodInfo.cs" />
<Compile Include="Interfaces\IParameterInfo.cs" />
<Compile Include="Interfaces\IReflectionInfo.cs" />
<Compile Include="Interfaces\ITypeInfo.cs" />
<Compile Include="Internal\AssemblyHelper.cs" />
<Compile Include="Internal\Builders\ParameterDataProvider.cs" />
<Compile Include="Interfaces\TestOutput.cs" />
<Compile Include="Internal\Execution\EventListenerTextWriter.cs" />
<Compile Include="Internal\Filters\CompositeFilter.cs" />
<Compile Include="Internal\Filters\PropertyFilter.cs" />
<Compile Include="Internal\Filters\TestNameFilter.cs" />
<Compile Include="Internal\Filters\ClassNameFilter.cs" />
<Compile Include="Internal\Filters\MethodNameFilter.cs" />
<Compile Include="Internal\Logging\ILogger.cs" />
<Compile Include="Internal\Logging\InternalTrace.cs" />
<Compile Include="Internal\Logging\InternalTraceLevel.cs" />
<Compile Include="Internal\Logging\InternalTraceWriter.cs" />
<Compile Include="Internal\Logging\Logger.cs" />
<Compile Include="Internal\MethodWrapper.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="Internal\ParameterWrapper.cs" />
<Compile Include="Internal\TestNameGenerator.cs" />
<Compile Include="Internal\TypeWrapper.cs" />
<Compile Include="TestFixtureData.cs" />
<Compile Include="DirectoryAssert.cs" />
<Compile Include="Does.cs" />
<Compile Include="Exceptions\ResultStateException.cs" />
<Compile Include="Interfaces\ICombiningStrategy.cs" />
<Compile Include="Interfaces\ISimpleTestBuilder.cs" />
<Compile Include="Interfaces\ITestBuilder.cs" />
<Compile Include="Interfaces\IParameterDataProvider.cs" />
<Compile Include="Interfaces\IParameterDataSource.cs" />
<Compile Include="Interfaces\IPropertyBag.cs" />
<Compile Include="Interfaces\ITest.cs" />
<Compile Include="Api\ITestAssemblyBuilder.cs" />
<Compile Include="Api\ITestAssemblyRunner.cs" />
<Compile Include="Interfaces\ITestData.cs" />
<Compile Include="Interfaces\ITestFixtureData.cs" />
<Compile Include="Interfaces\ITestCaseData.cs" />
<Compile Include="Interfaces\ITestFilter.cs" />
<Compile Include="Interfaces\ITestListener.cs" />
<Compile Include="Interfaces\ITestResult.cs" />
<Compile Include="Internal\ActionsHelper.cs" />
<Compile Include="Internal\AsyncInvocationRegion.cs" />
<Compile Include="Internal\Commands\SetUpTearDownItem.cs" />
<Compile Include="Internal\Commands\TestActionCommand.cs" />
<Compile Include="Internal\Commands\TestActionItem.cs" />
<Compile Include="Internal\Execution\CommandBuilder.cs" />
<Compile Include="Internal\Execution\IWorkItemDispatcher.cs" />
<Compile Include="Interfaces\IXmlNodeBuilder.cs" />
<Compile Include="Interfaces\ResultState.cs" />
<Compile Include="Interfaces\RunState.cs" />
<Compile Include="Interfaces\TestStatus.cs" />
<Compile Include="Interfaces\TNode.cs" />
<Compile Include="Internal\Builders\DefaultSuiteBuilder.cs" />
<Compile Include="Internal\Builders\NUnitTestCaseBuilder.cs" />
<Compile Include="Internal\Execution\SimpleWorkItemDispatcher.cs" />
<Compile Include="Internal\Execution\TextCapture.cs" />
<Compile Include="Internal\Execution\WorkShift.cs" />
<Compile Include="Internal\Filters\IdFilter.cs" />
<Compile Include="Internal\Filters\ValueMatchFilter.cs" />
<Compile Include="Interfaces\IFixtureBuilder.cs" />
<Compile Include="Interfaces\IImplyFixture.cs" />
<Compile Include="Internal\Builders\NamespaceTreeBuilder.cs" />
<Compile Include="Internal\Commands\ApplyChangesToContextCommand.cs" />
<Compile Include="Internal\Commands\DelegatingTestCommand.cs" />
<Compile Include="Internal\Commands\MaxTimeCommand.cs" />
<Compile Include="Internal\Commands\OneTimeSetUpCommand.cs" />
<Compile Include="Internal\Commands\OneTimeTearDownCommand.cs" />
<Compile Include="Internal\Commands\SetUpTearDownCommand.cs" />
<Compile Include="Internal\Commands\SkipCommand.cs" />
<Compile Include="Internal\Commands\TestCommand.cs" />
<Compile Include="Internal\Commands\TestMethodCommand.cs" />
<Compile Include="Internal\Commands\TheoryResultCommand.cs" />
<Compile Include="Internal\Execution\CompositeWorkItem.cs" />
<Compile Include="Internal\Execution\CountdownEvent.cs" />
<Compile Include="Internal\Execution\EventPump.cs" />
<Compile Include="Internal\Execution\EventQueue.cs" />
<Compile Include="Internal\Execution\QueuingEventListener.cs" />
<Compile Include="Internal\Execution\SimpleWorkItem.cs" />
<Compile Include="Internal\Execution\TestWorker.cs" />
<Compile Include="Internal\Execution\TextMessageWriter.cs" />
<Compile Include="Internal\Execution\WorkItem.cs" />
<Compile Include="Internal\Execution\ParallelWorkItemDispatcher.cs" />
<Compile Include="Internal\Execution\WorkItemQueue.cs" />
<Compile Include="Internal\Execution\WorkItemState.cs" />
<Compile Include="Interfaces\IApplyToContext.cs" />
<Compile Include="Interfaces\IApplyToTest.cs" />
<Compile Include="Internal\GenericMethodHelper.cs" />
<Compile Include="Internal\InvalidDataSourceException.cs" />
<Compile Include="Internal\NetCFExtensions.cs" />
<Compile Include="Internal\Randomizer.cs" />
<Compile Include="Internal\StackFilter.cs" />
<Compile Include="Internal\StringUtil.cs" />
<Compile Include="Internal\TestFixtureParameters.cs" />
<Compile Include="Internal\TestParameters.cs" />
<Compile Include="Internal\TestExecutionStatus.cs" />
<Compile Include="ITestAction.cs" />
<Compile Include="Internal\PropertyNames.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Assert.cs" />
<Compile Include="AssertionHelper.cs" />
<Compile Include="Assume.cs" />
<Compile Include="Attributes\CategoryAttribute.cs" />
<Compile Include="Attributes\CombinatorialAttribute.cs" />
<Compile Include="Attributes\CultureAttribute.cs" />
<Compile Include="Attributes\DataAttribute.cs" />
<Compile Include="Attributes\DatapointAttribute.cs" />
<Compile Include="Attributes\DatapointsAttribute.cs" />
<Compile Include="Attributes\DatapointSourceAttribute.cs" />
<Compile Include="Attributes\DescriptionAttribute.cs" />
<Compile Include="Attributes\ExplicitAttribute.cs" />
<Compile Include="Attributes\IgnoreAttribute.cs" />
<Compile Include="Attributes\IncludeExcludeAttribute.cs" />
<Compile Include="Attributes\MaxTimeAttribute.cs" />
<Compile Include="Attributes\NUnitAttribute.cs" />
<Compile Include="Attributes\PairwiseAttribute.cs" />
<Compile Include="Attributes\PlatformAttribute.cs" />
<Compile Include="Attributes\PropertyAttribute.cs" />
<Compile Include="Attributes\RandomAttribute.cs" />
<Compile Include="Attributes\RangeAttribute.cs" />
<Compile Include="Attributes\RepeatAttribute.cs" />
<Compile Include="Attributes\RequiresMTAAtribute.cs" />
<Compile Include="Attributes\RequiresSTAAttribute.cs" />
<Compile Include="Attributes\RequiresThreadAttribute.cs" />
<Compile Include="Attributes\SequentialAttribute.cs" />
<Compile Include="Attributes\SetCultureAttribute.cs" />
<Compile Include="Attributes\SetUICultureAttribute.cs" />
<Compile Include="Attributes\SetUpAttribute.cs" />
<Compile Include="Attributes\SetUpFixtureAttribute.cs" />
<Compile Include="Attributes\TearDownAttribute.cs" />
<Compile Include="Attributes\TestAttribute.cs" />
<Compile Include="Attributes\TestCaseAttribute.cs" />
<Compile Include="Attributes\TestCaseSourceAttribute.cs" />
<Compile Include="Attributes\TestFixtureAttribute.cs" />
<Compile Include="Attributes\TestFixtureSetUpAttribute.cs" />
<Compile Include="Attributes\TestFixtureTearDownAttribute.cs" />
<Compile Include="Attributes\TheoryAttribute.cs" />
<Compile Include="Attributes\TimeoutAttribute.cs" />
<Compile Include="Attributes\ValuesAttribute.cs" />
<Compile Include="Attributes\ValueSourceAttribute.cs" />
<Compile Include="CollectionAssert.cs" />
<Compile Include="Constraints\AllItemsConstraint.cs" />
<Compile Include="Constraints\AndConstraint.cs" />
<Compile Include="Constraints\AssignableFromConstraint.cs" />
<Compile Include="Constraints\AssignableToConstraint.cs" />
<Compile Include="Constraints\AttributeConstraint.cs" />
<Compile Include="Constraints\AttributeExistsConstraint.cs" />
<Compile Include="Constraints\BinaryConstraint.cs" />
<Compile Include="Constraints\BinarySerializableConstraint.cs" />
<Compile Include="Constraints\CollectionConstraint.cs" />
<Compile Include="Constraints\CollectionContainsConstraint.cs" />
<Compile Include="Constraints\CollectionEquivalentConstraint.cs" />
<Compile Include="Constraints\CollectionItemsEqualConstraint.cs" />
<Compile Include="Constraints\CollectionOrderedConstraint.cs" />
<Compile Include="Constraints\CollectionSubsetConstraint.cs" />
<Compile Include="Constraints\CollectionTally.cs" />
<Compile Include="Constraints\ComparisonAdapter.cs" />
<Compile Include="Constraints\ComparisonConstraint.cs" />
<Compile Include="Constraints\Constraint.cs" />
<Compile Include="Constraints\ConstraintBuilder.cs" />
<Compile Include="Constraints\ConstraintExpression.cs" />
<Compile Include="Constraints\ConstraintFactory.cs" />
<Compile Include="Constraints\ContainsConstraint.cs" />
<Compile Include="Constraints\DelayedConstraint.cs" />
<Compile Include="Constraints\DictionaryContainsKeyConstraint.cs" />
<Compile Include="Constraints\EmptyCollectionConstraint.cs" />
<Compile Include="Constraints\EmptyConstraint.cs" />
<Compile Include="Constraints\EmptyDirectoryConstraint.cs" />
<Compile Include="Constraints\EmptyStringConstraint.cs" />
<Compile Include="Constraints\EndsWithConstraint.cs" />
<Compile Include="Constraints\EqualConstraint.cs" />
<Compile Include="Constraints\EqualityAdapter.cs" />
<Compile Include="Constraints\ExactTypeConstraint.cs" />
<Compile Include="Constraints\FalseConstraint.cs" />
<Compile Include="Constraints\FloatingPointNumerics.cs" />
<Compile Include="Constraints\GreaterThanConstraint.cs" />
<Compile Include="Constraints\GreaterThanOrEqualConstraint.cs" />
<Compile Include="Constraints\ConstraintResult.cs" />
<Compile Include="Constraints\InstanceOfTypeConstraint.cs" />
<Compile Include="Constraints\IResolveConstraint.cs" />
<Compile Include="Constraints\LessThanConstraint.cs" />
<Compile Include="Constraints\LessThanOrEqualConstraint.cs" />
<Compile Include="Constraints\MessageWriter.cs" />
<Compile Include="Constraints\MsgUtils.cs" />
<Compile Include="Constraints\NaNConstraint.cs" />
<Compile Include="Constraints\NoItemConstraint.cs" />
<Compile Include="Constraints\NotConstraint.cs" />
<Compile Include="Constraints\NullConstraint.cs" />
<Compile Include="Constraints\Numerics.cs" />
<Compile Include="Constraints\NUnitComparer.cs" />
<Compile Include="Constraints\NUnitEqualityComparer.cs" />
<Compile Include="Constraints\Operators\AndOperator.cs" />
<Compile Include="Constraints\Operators\AttributeOperator.cs" />
<Compile Include="Constraints\Operators\BinaryOperator.cs" />
<Compile Include="Constraints\Operators\CollectionOperator.cs" />
<Compile Include="Constraints\Operators\ConstraintOperator.cs" />
<Compile Include="Constraints\Operators\NotOperator.cs" />
<Compile Include="Constraints\Operators\OrOperator.cs" />
<Compile Include="Constraints\Operators\PrefixOperator.cs" />
<Compile Include="Constraints\Operators\PropOperator.cs" />
<Compile Include="Constraints\Operators\SelfResolvingOperator.cs" />
<Compile Include="Constraints\Operators\ThrowsOperator.cs" />
<Compile Include="Constraints\Operators\WithOperator.cs" />
<Compile Include="Constraints\OrConstraint.cs" />
<Compile Include="Constraints\PathConstraint.cs" />
<Compile Include="Constraints\PredicateConstraint.cs" />
<Compile Include="Constraints\PrefixConstraint.cs" />
<Compile Include="Constraints\PropertyConstraint.cs" />
<Compile Include="Constraints\PropertyExistsConstraint.cs" />
<Compile Include="Constraints\RangeConstraint.cs" />
<Compile Include="Constraints\RegexConstraint.cs" />
<Compile Include="Constraints\ResolvableConstraintExpression.cs" />
<Compile Include="Constraints\ReusableConstraint.cs" />
<Compile Include="Constraints\SameAsConstraint.cs" />
<Compile Include="Constraints\SamePathConstraint.cs" />
<Compile Include="Constraints\SamePathOrUnderConstraint.cs" />
<Compile Include="Constraints\SomeItemsConstraint.cs" />
<Compile Include="Constraints\StartsWithConstraint.cs" />
<Compile Include="Constraints\StringConstraint.cs" />
<Compile Include="Constraints\SubstringConstraint.cs" />
<Compile Include="Constraints\ThrowsConstraint.cs" />
<Compile Include="Constraints\ThrowsNothingConstraint.cs" />
<Compile Include="Constraints\Tolerance.cs" />
<Compile Include="Constraints\ToleranceMode.cs" />
<Compile Include="Constraints\TrueConstraint.cs" />
<Compile Include="Constraints\TypeConstraint.cs" />
<Compile Include="Constraints\UniqueItemsConstraint.cs" />
<Compile Include="Constraints\XmlSerializableConstraint.cs" />
<Compile Include="Contains.cs" />
<Compile Include="Exceptions\AssertionException.cs" />
<Compile Include="Exceptions\IgnoreException.cs" />
<Compile Include="Exceptions\InconclusiveException.cs" />
<Compile Include="Exceptions\SuccessException.cs" />
<Compile Include="Interfaces\ISuiteBuilder.cs" />
<Compile Include="Interfaces\ITestCaseBuilder.cs" />
<Compile Include="FileAssert.cs" />
<Compile Include="GlobalSettings.cs" />
<Compile Include="Has.cs" />
<Compile Include="Internal\Builders\CombinatorialStrategy.cs" />
<Compile Include="Internal\Builders\DatapointProvider.cs" />
<Compile Include="Internal\Builders\DefaultTestCaseBuilder.cs" />
<Compile Include="Internal\Builders\NUnitTestFixtureBuilder.cs" />
<Compile Include="Internal\Builders\PairwiseStrategy.cs" />
<Compile Include="Internal\Builders\ParameterDataSourceProvider.cs" />
<Compile Include="Internal\Builders\ProviderCache.cs" />
<Compile Include="Internal\Builders\SequentialStrategy.cs" />
<Compile Include="Internal\Commands\CommandStage.cs" />
<Compile Include="Interfaces\ICommandWrapper.cs" />
<Compile Include="Internal\CultureDetector.cs" />
<Compile Include="Api\DefaultTestAssemblyBuilder.cs" />
<Compile Include="Internal\ExceptionHelper.cs" />
<Compile Include="Internal\Filters\AndFilter.cs" />
<Compile Include="Internal\Filters\CategoryFilter.cs" />
<Compile Include="Internal\Filters\NotFilter.cs" />
<Compile Include="Internal\Filters\OrFilter.cs" />
<Compile Include="Internal\Filters\FullNameFilter.cs" />
<Compile Include="Internal\InvalidTestFixtureException.cs" />
<Compile Include="Internal\NUnitException.cs" />
<Compile Include="Internal\OSPlatform.cs" />
<Compile Include="Internal\TestCaseParameters.cs" />
<Compile Include="Internal\PlatformHelper.cs" />
<Compile Include="Internal\PropertyBag.cs" />
<Compile Include="Internal\Reflect.cs" />
<Compile Include="Internal\Results\TestResult.cs" />
<Compile Include="Internal\RuntimeFramework.cs" />
<Compile Include="Internal\TestExecutionContext.cs" />
<Compile Include="Internal\TestFilter.cs" />
<Compile Include="Internal\TestListener.cs" />
<Compile Include="Internal\TestProgressReporter.cs" />
<Compile Include="Internal\Tests\ParameterizedFixtureSuite.cs" />
<Compile Include="Internal\Tests\ParameterizedMethodSuite.cs" />
<Compile Include="Internal\Tests\SetUpFixture.cs" />
<Compile Include="Internal\Tests\Test.cs" />
<Compile Include="Internal\Tests\TestAssembly.cs" />
<Compile Include="Internal\Tests\TestFixture.cs" />
<Compile Include="Internal\Tests\TestMethod.cs" />
<Compile Include="Internal\Tests\TestSuite.cs" />
<Compile Include="Internal\ThreadUtility.cs" />
<Compile Include="Internal\TypeHelper.cs" />
<Compile Include="Is.cs" />
<Compile Include="Iz.cs" />
<Compile Include="List.cs" />
<Compile Include="ListMapper.cs" />
<Compile Include="SpecialValue.cs" />
<Compile Include="StringAssert.cs" />
<Compile Include="TestCaseData.cs" />
<Compile Include="TestContext.cs" />
<Compile Include="TestParameters.cs" />
<Compile Include="Throws.cs" />
<Compile Include="Internal\Results\TestCaseResult.cs" />
<Compile Include="Internal\Results\TestSuiteResult.cs" />
<Compile Include="Constraints\ExactCountConstraint.cs" />
<Compile Include="Constraints\Operators\ExactCountOperator.cs" />
<Compile Include="Constraints\ExceptionTypeConstraint.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="NUnit.System.Linq, Version=0.6.0.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
<HintPath>..\..\..\packages\NUnit.System.Linq.0.6.0\lib\net20\NUnit.System.Linq.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Configuration" />
<Reference Include="System.Web" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Content Include="Attributes\AttributeHierarchy.txt" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
<None Include="packages.config" />
</ItemGroup>
</Project>

Просмотреть файл

@ -1,434 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{7FA125B4-E377-4D4C-AECB-17B934E3A4B3}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnit.Framework</RootNamespace>
<AssemblyName>nunit.framework</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>3.5</OldToolsVersion>
<UpgradeBackupLocation />
<IntermediateOutputPath>obj\$(Configuration)\net-3.5\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\net-3.5\</OutputPath>
<DefineConstants>TRACE;DEBUG;NUNIT_FRAMEWORK;NET_3_5;PARALLEL</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>$(OutputPath)\nunit.framework.xml</DocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\net-3.5\</OutputPath>
<DefineConstants>TRACE;NUNIT_FRAMEWORK;NET_3_5;PARALLEL</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>$(OutputPath)\nunit.framework.xml</DocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="ActionTargets.cs" />
<Compile Include="Api\FrameworkController.cs" />
<Compile Include="Api\FrameworkPackageSettings.cs" />
<Compile Include="Api\NUnitTestAssemblyRunner.cs" />
<Compile Include="Attributes\ApartmentAttribute.cs" />
<Compile Include="Attributes\AuthorAttribute.cs" />
<Compile Include="Attributes\CombiningStrategyAttribute.cs" />
<Compile Include="Attributes\SingleThreadedAttribute.cs" />
<Compile Include="Attributes\TestAssemblyDirectoryResolveAttribute.cs" />
<Compile Include="Attributes\OrderAttribute.cs" />
<Compile Include="Attributes\RetryAttribute.cs" />
<Compile Include="Attributes\OneTimeTearDownAttribute.cs" />
<Compile Include="Attributes\OneTimeSetUpAttribute.cs" />
<Compile Include="Attributes\LevelOfParallelismAttribute.cs" />
<Compile Include="Attributes\ParallelizableAttribute.cs" />
<Compile Include="Attributes\ParallelScope.cs" />
<Compile Include="Attributes\TestActionAttribute.cs" />
<Compile Include="Attributes\TestFixtureSourceAttribute.cs" />
<Compile Include="Attributes\TestOfAttribute.cs" />
<Compile Include="Compatibility\AttributeHelper.cs" />
<Compile Include="Compatibility\LongLivedMarshalByRefObject.cs" />
<Compile Include="Compatibility\ReflectionExtensions.cs" />
<Compile Include="Compatibility\System.Collections.Concurrent\ConcurrentQueue.cs" />
<Compile Include="Compatibility\System.Collections.Concurrent\IProducerConsumerCollection.cs" />
<Compile Include="Compatibility\System.Collections\CollectionDebuggerView.cs" />
<Compile Include="Compatibility\System.Threading\LazyThreadSafetyMode.cs" />
<Compile Include="Compatibility\System.Threading\SpinWait.cs" />
<Compile Include="Compatibility\System\Lazy.cs" />
<Compile Include="Constraints\CollectionSupersetConstraint.cs" />
<Compile Include="Constraints\DictionaryContainsValueConstraint.cs" />
<Compile Include="Constraints\EqualConstraintResult.cs" />
<Compile Include="Constraints\ExceptionNotThrownConstraint.cs" />
<Compile Include="Constraints\FileExistsConstraint.cs" />
<Compile Include="Constraints\FileOrDirectoryExistsConstraint.cs" />
<Compile Include="Constraints\IConstraint.cs" />
<Compile Include="Constraints\Operators\AllOperator.cs" />
<Compile Include="Constraints\Operators\NoneOperator.cs" />
<Compile Include="Constraints\Operators\SomeOperator.cs" />
<Compile Include="Constraints\SubPathConstraint.cs" />
<Compile Include="Constraints\ThrowsExceptionConstraint.cs" />
<Compile Include="Assert.Exceptions.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.Equality.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.Exceptions.Async.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.Types.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.That.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.Comparisons.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.Conditions.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Env.cs" />
<Compile Include="Guard.cs" />
<Compile Include="Interfaces\IDisposableFixture.cs" />
<Compile Include="Interfaces\IMethodInfo.cs" />
<Compile Include="Interfaces\IParameterInfo.cs" />
<Compile Include="Interfaces\IReflectionInfo.cs" />
<Compile Include="Interfaces\ITypeInfo.cs" />
<Compile Include="Interfaces\TestOutput.cs" />
<Compile Include="Internal\AssemblyHelper.cs" />
<Compile Include="Internal\Builders\ParameterDataProvider.cs" />
<Compile Include="Internal\Execution\EventListenerTextWriter.cs" />
<Compile Include="Internal\Filters\CompositeFilter.cs" />
<Compile Include="Internal\Filters\PropertyFilter.cs" />
<Compile Include="Internal\Filters\TestNameFilter.cs" />
<Compile Include="Internal\Filters\ClassNameFilter.cs" />
<Compile Include="Internal\Filters\MethodNameFilter.cs" />
<Compile Include="Internal\Logging\ILogger.cs" />
<Compile Include="Internal\Logging\InternalTrace.cs" />
<Compile Include="Internal\Logging\InternalTraceLevel.cs" />
<Compile Include="Internal\Logging\InternalTraceWriter.cs" />
<Compile Include="Internal\Logging\Logger.cs" />
<Compile Include="Internal\MethodWrapper.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="Internal\ParameterWrapper.cs" />
<Compile Include="Internal\TestNameGenerator.cs" />
<Compile Include="Internal\TypeWrapper.cs" />
<Compile Include="TestFixtureData.cs" />
<Compile Include="DirectoryAssert.cs" />
<Compile Include="Does.cs" />
<Compile Include="Exceptions\ResultStateException.cs" />
<Compile Include="Interfaces\ICombiningStrategy.cs" />
<Compile Include="Interfaces\ISimpleTestBuilder.cs" />
<Compile Include="Interfaces\ITestBuilder.cs" />
<Compile Include="Interfaces\IParameterDataProvider.cs" />
<Compile Include="Interfaces\IParameterDataSource.cs" />
<Compile Include="Interfaces\IPropertyBag.cs" />
<Compile Include="Interfaces\ITest.cs" />
<Compile Include="Api\ITestAssemblyBuilder.cs" />
<Compile Include="Api\ITestAssemblyRunner.cs" />
<Compile Include="Interfaces\ITestData.cs" />
<Compile Include="Interfaces\ITestFixtureData.cs" />
<Compile Include="Interfaces\ITestCaseData.cs" />
<Compile Include="Interfaces\ITestFilter.cs" />
<Compile Include="Interfaces\ITestListener.cs" />
<Compile Include="Interfaces\ITestResult.cs" />
<Compile Include="Internal\ActionsHelper.cs" />
<Compile Include="Internal\AsyncInvocationRegion.cs" />
<Compile Include="Internal\Commands\SetUpTearDownItem.cs" />
<Compile Include="Internal\Commands\TestActionCommand.cs" />
<Compile Include="Internal\Commands\TestActionItem.cs" />
<Compile Include="Internal\Execution\CommandBuilder.cs" />
<Compile Include="Internal\Execution\IWorkItemDispatcher.cs" />
<Compile Include="Interfaces\IXmlNodeBuilder.cs" />
<Compile Include="Interfaces\ResultState.cs" />
<Compile Include="Interfaces\RunState.cs" />
<Compile Include="Interfaces\TestStatus.cs" />
<Compile Include="Interfaces\TNode.cs" />
<Compile Include="Internal\Builders\DefaultSuiteBuilder.cs" />
<Compile Include="Internal\Builders\NUnitTestCaseBuilder.cs" />
<Compile Include="Internal\Execution\SimpleWorkItemDispatcher.cs" />
<Compile Include="Internal\Execution\TextCapture.cs" />
<Compile Include="Internal\Execution\WorkShift.cs" />
<Compile Include="Internal\Filters\IdFilter.cs" />
<Compile Include="Internal\Filters\ValueMatchFilter.cs" />
<Compile Include="Interfaces\IFixtureBuilder.cs" />
<Compile Include="Interfaces\IImplyFixture.cs" />
<Compile Include="Internal\Builders\NamespaceTreeBuilder.cs" />
<Compile Include="Internal\Commands\ApplyChangesToContextCommand.cs" />
<Compile Include="Internal\Commands\DelegatingTestCommand.cs" />
<Compile Include="Internal\Commands\MaxTimeCommand.cs" />
<Compile Include="Internal\Commands\OneTimeSetUpCommand.cs" />
<Compile Include="Internal\Commands\OneTimeTearDownCommand.cs" />
<Compile Include="Internal\Commands\SetUpTearDownCommand.cs" />
<Compile Include="Internal\Commands\SkipCommand.cs" />
<Compile Include="Internal\Commands\TestCommand.cs" />
<Compile Include="Internal\Commands\TestMethodCommand.cs" />
<Compile Include="Internal\Commands\TheoryResultCommand.cs" />
<Compile Include="Internal\Execution\CompositeWorkItem.cs" />
<Compile Include="Internal\Execution\CountdownEvent.cs" />
<Compile Include="Internal\Execution\EventPump.cs" />
<Compile Include="Internal\Execution\EventQueue.cs" />
<Compile Include="Internal\Execution\QueuingEventListener.cs" />
<Compile Include="Internal\Execution\SimpleWorkItem.cs" />
<Compile Include="Internal\Execution\TestWorker.cs" />
<Compile Include="Internal\Execution\TextMessageWriter.cs" />
<Compile Include="Internal\Execution\WorkItem.cs" />
<Compile Include="Internal\Execution\ParallelWorkItemDispatcher.cs" />
<Compile Include="Internal\Execution\WorkItemQueue.cs" />
<Compile Include="Internal\Execution\WorkItemState.cs" />
<Compile Include="Interfaces\IApplyToContext.cs" />
<Compile Include="Interfaces\IApplyToTest.cs" />
<Compile Include="Internal\GenericMethodHelper.cs" />
<Compile Include="Internal\InvalidDataSourceException.cs" />
<Compile Include="Internal\NetCFExtensions.cs" />
<Compile Include="Internal\Randomizer.cs" />
<Compile Include="Internal\StackFilter.cs" />
<Compile Include="Internal\StringUtil.cs" />
<Compile Include="Internal\TestFixtureParameters.cs" />
<Compile Include="Internal\TestParameters.cs" />
<Compile Include="Internal\TestExecutionStatus.cs" />
<Compile Include="ITestAction.cs" />
<Compile Include="Internal\PropertyNames.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Assert.cs" />
<Compile Include="AssertionHelper.cs" />
<Compile Include="Assume.cs" />
<Compile Include="Attributes\CategoryAttribute.cs" />
<Compile Include="Attributes\CombinatorialAttribute.cs" />
<Compile Include="Attributes\CultureAttribute.cs" />
<Compile Include="Attributes\DataAttribute.cs" />
<Compile Include="Attributes\DatapointAttribute.cs" />
<Compile Include="Attributes\DatapointsAttribute.cs" />
<Compile Include="Attributes\DatapointSourceAttribute.cs" />
<Compile Include="Attributes\DescriptionAttribute.cs" />
<Compile Include="Attributes\ExplicitAttribute.cs" />
<Compile Include="Attributes\IgnoreAttribute.cs" />
<Compile Include="Attributes\IncludeExcludeAttribute.cs" />
<Compile Include="Attributes\MaxTimeAttribute.cs" />
<Compile Include="Attributes\NUnitAttribute.cs" />
<Compile Include="Attributes\PairwiseAttribute.cs" />
<Compile Include="Attributes\PlatformAttribute.cs" />
<Compile Include="Attributes\PropertyAttribute.cs" />
<Compile Include="Attributes\RandomAttribute.cs" />
<Compile Include="Attributes\RangeAttribute.cs" />
<Compile Include="Attributes\RepeatAttribute.cs" />
<Compile Include="Attributes\RequiresMTAAtribute.cs" />
<Compile Include="Attributes\RequiresSTAAttribute.cs" />
<Compile Include="Attributes\RequiresThreadAttribute.cs" />
<Compile Include="Attributes\SequentialAttribute.cs" />
<Compile Include="Attributes\SetCultureAttribute.cs" />
<Compile Include="Attributes\SetUICultureAttribute.cs" />
<Compile Include="Attributes\SetUpAttribute.cs" />
<Compile Include="Attributes\SetUpFixtureAttribute.cs" />
<Compile Include="Attributes\TearDownAttribute.cs" />
<Compile Include="Attributes\TestAttribute.cs" />
<Compile Include="Attributes\TestCaseAttribute.cs" />
<Compile Include="Attributes\TestCaseSourceAttribute.cs" />
<Compile Include="Attributes\TestFixtureAttribute.cs" />
<Compile Include="Attributes\TestFixtureSetUpAttribute.cs" />
<Compile Include="Attributes\TestFixtureTearDownAttribute.cs" />
<Compile Include="Attributes\TheoryAttribute.cs" />
<Compile Include="Attributes\TimeoutAttribute.cs" />
<Compile Include="Attributes\ValuesAttribute.cs" />
<Compile Include="Attributes\ValueSourceAttribute.cs" />
<Compile Include="CollectionAssert.cs" />
<Compile Include="Constraints\AllItemsConstraint.cs" />
<Compile Include="Constraints\AndConstraint.cs" />
<Compile Include="Constraints\AssignableFromConstraint.cs" />
<Compile Include="Constraints\AssignableToConstraint.cs" />
<Compile Include="Constraints\AttributeConstraint.cs" />
<Compile Include="Constraints\AttributeExistsConstraint.cs" />
<Compile Include="Constraints\BinaryConstraint.cs" />
<Compile Include="Constraints\BinarySerializableConstraint.cs" />
<Compile Include="Constraints\CollectionConstraint.cs" />
<Compile Include="Constraints\CollectionContainsConstraint.cs" />
<Compile Include="Constraints\CollectionEquivalentConstraint.cs" />
<Compile Include="Constraints\CollectionItemsEqualConstraint.cs" />
<Compile Include="Constraints\CollectionOrderedConstraint.cs" />
<Compile Include="Constraints\CollectionSubsetConstraint.cs" />
<Compile Include="Constraints\CollectionTally.cs" />
<Compile Include="Constraints\ComparisonAdapter.cs" />
<Compile Include="Constraints\ComparisonConstraint.cs" />
<Compile Include="Constraints\Constraint.cs" />
<Compile Include="Constraints\ConstraintBuilder.cs" />
<Compile Include="Constraints\ConstraintExpression.cs" />
<Compile Include="Constraints\ConstraintFactory.cs" />
<Compile Include="Constraints\ContainsConstraint.cs" />
<Compile Include="Constraints\DelayedConstraint.cs" />
<Compile Include="Constraints\DictionaryContainsKeyConstraint.cs" />
<Compile Include="Constraints\EmptyCollectionConstraint.cs" />
<Compile Include="Constraints\EmptyConstraint.cs" />
<Compile Include="Constraints\EmptyDirectoryConstraint.cs" />
<Compile Include="Constraints\EmptyStringConstraint.cs" />
<Compile Include="Constraints\EndsWithConstraint.cs" />
<Compile Include="Constraints\EqualConstraint.cs" />
<Compile Include="Constraints\EqualityAdapter.cs" />
<Compile Include="Constraints\ExactTypeConstraint.cs" />
<Compile Include="Constraints\FalseConstraint.cs" />
<Compile Include="Constraints\FloatingPointNumerics.cs" />
<Compile Include="Constraints\GreaterThanConstraint.cs" />
<Compile Include="Constraints\GreaterThanOrEqualConstraint.cs" />
<Compile Include="Constraints\ConstraintResult.cs" />
<Compile Include="Constraints\InstanceOfTypeConstraint.cs" />
<Compile Include="Constraints\IResolveConstraint.cs" />
<Compile Include="Constraints\LessThanConstraint.cs" />
<Compile Include="Constraints\LessThanOrEqualConstraint.cs" />
<Compile Include="Constraints\MessageWriter.cs" />
<Compile Include="Constraints\MsgUtils.cs" />
<Compile Include="Constraints\NaNConstraint.cs" />
<Compile Include="Constraints\NoItemConstraint.cs" />
<Compile Include="Constraints\NotConstraint.cs" />
<Compile Include="Constraints\NullConstraint.cs" />
<Compile Include="Constraints\Numerics.cs" />
<Compile Include="Constraints\NUnitComparer.cs" />
<Compile Include="Constraints\NUnitEqualityComparer.cs" />
<Compile Include="Constraints\Operators\AndOperator.cs" />
<Compile Include="Constraints\Operators\AttributeOperator.cs" />
<Compile Include="Constraints\Operators\BinaryOperator.cs" />
<Compile Include="Constraints\Operators\CollectionOperator.cs" />
<Compile Include="Constraints\Operators\ConstraintOperator.cs" />
<Compile Include="Constraints\Operators\NotOperator.cs" />
<Compile Include="Constraints\Operators\OrOperator.cs" />
<Compile Include="Constraints\Operators\PrefixOperator.cs" />
<Compile Include="Constraints\Operators\PropOperator.cs" />
<Compile Include="Constraints\Operators\SelfResolvingOperator.cs" />
<Compile Include="Constraints\Operators\ThrowsOperator.cs" />
<Compile Include="Constraints\Operators\WithOperator.cs" />
<Compile Include="Constraints\OrConstraint.cs" />
<Compile Include="Constraints\PathConstraint.cs" />
<Compile Include="Constraints\PredicateConstraint.cs" />
<Compile Include="Constraints\PrefixConstraint.cs" />
<Compile Include="Constraints\PropertyConstraint.cs" />
<Compile Include="Constraints\PropertyExistsConstraint.cs" />
<Compile Include="Constraints\RangeConstraint.cs" />
<Compile Include="Constraints\RegexConstraint.cs" />
<Compile Include="Constraints\ResolvableConstraintExpression.cs" />
<Compile Include="Constraints\ReusableConstraint.cs" />
<Compile Include="Constraints\SameAsConstraint.cs" />
<Compile Include="Constraints\SamePathConstraint.cs" />
<Compile Include="Constraints\SamePathOrUnderConstraint.cs" />
<Compile Include="Constraints\SomeItemsConstraint.cs" />
<Compile Include="Constraints\StartsWithConstraint.cs" />
<Compile Include="Constraints\StringConstraint.cs" />
<Compile Include="Constraints\SubstringConstraint.cs" />
<Compile Include="Constraints\ThrowsConstraint.cs" />
<Compile Include="Constraints\ThrowsNothingConstraint.cs" />
<Compile Include="Constraints\Tolerance.cs" />
<Compile Include="Constraints\ToleranceMode.cs" />
<Compile Include="Constraints\TrueConstraint.cs" />
<Compile Include="Constraints\TypeConstraint.cs" />
<Compile Include="Constraints\UniqueItemsConstraint.cs" />
<Compile Include="Constraints\XmlSerializableConstraint.cs" />
<Compile Include="Contains.cs" />
<Compile Include="Exceptions\AssertionException.cs" />
<Compile Include="Exceptions\IgnoreException.cs" />
<Compile Include="Exceptions\InconclusiveException.cs" />
<Compile Include="Exceptions\SuccessException.cs" />
<Compile Include="Interfaces\ISuiteBuilder.cs" />
<Compile Include="Interfaces\ITestCaseBuilder.cs" />
<Compile Include="FileAssert.cs" />
<Compile Include="GlobalSettings.cs" />
<Compile Include="Has.cs" />
<Compile Include="Internal\Builders\CombinatorialStrategy.cs" />
<Compile Include="Internal\Builders\DatapointProvider.cs" />
<Compile Include="Internal\Builders\DefaultTestCaseBuilder.cs" />
<Compile Include="Internal\Builders\NUnitTestFixtureBuilder.cs" />
<Compile Include="Internal\Builders\PairwiseStrategy.cs" />
<Compile Include="Internal\Builders\ParameterDataSourceProvider.cs" />
<Compile Include="Internal\Builders\ProviderCache.cs" />
<Compile Include="Internal\Builders\SequentialStrategy.cs" />
<Compile Include="Internal\Commands\CommandStage.cs" />
<Compile Include="Interfaces\ICommandWrapper.cs" />
<Compile Include="Internal\CultureDetector.cs" />
<Compile Include="Api\DefaultTestAssemblyBuilder.cs" />
<Compile Include="Internal\ExceptionHelper.cs" />
<Compile Include="Internal\Filters\AndFilter.cs" />
<Compile Include="Internal\Filters\CategoryFilter.cs" />
<Compile Include="Internal\Filters\NotFilter.cs" />
<Compile Include="Internal\Filters\OrFilter.cs" />
<Compile Include="Internal\Filters\FullNameFilter.cs" />
<Compile Include="Internal\InvalidTestFixtureException.cs" />
<Compile Include="Internal\NUnitException.cs" />
<Compile Include="Internal\OSPlatform.cs" />
<Compile Include="Internal\TestCaseParameters.cs" />
<Compile Include="Internal\PlatformHelper.cs" />
<Compile Include="Internal\PropertyBag.cs" />
<Compile Include="Internal\Reflect.cs" />
<Compile Include="Internal\Results\TestResult.cs" />
<Compile Include="Internal\RuntimeFramework.cs" />
<Compile Include="Internal\TestExecutionContext.cs" />
<Compile Include="Internal\TestFilter.cs" />
<Compile Include="Internal\TestListener.cs" />
<Compile Include="Internal\TestProgressReporter.cs" />
<Compile Include="Internal\Tests\ParameterizedFixtureSuite.cs" />
<Compile Include="Internal\Tests\ParameterizedMethodSuite.cs" />
<Compile Include="Internal\Tests\SetUpFixture.cs" />
<Compile Include="Internal\Tests\Test.cs" />
<Compile Include="Internal\Tests\TestAssembly.cs" />
<Compile Include="Internal\Tests\TestFixture.cs" />
<Compile Include="Internal\Tests\TestMethod.cs" />
<Compile Include="Internal\Tests\TestSuite.cs" />
<Compile Include="Internal\ThreadUtility.cs" />
<Compile Include="Internal\TypeHelper.cs" />
<Compile Include="Is.cs" />
<Compile Include="Iz.cs" />
<Compile Include="List.cs" />
<Compile Include="ListMapper.cs" />
<Compile Include="SpecialValue.cs" />
<Compile Include="StringAssert.cs" />
<Compile Include="TestCaseData.cs" />
<Compile Include="TestContext.cs" />
<Compile Include="TestParameters.cs" />
<Compile Include="Throws.cs" />
<Compile Include="Internal\Results\TestCaseResult.cs" />
<Compile Include="Internal\Results\TestSuiteResult.cs" />
<Compile Include="Constraints\ExactCountConstraint.cs" />
<Compile Include="Constraints\Operators\ExactCountOperator.cs" />
<Compile Include="Constraints\ExceptionTypeConstraint.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Configuration" />
<Reference Include="System.Web" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Content Include="Attributes\AttributeHierarchy.txt" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
</ItemGroup>
</Project>

Просмотреть файл

@ -1,425 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{6A281C98-B74D-403B-8536-966871B992E3}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnit.Framework</RootNamespace>
<AssemblyName>nunit.framework</AssemblyName>
<FileAlignment>512</FileAlignment>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>3.5</OldToolsVersion>
<UpgradeBackupLocation />
<IntermediateOutputPath>obj\$(Configuration)\net-4.0\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\net-4.0\</OutputPath>
<DefineConstants>TRACE;DEBUG;NUNIT_FRAMEWORK;NET_4_0;PARALLEL</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>$(OutputPath)\nunit.framework.xml</DocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\net-4.0\</OutputPath>
<DefineConstants>TRACE;NUNIT_FRAMEWORK;NET_4_0;PARALLEL</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>$(OutputPath)\nunit.framework.xml</DocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="ActionTargets.cs" />
<Compile Include="Api\DefaultTestAssemblyBuilder.cs" />
<Compile Include="Api\FrameworkController.cs" />
<Compile Include="Api\FrameworkPackageSettings.cs" />
<Compile Include="Api\ITestAssemblyBuilder.cs" />
<Compile Include="Api\ITestAssemblyRunner.cs" />
<Compile Include="Api\NUnitTestAssemblyRunner.cs" />
<Compile Include="Assert.Comparisons.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.Conditions.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.cs" />
<Compile Include="Assert.Equality.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.Exceptions.Async.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.Exceptions.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.That.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.Types.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="AssertionHelper.cs" />
<Compile Include="Assume.cs" />
<Compile Include="Attributes\ApartmentAttribute.cs" />
<Compile Include="Attributes\AuthorAttribute.cs" />
<Compile Include="Attributes\CategoryAttribute.cs" />
<Compile Include="Attributes\CombinatorialAttribute.cs" />
<Compile Include="Attributes\CombiningStrategyAttribute.cs" />
<Compile Include="Attributes\SingleThreadedAttribute.cs" />
<Compile Include="Attributes\TestAssemblyDirectoryResolveAttribute.cs" />
<Compile Include="Attributes\LevelOfParallelismAttribute.cs" />
<Compile Include="Attributes\OneTimeSetUpAttribute.cs" />
<Compile Include="Attributes\OneTimeTearDownAttribute.cs" />
<Compile Include="Attributes\OrderAttribute.cs" />
<Compile Include="Attributes\RetryAttribute.cs" />
<Compile Include="Attributes\TestActionAttribute.cs" />
<Compile Include="Attributes\ParallelizableAttribute.cs" />
<Compile Include="Attributes\CultureAttribute.cs" />
<Compile Include="Attributes\DataAttribute.cs" />
<Compile Include="Attributes\DatapointAttribute.cs" />
<Compile Include="Attributes\DatapointsAttribute.cs" />
<Compile Include="Attributes\DatapointSourceAttribute.cs" />
<Compile Include="Attributes\DescriptionAttribute.cs" />
<Compile Include="Attributes\ExplicitAttribute.cs" />
<Compile Include="Attributes\IgnoreAttribute.cs" />
<Compile Include="Attributes\IncludeExcludeAttribute.cs" />
<Compile Include="Attributes\MaxTimeAttribute.cs" />
<Compile Include="Attributes\NUnitAttribute.cs" />
<Compile Include="Attributes\PairwiseAttribute.cs" />
<Compile Include="Attributes\ParallelScope.cs" />
<Compile Include="Attributes\PlatformAttribute.cs" />
<Compile Include="Attributes\PropertyAttribute.cs" />
<Compile Include="Attributes\RandomAttribute.cs" />
<Compile Include="Attributes\RangeAttribute.cs" />
<Compile Include="Attributes\RepeatAttribute.cs" />
<Compile Include="Attributes\RequiresMTAAtribute.cs" />
<Compile Include="Attributes\RequiresSTAAttribute.cs" />
<Compile Include="Attributes\RequiresThreadAttribute.cs" />
<Compile Include="Attributes\SequentialAttribute.cs" />
<Compile Include="Attributes\SetCultureAttribute.cs" />
<Compile Include="Attributes\SetUICultureAttribute.cs" />
<Compile Include="Attributes\SetUpAttribute.cs" />
<Compile Include="Attributes\SetUpFixtureAttribute.cs" />
<Compile Include="Attributes\TearDownAttribute.cs" />
<Compile Include="Attributes\TestAttribute.cs" />
<Compile Include="Attributes\TestCaseAttribute.cs" />
<Compile Include="Attributes\TestCaseSourceAttribute.cs" />
<Compile Include="Attributes\TestFixtureAttribute.cs" />
<Compile Include="Attributes\TestFixtureSetUpAttribute.cs" />
<Compile Include="Attributes\TestFixtureSourceAttribute.cs" />
<Compile Include="Attributes\TestFixtureTearDownAttribute.cs" />
<Compile Include="Attributes\TestOfAttribute.cs" />
<Compile Include="Attributes\TheoryAttribute.cs" />
<Compile Include="Attributes\TimeoutAttribute.cs" />
<Compile Include="Attributes\ValuesAttribute.cs" />
<Compile Include="Attributes\ValueSourceAttribute.cs" />
<Compile Include="CollectionAssert.cs" />
<Compile Include="Compatibility\AttributeHelper.cs" />
<Compile Include="Compatibility\LongLivedMarshalByRefObject.cs" />
<Compile Include="Compatibility\ReflectionExtensions.cs" />
<Compile Include="Constraints\AllItemsConstraint.cs" />
<Compile Include="Constraints\AndConstraint.cs" />
<Compile Include="Constraints\AssignableFromConstraint.cs" />
<Compile Include="Constraints\AssignableToConstraint.cs" />
<Compile Include="Constraints\AttributeConstraint.cs" />
<Compile Include="Constraints\AttributeExistsConstraint.cs" />
<Compile Include="Constraints\BinaryConstraint.cs" />
<Compile Include="Constraints\BinarySerializableConstraint.cs" />
<Compile Include="Constraints\CollectionConstraint.cs" />
<Compile Include="Constraints\CollectionContainsConstraint.cs" />
<Compile Include="Constraints\CollectionEquivalentConstraint.cs" />
<Compile Include="Constraints\CollectionItemsEqualConstraint.cs" />
<Compile Include="Constraints\CollectionOrderedConstraint.cs" />
<Compile Include="Constraints\CollectionSupersetConstraint.cs" />
<Compile Include="Constraints\CollectionSubsetConstraint.cs" />
<Compile Include="Constraints\CollectionTally.cs" />
<Compile Include="Constraints\ComparisonAdapter.cs" />
<Compile Include="Constraints\ComparisonConstraint.cs" />
<Compile Include="Constraints\Constraint.cs" />
<Compile Include="Constraints\ConstraintBuilder.cs" />
<Compile Include="Constraints\ConstraintExpression.cs" />
<Compile Include="Constraints\ConstraintFactory.cs" />
<Compile Include="Constraints\ConstraintResult.cs" />
<Compile Include="Constraints\ContainsConstraint.cs" />
<Compile Include="Constraints\DelayedConstraint.cs" />
<Compile Include="Constraints\DictionaryContainsKeyConstraint.cs" />
<Compile Include="Constraints\DictionaryContainsValueConstraint.cs" />
<Compile Include="Constraints\EmptyCollectionConstraint.cs" />
<Compile Include="Constraints\EmptyConstraint.cs" />
<Compile Include="Constraints\EmptyDirectoryConstraint.cs" />
<Compile Include="Constraints\EmptyStringConstraint.cs" />
<Compile Include="Constraints\EndsWithConstraint.cs" />
<Compile Include="Constraints\EqualConstraint.cs" />
<Compile Include="Constraints\EqualityAdapter.cs" />
<Compile Include="Constraints\ExactTypeConstraint.cs" />
<Compile Include="Constraints\ExceptionNotThrownConstraint.cs" />
<Compile Include="Constraints\FalseConstraint.cs" />
<Compile Include="Constraints\FileExistsConstraint.cs" />
<Compile Include="Constraints\FileOrDirectoryExistsConstraint.cs" />
<Compile Include="Constraints\FloatingPointNumerics.cs" />
<Compile Include="Constraints\GreaterThanConstraint.cs" />
<Compile Include="Constraints\GreaterThanOrEqualConstraint.cs" />
<Compile Include="Constraints\IConstraint.cs" />
<Compile Include="Constraints\InstanceOfTypeConstraint.cs" />
<Compile Include="Constraints\IResolveConstraint.cs" />
<Compile Include="Constraints\LessThanConstraint.cs" />
<Compile Include="Constraints\LessThanOrEqualConstraint.cs" />
<Compile Include="Constraints\MessageWriter.cs" />
<Compile Include="Constraints\MsgUtils.cs" />
<Compile Include="Constraints\NaNConstraint.cs" />
<Compile Include="Constraints\NoItemConstraint.cs" />
<Compile Include="Constraints\NotConstraint.cs" />
<Compile Include="Constraints\NullConstraint.cs" />
<Compile Include="Constraints\Numerics.cs" />
<Compile Include="Constraints\NUnitComparer.cs" />
<Compile Include="Constraints\NUnitEqualityComparer.cs" />
<Compile Include="Constraints\Operators\AllOperator.cs" />
<Compile Include="Constraints\Operators\AndOperator.cs" />
<Compile Include="Constraints\Operators\AttributeOperator.cs" />
<Compile Include="Constraints\Operators\BinaryOperator.cs" />
<Compile Include="Constraints\Operators\CollectionOperator.cs" />
<Compile Include="Constraints\Operators\ConstraintOperator.cs" />
<Compile Include="Constraints\Operators\NoneOperator.cs" />
<Compile Include="Constraints\Operators\NotOperator.cs" />
<Compile Include="Constraints\Operators\OrOperator.cs" />
<Compile Include="Constraints\Operators\PrefixOperator.cs" />
<Compile Include="Constraints\Operators\PropOperator.cs" />
<Compile Include="Constraints\Operators\SelfResolvingOperator.cs" />
<Compile Include="Constraints\Operators\SomeOperator.cs" />
<Compile Include="Constraints\Operators\ThrowsOperator.cs" />
<Compile Include="Constraints\Operators\WithOperator.cs" />
<Compile Include="Constraints\OrConstraint.cs" />
<Compile Include="Constraints\PathConstraint.cs" />
<Compile Include="Constraints\PredicateConstraint.cs" />
<Compile Include="Constraints\PrefixConstraint.cs" />
<Compile Include="Constraints\PropertyConstraint.cs" />
<Compile Include="Constraints\PropertyExistsConstraint.cs" />
<Compile Include="Constraints\RangeConstraint.cs" />
<Compile Include="Constraints\RegexConstraint.cs" />
<Compile Include="Constraints\ResolvableConstraintExpression.cs" />
<Compile Include="Constraints\ReusableConstraint.cs" />
<Compile Include="Constraints\SameAsConstraint.cs" />
<Compile Include="Constraints\SamePathConstraint.cs" />
<Compile Include="Constraints\SamePathOrUnderConstraint.cs" />
<Compile Include="Constraints\SomeItemsConstraint.cs" />
<Compile Include="Constraints\EqualConstraintResult.cs" />
<Compile Include="Constraints\StartsWithConstraint.cs" />
<Compile Include="Constraints\StringConstraint.cs" />
<Compile Include="Constraints\SubPathConstraint.cs" />
<Compile Include="Constraints\SubstringConstraint.cs" />
<Compile Include="Constraints\ThrowsConstraint.cs" />
<Compile Include="Constraints\ThrowsExceptionConstraint.cs" />
<Compile Include="Constraints\ThrowsNothingConstraint.cs" />
<Compile Include="Constraints\Tolerance.cs" />
<Compile Include="Constraints\ToleranceMode.cs" />
<Compile Include="Constraints\TrueConstraint.cs" />
<Compile Include="Constraints\TypeConstraint.cs" />
<Compile Include="Constraints\UniqueItemsConstraint.cs" />
<Compile Include="Constraints\XmlSerializableConstraint.cs" />
<Compile Include="Contains.cs" />
<Compile Include="DirectoryAssert.cs" />
<Compile Include="Does.cs" />
<Compile Include="Env.cs" />
<Compile Include="Exceptions\AssertionException.cs" />
<Compile Include="Exceptions\IgnoreException.cs" />
<Compile Include="Exceptions\InconclusiveException.cs" />
<Compile Include="Exceptions\ResultStateException.cs" />
<Compile Include="Exceptions\SuccessException.cs" />
<Compile Include="Guard.cs" />
<Compile Include="Interfaces\IApplyToContext.cs" />
<Compile Include="Interfaces\IApplyToTest.cs" />
<Compile Include="Interfaces\ICombiningStrategy.cs" />
<Compile Include="Interfaces\ICommandWrapper.cs" />
<Compile Include="Interfaces\IDisposableFixture.cs" />
<Compile Include="Interfaces\IFixtureBuilder.cs" />
<Compile Include="Interfaces\IImplyFixture.cs" />
<Compile Include="Interfaces\IMethodInfo.cs" />
<Compile Include="Interfaces\IParameterDataProvider.cs" />
<Compile Include="FileAssert.cs" />
<Compile Include="GlobalSettings.cs" />
<Compile Include="Has.cs" />
<Compile Include="Interfaces\IParameterDataSource.cs" />
<Compile Include="Interfaces\IParameterInfo.cs" />
<Compile Include="Interfaces\IPropertyBag.cs" />
<Compile Include="Interfaces\IReflectionInfo.cs" />
<Compile Include="Interfaces\ISimpleTestBuilder.cs" />
<Compile Include="Interfaces\ISuiteBuilder.cs" />
<Compile Include="Interfaces\ITest.cs" />
<Compile Include="Interfaces\ITestBuilder.cs" />
<Compile Include="Interfaces\ITestCaseBuilder.cs" />
<Compile Include="Interfaces\ITestCaseData.cs" />
<Compile Include="Interfaces\ITestData.cs" />
<Compile Include="Interfaces\ITestFilter.cs" />
<Compile Include="Interfaces\ITestFixtureData.cs" />
<Compile Include="Interfaces\ITestListener.cs" />
<Compile Include="Interfaces\ITestResult.cs" />
<Compile Include="Interfaces\ITypeInfo.cs" />
<Compile Include="Interfaces\IXmlNodeBuilder.cs" />
<Compile Include="Interfaces\ResultState.cs" />
<Compile Include="Interfaces\RunState.cs" />
<Compile Include="Interfaces\TestOutput.cs" />
<Compile Include="Interfaces\TestStatus.cs" />
<Compile Include="Interfaces\TNode.cs" />
<Compile Include="Internal\ActionsHelper.cs" />
<Compile Include="Internal\AssemblyHelper.cs" />
<Compile Include="Internal\AsyncInvocationRegion.cs" />
<Compile Include="Internal\Builders\CombinatorialStrategy.cs" />
<Compile Include="Internal\Builders\DatapointProvider.cs" />
<Compile Include="Internal\Builders\DefaultTestCaseBuilder.cs" />
<Compile Include="Internal\Builders\NamespaceTreeBuilder.cs" />
<Compile Include="Internal\Builders\NUnitTestCaseBuilder.cs" />
<Compile Include="Internal\Builders\NUnitTestFixtureBuilder.cs" />
<Compile Include="Internal\Builders\DefaultSuiteBuilder.cs" />
<Compile Include="Internal\Builders\PairwiseStrategy.cs" />
<Compile Include="Internal\Builders\ParameterDataProvider.cs" />
<Compile Include="Internal\Builders\ParameterDataSourceProvider.cs" />
<Compile Include="Internal\Builders\ProviderCache.cs" />
<Compile Include="Internal\Builders\SequentialStrategy.cs" />
<Compile Include="Internal\Commands\ApplyChangesToContextCommand.cs" />
<Compile Include="Internal\Commands\CommandStage.cs" />
<Compile Include="Internal\Commands\DelegatingTestCommand.cs" />
<Compile Include="Internal\Commands\MaxTimeCommand.cs" />
<Compile Include="Internal\Commands\OneTimeSetUpCommand.cs" />
<Compile Include="Internal\Commands\OneTimeTearDownCommand.cs" />
<Compile Include="Internal\Commands\SetUpTearDownCommand.cs" />
<Compile Include="Internal\Commands\SetUpTearDownItem.cs" />
<Compile Include="Internal\Commands\SkipCommand.cs" />
<Compile Include="Internal\Commands\TestActionCommand.cs" />
<Compile Include="Internal\Commands\TestActionItem.cs" />
<Compile Include="Internal\Commands\TestCommand.cs" />
<Compile Include="Internal\Commands\TestMethodCommand.cs" />
<Compile Include="Internal\Commands\TheoryResultCommand.cs" />
<Compile Include="Internal\CultureDetector.cs" />
<Compile Include="Internal\ExceptionHelper.cs" />
<Compile Include="Internal\Execution\CommandBuilder.cs" />
<Compile Include="Internal\Execution\CompositeWorkItem.cs" />
<Compile Include="Internal\Execution\CountdownEvent.cs" />
<Compile Include="Internal\Execution\EventListenerTextWriter.cs" />
<Compile Include="Internal\Execution\EventPump.cs" />
<Compile Include="Internal\Execution\EventQueue.cs" />
<Compile Include="Internal\Execution\IWorkItemDispatcher.cs" />
<Compile Include="Internal\Execution\ParallelWorkItemDispatcher.cs" />
<Compile Include="Internal\Execution\QueuingEventListener.cs" />
<Compile Include="Internal\Execution\SimpleWorkItem.cs" />
<Compile Include="Internal\Execution\SimpleWorkItemDispatcher.cs" />
<Compile Include="Internal\Execution\TestWorker.cs" />
<Compile Include="Internal\Execution\TextCapture.cs" />
<Compile Include="Internal\Execution\TextMessageWriter.cs" />
<Compile Include="Internal\Execution\WorkItem.cs" />
<Compile Include="Internal\Execution\WorkItemQueue.cs" />
<Compile Include="Internal\Execution\WorkItemState.cs" />
<Compile Include="Internal\Execution\WorkShift.cs" />
<Compile Include="Internal\Filters\AndFilter.cs" />
<Compile Include="Internal\Filters\CategoryFilter.cs" />
<Compile Include="Internal\Filters\ClassNameFilter.cs" />
<Compile Include="Internal\Filters\CompositeFilter.cs" />
<Compile Include="Internal\Filters\FullNameFilter.cs" />
<Compile Include="Internal\Filters\IdFilter.cs" />
<Compile Include="Internal\Filters\MethodNameFilter.cs" />
<Compile Include="Internal\Filters\NotFilter.cs" />
<Compile Include="Internal\Filters\OrFilter.cs" />
<Compile Include="Internal\Filters\PropertyFilter.cs" />
<Compile Include="Internal\Filters\TestNameFilter.cs" />
<Compile Include="Internal\Filters\ValueMatchFilter.cs" />
<Compile Include="Internal\GenericMethodHelper.cs" />
<Compile Include="Internal\InvalidDataSourceException.cs" />
<Compile Include="Internal\InvalidTestFixtureException.cs" />
<Compile Include="Internal\Logging\ILogger.cs" />
<Compile Include="Internal\Logging\InternalTrace.cs" />
<Compile Include="Internal\Logging\InternalTraceLevel.cs" />
<Compile Include="Internal\Logging\InternalTraceWriter.cs" />
<Compile Include="Internal\Logging\Logger.cs" />
<Compile Include="Internal\MethodWrapper.cs" />
<Compile Include="Internal\NetCFExtensions.cs" />
<Compile Include="Internal\NUnitException.cs" />
<Compile Include="Internal\OSPlatform.cs" />
<Compile Include="Internal\ParameterWrapper.cs" />
<Compile Include="Internal\PlatformHelper.cs" />
<Compile Include="Internal\PropertyBag.cs" />
<Compile Include="Internal\PropertyNames.cs" />
<Compile Include="Internal\Randomizer.cs" />
<Compile Include="Internal\Reflect.cs" />
<Compile Include="Internal\Results\TestResult.cs" />
<Compile Include="Internal\RuntimeFramework.cs" />
<Compile Include="Internal\StackFilter.cs" />
<Compile Include="Internal\StringUtil.cs" />
<Compile Include="Internal\TestCaseParameters.cs" />
<Compile Include="Internal\TestExecutionContext.cs" />
<Compile Include="Internal\TestExecutionStatus.cs" />
<Compile Include="Internal\TestFilter.cs" />
<Compile Include="Internal\TestFixtureParameters.cs" />
<Compile Include="Internal\TestListener.cs" />
<Compile Include="Internal\TestNameGenerator.cs" />
<Compile Include="Internal\TestParameters.cs" />
<Compile Include="Internal\TestProgressReporter.cs" />
<Compile Include="Internal\Tests\ParameterizedFixtureSuite.cs" />
<Compile Include="Internal\Tests\ParameterizedMethodSuite.cs" />
<Compile Include="Internal\Tests\SetUpFixture.cs" />
<Compile Include="Internal\Tests\Test.cs" />
<Compile Include="Internal\Tests\TestAssembly.cs" />
<Compile Include="Internal\Tests\TestFixture.cs" />
<Compile Include="Internal\Tests\TestMethod.cs" />
<Compile Include="Internal\Tests\TestSuite.cs" />
<Compile Include="Internal\ThreadUtility.cs" />
<Compile Include="Internal\TypeHelper.cs" />
<Compile Include="Internal\TypeWrapper.cs" />
<Compile Include="Is.cs" />
<Compile Include="ITestAction.cs" />
<Compile Include="Iz.cs" />
<Compile Include="List.cs" />
<Compile Include="ListMapper.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="SpecialValue.cs" />
<Compile Include="StringAssert.cs" />
<Compile Include="TestCaseData.cs" />
<Compile Include="TestContext.cs" />
<Compile Include="TestFixtureData.cs" />
<Compile Include="TestParameters.cs" />
<Compile Include="Throws.cs" />
<Compile Include="Internal\Results\TestCaseResult.cs" />
<Compile Include="Internal\Results\TestSuiteResult.cs" />
<Compile Include="Constraints\ExactCountConstraint.cs" />
<Compile Include="Constraints\Operators\ExactCountOperator.cs" />
<Compile Include="Constraints\ExceptionTypeConstraint.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Configuration" />
<Reference Include="System.Web" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Content Include="Attributes\AttributeHierarchy.txt" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
</ItemGroup>
</Project>

Просмотреть файл

@ -1,429 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{D209C368-1277-4EA6-A887-AA6EBA51AB99}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnit.Framework</RootNamespace>
<AssemblyName>nunit.framework</AssemblyName>
<FileAlignment>512</FileAlignment>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>3.5</OldToolsVersion>
<IntermediateOutputPath>obj\$(Configuration)\net-4.5\</IntermediateOutputPath>
<UpgradeBackupLocation />
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\net-4.5\</OutputPath>
<DefineConstants>TRACE;DEBUG;NUNIT_FRAMEWORK;NET_4_5;PARALLEL</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>$(OutputPath)\nunit.framework.xml</DocumentationFile>
<Prefer32Bit>false</Prefer32Bit>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\net-4.5\</OutputPath>
<DefineConstants>TRACE;NUNIT_FRAMEWORK;NET_4_5;PARALLEL</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>$(OutputPath)\nunit.framework.xml</DocumentationFile>
<Prefer32Bit>false</Prefer32Bit>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="ActionTargets.cs" />
<Compile Include="Api\DefaultTestAssemblyBuilder.cs" />
<Compile Include="Api\FrameworkController.cs" />
<Compile Include="Api\FrameworkPackageSettings.cs" />
<Compile Include="Api\ITestAssemblyBuilder.cs" />
<Compile Include="Api\ITestAssemblyRunner.cs" />
<Compile Include="Api\NUnitTestAssemblyRunner.cs" />
<Compile Include="Assert.Comparisons.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.Conditions.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.cs" />
<Compile Include="Assert.Equality.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.Exceptions.Async.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.Exceptions.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.That.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.Types.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="AssertionHelper.cs" />
<Compile Include="Assume.cs" />
<Compile Include="Attributes\ApartmentAttribute.cs" />
<Compile Include="Attributes\AuthorAttribute.cs" />
<Compile Include="Attributes\CategoryAttribute.cs" />
<Compile Include="Attributes\CombinatorialAttribute.cs" />
<Compile Include="Attributes\CombiningStrategyAttribute.cs" />
<Compile Include="Attributes\CultureAttribute.cs" />
<Compile Include="Attributes\DataAttribute.cs" />
<Compile Include="Attributes\DatapointAttribute.cs" />
<Compile Include="Attributes\DatapointsAttribute.cs" />
<Compile Include="Attributes\DatapointSourceAttribute.cs" />
<Compile Include="Attributes\DescriptionAttribute.cs" />
<Compile Include="Attributes\ExplicitAttribute.cs" />
<Compile Include="Attributes\IgnoreAttribute.cs" />
<Compile Include="Attributes\IncludeExcludeAttribute.cs" />
<Compile Include="Attributes\SingleThreadedAttribute.cs" />
<Compile Include="Attributes\TestAssemblyDirectoryResolveAttribute.cs" />
<Compile Include="Attributes\LevelOfParallelismAttribute.cs" />
<Compile Include="Attributes\MaxTimeAttribute.cs" />
<Compile Include="Attributes\NUnitAttribute.cs" />
<Compile Include="Attributes\OneTimeSetUpAttribute.cs" />
<Compile Include="Attributes\OneTimeTearDownAttribute.cs" />
<Compile Include="Attributes\OrderAttribute.cs" />
<Compile Include="Attributes\PairwiseAttribute.cs" />
<Compile Include="Attributes\ParallelizableAttribute.cs" />
<Compile Include="Attributes\ParallelScope.cs" />
<Compile Include="Attributes\PlatformAttribute.cs" />
<Compile Include="Attributes\PropertyAttribute.cs" />
<Compile Include="Attributes\RandomAttribute.cs" />
<Compile Include="Attributes\RangeAttribute.cs" />
<Compile Include="Attributes\RepeatAttribute.cs" />
<Compile Include="Attributes\RequiresMTAAtribute.cs" />
<Compile Include="Attributes\RequiresSTAAttribute.cs" />
<Compile Include="Attributes\RequiresThreadAttribute.cs" />
<Compile Include="Attributes\RetryAttribute.cs" />
<Compile Include="Attributes\SequentialAttribute.cs" />
<Compile Include="Attributes\SetCultureAttribute.cs" />
<Compile Include="Attributes\SetUICultureAttribute.cs" />
<Compile Include="Attributes\SetUpAttribute.cs" />
<Compile Include="Attributes\SetUpFixtureAttribute.cs" />
<Compile Include="Attributes\TearDownAttribute.cs" />
<Compile Include="Attributes\TestActionAttribute.cs" />
<Compile Include="Attributes\TestAttribute.cs" />
<Compile Include="Attributes\TestCaseAttribute.cs" />
<Compile Include="Attributes\TestCaseSourceAttribute.cs" />
<Compile Include="Attributes\TestFixtureAttribute.cs" />
<Compile Include="Attributes\TestFixtureSetUpAttribute.cs" />
<Compile Include="Attributes\TestFixtureSourceAttribute.cs" />
<Compile Include="Attributes\TestFixtureTearDownAttribute.cs" />
<Compile Include="Attributes\TestOfAttribute.cs" />
<Compile Include="Attributes\TheoryAttribute.cs" />
<Compile Include="Attributes\TimeoutAttribute.cs" />
<Compile Include="Attributes\ValuesAttribute.cs" />
<Compile Include="Attributes\ValueSourceAttribute.cs" />
<Compile Include="CollectionAssert.cs" />
<Compile Include="Compatibility\AttributeHelper.cs" />
<Compile Include="Compatibility\LongLivedMarshalByRefObject.cs" />
<Compile Include="Compatibility\ReflectionExtensions.cs" />
<Compile Include="Constraints\AllItemsConstraint.cs" />
<Compile Include="Constraints\AndConstraint.cs" />
<Compile Include="Constraints\AssignableFromConstraint.cs" />
<Compile Include="Constraints\AssignableToConstraint.cs" />
<Compile Include="Constraints\AttributeConstraint.cs" />
<Compile Include="Constraints\AttributeExistsConstraint.cs" />
<Compile Include="Constraints\BinaryConstraint.cs" />
<Compile Include="Constraints\BinarySerializableConstraint.cs" />
<Compile Include="Constraints\CollectionConstraint.cs" />
<Compile Include="Constraints\CollectionContainsConstraint.cs" />
<Compile Include="Constraints\CollectionEquivalentConstraint.cs" />
<Compile Include="Constraints\CollectionItemsEqualConstraint.cs" />
<Compile Include="Constraints\CollectionOrderedConstraint.cs" />
<Compile Include="Constraints\CollectionSubsetConstraint.cs" />
<Compile Include="Constraints\CollectionSupersetConstraint.cs" />
<Compile Include="Constraints\CollectionTally.cs" />
<Compile Include="Constraints\ComparisonAdapter.cs" />
<Compile Include="Constraints\ComparisonConstraint.cs" />
<Compile Include="Constraints\Constraint.cs" />
<Compile Include="Constraints\ConstraintBuilder.cs" />
<Compile Include="Constraints\ConstraintExpression.cs" />
<Compile Include="Constraints\ConstraintFactory.cs" />
<Compile Include="Constraints\ConstraintResult.cs" />
<Compile Include="Constraints\ContainsConstraint.cs" />
<Compile Include="Constraints\DelayedConstraint.cs" />
<Compile Include="Constraints\DictionaryContainsKeyConstraint.cs" />
<Compile Include="Constraints\DictionaryContainsValueConstraint.cs" />
<Compile Include="Constraints\EmptyCollectionConstraint.cs" />
<Compile Include="Constraints\EmptyConstraint.cs" />
<Compile Include="Constraints\EmptyDirectoryConstraint.cs" />
<Compile Include="Constraints\EmptyStringConstraint.cs" />
<Compile Include="Constraints\EndsWithConstraint.cs" />
<Compile Include="Constraints\EqualConstraint.cs" />
<Compile Include="Constraints\EqualityAdapter.cs" />
<Compile Include="Constraints\ExactTypeConstraint.cs" />
<Compile Include="Constraints\ExceptionNotThrownConstraint.cs" />
<Compile Include="Constraints\FalseConstraint.cs" />
<Compile Include="Constraints\FileExistsConstraint.cs" />
<Compile Include="Constraints\FileOrDirectoryExistsConstraint.cs" />
<Compile Include="Constraints\FloatingPointNumerics.cs" />
<Compile Include="Constraints\GreaterThanConstraint.cs" />
<Compile Include="Constraints\GreaterThanOrEqualConstraint.cs" />
<Compile Include="Constraints\IConstraint.cs" />
<Compile Include="Constraints\InstanceOfTypeConstraint.cs" />
<Compile Include="Constraints\IResolveConstraint.cs" />
<Compile Include="Constraints\LessThanConstraint.cs" />
<Compile Include="Constraints\LessThanOrEqualConstraint.cs" />
<Compile Include="Constraints\MessageWriter.cs" />
<Compile Include="Constraints\MsgUtils.cs" />
<Compile Include="Constraints\NaNConstraint.cs" />
<Compile Include="Constraints\NoItemConstraint.cs" />
<Compile Include="Constraints\NotConstraint.cs" />
<Compile Include="Constraints\NullConstraint.cs" />
<Compile Include="Constraints\Numerics.cs" />
<Compile Include="Constraints\NUnitComparer.cs" />
<Compile Include="Constraints\NUnitEqualityComparer.cs" />
<Compile Include="Constraints\Operators\AllOperator.cs" />
<Compile Include="Constraints\Operators\AndOperator.cs" />
<Compile Include="Constraints\Operators\AttributeOperator.cs" />
<Compile Include="Constraints\Operators\BinaryOperator.cs" />
<Compile Include="Constraints\Operators\CollectionOperator.cs" />
<Compile Include="Constraints\Operators\ConstraintOperator.cs" />
<Compile Include="Constraints\Operators\NoneOperator.cs" />
<Compile Include="Constraints\Operators\NotOperator.cs" />
<Compile Include="Constraints\Operators\OrOperator.cs" />
<Compile Include="Constraints\Operators\PrefixOperator.cs" />
<Compile Include="Constraints\Operators\PropOperator.cs" />
<Compile Include="Constraints\Operators\SelfResolvingOperator.cs" />
<Compile Include="Constraints\Operators\SomeOperator.cs" />
<Compile Include="Constraints\Operators\ThrowsOperator.cs" />
<Compile Include="Constraints\Operators\WithOperator.cs" />
<Compile Include="Constraints\OrConstraint.cs" />
<Compile Include="Constraints\PathConstraint.cs" />
<Compile Include="Constraints\PredicateConstraint.cs" />
<Compile Include="Constraints\PrefixConstraint.cs" />
<Compile Include="Constraints\PropertyConstraint.cs" />
<Compile Include="Constraints\PropertyExistsConstraint.cs" />
<Compile Include="Constraints\RangeConstraint.cs" />
<Compile Include="Constraints\RegexConstraint.cs" />
<Compile Include="Constraints\ResolvableConstraintExpression.cs" />
<Compile Include="Constraints\ReusableConstraint.cs" />
<Compile Include="Constraints\SameAsConstraint.cs" />
<Compile Include="Constraints\SamePathConstraint.cs" />
<Compile Include="Constraints\SamePathOrUnderConstraint.cs" />
<Compile Include="Constraints\SomeItemsConstraint.cs" />
<Compile Include="Constraints\EqualConstraintResult.cs" />
<Compile Include="Constraints\StartsWithConstraint.cs" />
<Compile Include="Constraints\StringConstraint.cs" />
<Compile Include="Constraints\SubPathConstraint.cs" />
<Compile Include="Constraints\SubstringConstraint.cs" />
<Compile Include="Constraints\ThrowsConstraint.cs" />
<Compile Include="Constraints\ThrowsExceptionConstraint.cs" />
<Compile Include="Constraints\ThrowsNothingConstraint.cs" />
<Compile Include="Constraints\Tolerance.cs" />
<Compile Include="Constraints\ToleranceMode.cs" />
<Compile Include="Constraints\TrueConstraint.cs" />
<Compile Include="Constraints\TypeConstraint.cs" />
<Compile Include="Constraints\UniqueItemsConstraint.cs" />
<Compile Include="Constraints\XmlSerializableConstraint.cs" />
<Compile Include="Contains.cs" />
<Compile Include="DirectoryAssert.cs" />
<Compile Include="Does.cs" />
<Compile Include="Env.cs" />
<Compile Include="Exceptions\AssertionException.cs" />
<Compile Include="Exceptions\IgnoreException.cs" />
<Compile Include="Exceptions\InconclusiveException.cs" />
<Compile Include="Exceptions\ResultStateException.cs" />
<Compile Include="Exceptions\SuccessException.cs" />
<Compile Include="FileAssert.cs" />
<Compile Include="GlobalSettings.cs" />
<Compile Include="Guard.cs" />
<Compile Include="Has.cs" />
<Compile Include="Interfaces\IApplyToContext.cs" />
<Compile Include="Interfaces\IApplyToTest.cs" />
<Compile Include="Interfaces\ICommandWrapper.cs" />
<Compile Include="Interfaces\IDisposableFixture.cs" />
<Compile Include="Interfaces\IFixtureBuilder.cs" />
<Compile Include="Interfaces\IImplyFixture.cs" />
<Compile Include="Interfaces\IMethodInfo.cs" />
<Compile Include="Interfaces\IParameterDataProvider.cs" />
<Compile Include="Interfaces\IParameterDataSource.cs" />
<Compile Include="Interfaces\IParameterInfo.cs" />
<Compile Include="Interfaces\IPropertyBag.cs" />
<Compile Include="Interfaces\IReflectionInfo.cs" />
<Compile Include="Interfaces\ISimpleTestBuilder.cs" />
<Compile Include="Interfaces\ISuiteBuilder.cs" />
<Compile Include="Interfaces\ITest.cs" />
<Compile Include="Interfaces\ITestCaseBuilder.cs" />
<Compile Include="Interfaces\ITestCaseData.cs" />
<Compile Include="Interfaces\ITestData.cs" />
<Compile Include="Interfaces\ITestFilter.cs" />
<Compile Include="Interfaces\ITestFixtureData.cs" />
<Compile Include="Interfaces\ITestListener.cs" />
<Compile Include="Interfaces\ITestBuilder.cs" />
<Compile Include="Interfaces\ITestResult.cs" />
<Compile Include="Interfaces\ITypeInfo.cs" />
<Compile Include="Interfaces\IXmlNodeBuilder.cs" />
<Compile Include="Interfaces\ResultState.cs" />
<Compile Include="Interfaces\RunState.cs" />
<Compile Include="Interfaces\TestOutput.cs" />
<Compile Include="Interfaces\TestStatus.cs" />
<Compile Include="Interfaces\TNode.cs" />
<Compile Include="Internal\ActionsHelper.cs" />
<Compile Include="Internal\AssemblyHelper.cs" />
<Compile Include="Internal\Builders\CombinatorialStrategy.cs" />
<Compile Include="Interfaces\ICombiningStrategy.cs" />
<Compile Include="Internal\Builders\DatapointProvider.cs" />
<Compile Include="Internal\Builders\DefaultSuiteBuilder.cs" />
<Compile Include="Internal\Builders\DefaultTestCaseBuilder.cs" />
<Compile Include="Internal\Builders\NamespaceTreeBuilder.cs" />
<Compile Include="Internal\Builders\NUnitTestCaseBuilder.cs" />
<Compile Include="Internal\Builders\NUnitTestFixtureBuilder.cs" />
<Compile Include="Internal\Builders\PairwiseStrategy.cs" />
<Compile Include="Internal\Builders\ParameterDataProvider.cs" />
<Compile Include="Internal\Builders\ParameterDataSourceProvider.cs" />
<Compile Include="Internal\Builders\ProviderCache.cs" />
<Compile Include="Internal\Builders\SequentialStrategy.cs" />
<Compile Include="Internal\AsyncInvocationRegion.cs" />
<Compile Include="Internal\Commands\OneTimeSetUpCommand.cs" />
<Compile Include="Internal\Commands\OneTimeTearDownCommand.cs" />
<Compile Include="Internal\Commands\ApplyChangesToContextCommand.cs" />
<Compile Include="Internal\Commands\CommandStage.cs" />
<Compile Include="Internal\Commands\DelegatingTestCommand.cs" />
<Compile Include="Internal\Commands\MaxTimeCommand.cs" />
<Compile Include="Internal\Commands\SetUpTearDownCommand.cs" />
<Compile Include="Internal\Commands\SetUpTearDownItem.cs" />
<Compile Include="Internal\Commands\SkipCommand.cs" />
<Compile Include="Internal\Commands\TestActionCommand.cs" />
<Compile Include="Internal\Commands\TestActionItem.cs" />
<Compile Include="Internal\Commands\TestCommand.cs" />
<Compile Include="Internal\Commands\TestMethodCommand.cs" />
<Compile Include="Internal\Commands\TheoryResultCommand.cs" />
<Compile Include="Internal\Execution\EventListenerTextWriter.cs" />
<Compile Include="Internal\Filters\ClassNameFilter.cs" />
<Compile Include="Internal\Filters\CompositeFilter.cs" />
<Compile Include="Internal\Filters\FullNameFilter.cs" />
<Compile Include="Internal\Filters\MethodNameFilter.cs" />
<Compile Include="Internal\Filters\PropertyFilter.cs" />
<Compile Include="Internal\Filters\TestNameFilter.cs" />
<Compile Include="Internal\GenericMethodHelper.cs" />
<Compile Include="Internal\InvalidDataSourceException.cs" />
<Compile Include="Internal\CultureDetector.cs" />
<Compile Include="Internal\ExceptionHelper.cs" />
<Compile Include="Internal\Execution\CommandBuilder.cs" />
<Compile Include="Internal\Execution\CompositeWorkItem.cs" />
<Compile Include="Internal\Execution\CountdownEvent.cs" />
<Compile Include="Internal\Execution\EventPump.cs" />
<Compile Include="Internal\Execution\EventQueue.cs" />
<Compile Include="Internal\Execution\IWorkItemDispatcher.cs" />
<Compile Include="Internal\Execution\ParallelWorkItemDispatcher.cs" />
<Compile Include="Internal\Execution\QueuingEventListener.cs" />
<Compile Include="Internal\Execution\SimpleWorkItem.cs" />
<Compile Include="Internal\Execution\SimpleWorkItemDispatcher.cs" />
<Compile Include="Internal\Execution\TestWorker.cs" />
<Compile Include="Internal\Execution\TextCapture.cs" />
<Compile Include="Internal\Execution\TextMessageWriter.cs" />
<Compile Include="Internal\Execution\WorkItem.cs" />
<Compile Include="Internal\Execution\WorkItemQueue.cs" />
<Compile Include="Internal\Execution\WorkItemState.cs" />
<Compile Include="Internal\Execution\WorkShift.cs" />
<Compile Include="Internal\Filters\AndFilter.cs" />
<Compile Include="Internal\Filters\CategoryFilter.cs" />
<Compile Include="Internal\Filters\IdFilter.cs" />
<Compile Include="Internal\Filters\NotFilter.cs" />
<Compile Include="Internal\Filters\OrFilter.cs" />
<Compile Include="Internal\Filters\ValueMatchFilter.cs" />
<Compile Include="Internal\InvalidTestFixtureException.cs" />
<Compile Include="Internal\Logging\ILogger.cs" />
<Compile Include="Internal\Logging\InternalTrace.cs" />
<Compile Include="Internal\Logging\InternalTraceLevel.cs" />
<Compile Include="Internal\Logging\InternalTraceWriter.cs" />
<Compile Include="Internal\Logging\Logger.cs" />
<Compile Include="Internal\MethodWrapper.cs" />
<Compile Include="Internal\NetCFExtensions.cs" />
<Compile Include="Internal\NUnitException.cs" />
<Compile Include="Internal\OSPlatform.cs" />
<Compile Include="Internal\ParameterWrapper.cs" />
<Compile Include="Internal\PlatformHelper.cs" />
<Compile Include="Internal\PropertyBag.cs" />
<Compile Include="Internal\PropertyNames.cs" />
<Compile Include="Internal\Randomizer.cs" />
<Compile Include="Internal\Reflect.cs" />
<Compile Include="Internal\Results\TestResult.cs" />
<Compile Include="Internal\RuntimeFramework.cs" />
<Compile Include="Internal\StackFilter.cs" />
<Compile Include="Internal\StringUtil.cs" />
<Compile Include="Internal\TestCaseParameters.cs" />
<Compile Include="Internal\TestExecutionContext.cs" />
<Compile Include="Internal\TestExecutionStatus.cs" />
<Compile Include="Internal\TestFilter.cs" />
<Compile Include="Internal\TestFixtureParameters.cs" />
<Compile Include="Internal\TestListener.cs" />
<Compile Include="Internal\TestNameGenerator.cs" />
<Compile Include="Internal\TestParameters.cs" />
<Compile Include="Internal\TestProgressReporter.cs" />
<Compile Include="Internal\Tests\ParameterizedFixtureSuite.cs" />
<Compile Include="Internal\Tests\ParameterizedMethodSuite.cs" />
<Compile Include="Internal\Tests\SetUpFixture.cs" />
<Compile Include="Internal\Tests\Test.cs" />
<Compile Include="Internal\Tests\TestAssembly.cs" />
<Compile Include="Internal\Tests\TestFixture.cs" />
<Compile Include="Internal\Tests\TestMethod.cs" />
<Compile Include="Internal\Tests\TestSuite.cs" />
<Compile Include="Internal\ThreadUtility.cs" />
<Compile Include="Internal\TypeHelper.cs" />
<Compile Include="Internal\TypeWrapper.cs" />
<Compile Include="Is.cs" />
<Compile Include="ITestAction.cs" />
<Compile Include="Iz.cs" />
<Compile Include="List.cs" />
<Compile Include="ListMapper.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="SpecialValue.cs" />
<Compile Include="StringAssert.cs" />
<Compile Include="TestCaseData.cs" />
<Compile Include="TestContext.cs" />
<Compile Include="TestFixtureData.cs" />
<Compile Include="TestParameters.cs" />
<Compile Include="Throws.cs" />
<Compile Include="Internal\Results\TestCaseResult.cs" />
<Compile Include="Internal\Results\TestSuiteResult.cs" />
<Compile Include="Constraints\ExactCountConstraint.cs" />
<Compile Include="Constraints\Operators\ExactCountOperator.cs" />
<Compile Include="Constraints\ExceptionTypeConstraint.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Configuration" />
<Reference Include="System.Web" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Content Include="Attributes\AttributeHierarchy.txt" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
</ItemGroup>
</Project>

Просмотреть файл

@ -1,457 +0,0 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{B41DB8FB-0D2F-45CE-9345-AF469FC05EE8}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnit.Framework</RootNamespace>
<AssemblyName>nunit.framework</AssemblyName>
<ProjectTypeGuids>{4D628B5B-2FBC-4AA6-8C16-197242AEB884};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<PlatformFamilyName>WindowsCE</PlatformFamilyName>
<PlatformID>E2BECB1F-8C8C-41ba-B736-9BE7D946A398</PlatformID>
<OSVersion>5.0</OSVersion>
<DeployDirSuffix>nunitlite_netcf_3._5</DeployDirSuffix>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<NativePlatformName>Windows CE</NativePlatformName>
<FormFactorID>
</FormFactorID>
<IntermediateOutputPath>obj\$(Configuration)\netcf-3.5\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\netcf-3.5\</OutputPath>
<DefineConstants>TRACE;DEBUG;NUNIT_FRAMEWORK;WindowsCE;NETCF;NETCF_3_5;PARALLEL</DefineConstants>
<NoStdLib>true</NoStdLib>
<NoConfig>true</NoConfig>
<ErrorReport>prompt</ErrorReport>
<FileAlignment>512</FileAlignment>
<WarningLevel>4</WarningLevel>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
<DocumentationFile>..\..\..\bin\Debug\netcf-3.5\nunit.framework.xml</DocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\netcf-3.5\</OutputPath>
<DefineConstants>TRACE;NUNIT_FRAMEWORK;WindowsCE;NETCF;NETCF_3_5;PARALLEL</DefineConstants>
<NoStdLib>true</NoStdLib>
<NoConfig>true</NoConfig>
<ErrorReport>prompt</ErrorReport>
<FileAlignment>512</FileAlignment>
<WarningLevel>4</WarningLevel>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
<DocumentationFile>..\..\..\bin\Release\netcf-3.5\nunit.framework.xml</DocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="mscorlib" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="Guard.cs" />
<Compile Include="ActionTargets.cs" />
<Compile Include="Api\DefaultTestAssemblyBuilder.cs" />
<Compile Include="Api\FrameworkController.cs" />
<Compile Include="Api\FrameworkPackageSettings.cs" />
<Compile Include="Api\ITestAssemblyBuilder.cs" />
<Compile Include="Api\ITestAssemblyRunner.cs" />
<Compile Include="Api\NUnitTestAssemblyRunner.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="Assert.Comparisons.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.Conditions.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.cs" />
<Compile Include="Assert.Equality.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.Exceptions.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.That.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.Types.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="AssertionHelper.cs" />
<Compile Include="Assume.cs" />
<Compile Include="Attributes\ApartmentAttribute.cs" />
<Compile Include="Attributes\AuthorAttribute.cs" />
<Compile Include="Attributes\CategoryAttribute.cs" />
<Compile Include="Attributes\CombinatorialAttribute.cs" />
<Compile Include="Attributes\CombiningStrategyAttribute.cs" />
<Compile Include="Attributes\CultureAttribute.cs" />
<Compile Include="Attributes\DataAttribute.cs" />
<Compile Include="Attributes\DatapointAttribute.cs" />
<Compile Include="Attributes\DatapointsAttribute.cs" />
<Compile Include="Attributes\DatapointSourceAttribute.cs" />
<Compile Include="Attributes\DescriptionAttribute.cs" />
<Compile Include="Attributes\ExplicitAttribute.cs" />
<Compile Include="Attributes\IgnoreAttribute.cs" />
<Compile Include="Attributes\IncludeExcludeAttribute.cs" />
<Compile Include="Attributes\LevelOfParallelismAttribute.cs" />
<Compile Include="Attributes\MaxTimeAttribute.cs" />
<Compile Include="Attributes\NUnitAttribute.cs" />
<Compile Include="Attributes\OneTimeSetUpAttribute.cs" />
<Compile Include="Attributes\OneTimeTearDownAttribute.cs" />
<Compile Include="Attributes\OrderAttribute.cs" />
<Compile Include="Attributes\PairwiseAttribute.cs" />
<Compile Include="Attributes\ParallelizableAttribute.cs" />
<Compile Include="Attributes\ParallelScope.cs" />
<Compile Include="Attributes\PlatformAttribute.cs" />
<Compile Include="Attributes\PropertyAttribute.cs" />
<Compile Include="Attributes\RandomAttribute.cs" />
<Compile Include="Attributes\RangeAttribute.cs" />
<Compile Include="Attributes\RepeatAttribute.cs" />
<Compile Include="Attributes\RequiresMTAAtribute.cs" />
<Compile Include="Attributes\RequiresSTAAttribute.cs" />
<Compile Include="Attributes\RequiresThreadAttribute.cs" />
<Compile Include="Attributes\RetryAttribute.cs" />
<Compile Include="Attributes\SequentialAttribute.cs" />
<Compile Include="Attributes\SetCultureAttribute.cs" />
<Compile Include="Attributes\SetUICultureAttribute.cs" />
<Compile Include="Attributes\SetUpAttribute.cs" />
<Compile Include="Attributes\SetUpFixtureAttribute.cs" />
<Compile Include="Attributes\SingleThreadedAttribute.cs" />
<Compile Include="Attributes\TearDownAttribute.cs" />
<Compile Include="Attributes\TestActionAttribute.cs" />
<Compile Include="Attributes\TestAttribute.cs" />
<Compile Include="Attributes\TestCaseAttribute.cs" />
<Compile Include="Attributes\TestCaseSourceAttribute.cs" />
<Compile Include="Attributes\TestFixtureAttribute.cs" />
<Compile Include="Attributes\TestFixtureSetUpAttribute.cs" />
<Compile Include="Attributes\TestFixtureSourceAttribute.cs" />
<Compile Include="Attributes\TestFixtureTearDownAttribute.cs" />
<Compile Include="Attributes\TestOfAttribute.cs" />
<Compile Include="Attributes\TheoryAttribute.cs" />
<Compile Include="Attributes\TimeoutAttribute.cs" />
<Compile Include="Attributes\ValuesAttribute.cs" />
<Compile Include="Attributes\ValueSourceAttribute.cs" />
<Compile Include="CollectionAssert.cs" />
<Compile Include="Compatibility\AttributeHelper.cs" />
<Compile Include="Compatibility\BindingFlags.cs" />
<Compile Include="Compatibility\LongLivedMarshalByRefObject.cs" />
<Compile Include="Compatibility\ReaderWriterLockSlim.cs" />
<Compile Include="Compatibility\ReflectionExtensions.cs" />
<Compile Include="Compatibility\System.Collections.Concurrent\ConcurrentQueue.cs" />
<Compile Include="Compatibility\System.Collections.Concurrent\IProducerConsumerCollection.cs" />
<Compile Include="Compatibility\System.Threading\LazyThreadSafetyMode.cs" />
<Compile Include="Compatibility\System.Threading\SpinWait.cs" />
<Compile Include="Compatibility\System.Web.UI\ICallbackEventHandler.cs" />
<Compile Include="Compatibility\System\Lazy.cs" />
<Compile Include="Constraints\AllItemsConstraint.cs" />
<Compile Include="Constraints\AndConstraint.cs" />
<Compile Include="Constraints\AssignableFromConstraint.cs" />
<Compile Include="Constraints\AssignableToConstraint.cs" />
<Compile Include="Constraints\AttributeConstraint.cs" />
<Compile Include="Constraints\AttributeExistsConstraint.cs" />
<Compile Include="Constraints\BinaryConstraint.cs" />
<Compile Include="Constraints\BinarySerializableConstraint.cs" />
<Compile Include="Constraints\CollectionConstraint.cs" />
<Compile Include="Constraints\CollectionContainsConstraint.cs" />
<Compile Include="Constraints\CollectionEquivalentConstraint.cs" />
<Compile Include="Constraints\CollectionItemsEqualConstraint.cs" />
<Compile Include="Constraints\CollectionOrderedConstraint.cs" />
<Compile Include="Constraints\CollectionSubsetConstraint.cs" />
<Compile Include="Constraints\CollectionSupersetConstraint.cs" />
<Compile Include="Constraints\CollectionTally.cs" />
<Compile Include="Constraints\ComparisonAdapter.cs" />
<Compile Include="Constraints\ComparisonConstraint.cs" />
<Compile Include="Constraints\Constraint.cs" />
<Compile Include="Constraints\ConstraintBuilder.cs" />
<Compile Include="Constraints\ConstraintExpression.cs" />
<Compile Include="Constraints\ConstraintFactory.cs" />
<Compile Include="Constraints\ConstraintResult.cs" />
<Compile Include="Constraints\ContainsConstraint.cs" />
<Compile Include="Constraints\DelayedConstraint.cs" />
<Compile Include="Constraints\DictionaryContainsKeyConstraint.cs" />
<Compile Include="Constraints\DictionaryContainsValueConstraint.cs" />
<Compile Include="Constraints\EmptyCollectionConstraint.cs" />
<Compile Include="Constraints\EmptyConstraint.cs" />
<Compile Include="Constraints\EmptyDirectoryConstraint.cs" />
<Compile Include="Constraints\EmptyStringConstraint.cs" />
<Compile Include="Constraints\EndsWithConstraint.cs" />
<Compile Include="Constraints\EqualConstraint.cs" />
<Compile Include="Constraints\EqualConstraintResult.cs" />
<Compile Include="Constraints\EqualityAdapter.cs" />
<Compile Include="Constraints\ExactCountConstraint.cs" />
<Compile Include="Constraints\ExactTypeConstraint.cs" />
<Compile Include="Constraints\ExceptionTypeConstraint.cs" />
<Compile Include="Constraints\FalseConstraint.cs" />
<Compile Include="Constraints\FileExistsConstraint.cs" />
<Compile Include="Constraints\FileOrDirectoryExistsConstraint.cs" />
<Compile Include="Constraints\FloatingPointNumerics.cs" />
<Compile Include="Constraints\GreaterThanConstraint.cs" />
<Compile Include="Constraints\GreaterThanOrEqualConstraint.cs" />
<Compile Include="Constraints\IConstraint.cs" />
<Compile Include="Constraints\InstanceOfTypeConstraint.cs" />
<Compile Include="Constraints\IResolveConstraint.cs" />
<Compile Include="Constraints\LessThanConstraint.cs" />
<Compile Include="Constraints\LessThanOrEqualConstraint.cs" />
<Compile Include="Constraints\MessageWriter.cs" />
<Compile Include="Constraints\MsgUtils.cs" />
<Compile Include="Constraints\NaNConstraint.cs" />
<Compile Include="Constraints\NoItemConstraint.cs" />
<Compile Include="Constraints\NotConstraint.cs" />
<Compile Include="Constraints\NullConstraint.cs" />
<Compile Include="Constraints\Numerics.cs" />
<Compile Include="Constraints\NUnitComparer.cs" />
<Compile Include="Constraints\NUnitEqualityComparer.cs" />
<Compile Include="Constraints\Operators\AllOperator.cs" />
<Compile Include="Constraints\Operators\AndOperator.cs" />
<Compile Include="Constraints\Operators\AttributeOperator.cs" />
<Compile Include="Constraints\Operators\BinaryOperator.cs" />
<Compile Include="Constraints\Operators\CollectionOperator.cs" />
<Compile Include="Constraints\Operators\ConstraintOperator.cs" />
<Compile Include="Constraints\Operators\ExactCountOperator.cs" />
<Compile Include="Constraints\Operators\NoneOperator.cs" />
<Compile Include="Constraints\Operators\NotOperator.cs" />
<Compile Include="Constraints\Operators\OrOperator.cs" />
<Compile Include="Constraints\Operators\PrefixOperator.cs" />
<Compile Include="Constraints\Operators\PropOperator.cs" />
<Compile Include="Constraints\Operators\SelfResolvingOperator.cs" />
<Compile Include="Constraints\Operators\SomeOperator.cs" />
<Compile Include="Constraints\Operators\ThrowsOperator.cs" />
<Compile Include="Constraints\Operators\WithOperator.cs" />
<Compile Include="Constraints\OrConstraint.cs" />
<Compile Include="Constraints\PathConstraint.cs" />
<Compile Include="Constraints\PredicateConstraint.cs" />
<Compile Include="Constraints\PrefixConstraint.cs" />
<Compile Include="Constraints\PropertyConstraint.cs" />
<Compile Include="Constraints\PropertyExistsConstraint.cs" />
<Compile Include="Constraints\RangeConstraint.cs" />
<Compile Include="Constraints\RegexConstraint.cs" />
<Compile Include="Constraints\ResolvableConstraintExpression.cs" />
<Compile Include="Constraints\ReusableConstraint.cs" />
<Compile Include="Constraints\SameAsConstraint.cs" />
<Compile Include="Constraints\SamePathConstraint.cs" />
<Compile Include="Constraints\SamePathOrUnderConstraint.cs" />
<Compile Include="Constraints\SomeItemsConstraint.cs" />
<Compile Include="Constraints\StartsWithConstraint.cs" />
<Compile Include="Constraints\StringConstraint.cs" />
<Compile Include="Constraints\SubPathConstraint.cs" />
<Compile Include="Constraints\SubstringConstraint.cs" />
<Compile Include="Constraints\ThrowsConstraint.cs" />
<Compile Include="Constraints\ThrowsExceptionConstraint.cs" />
<Compile Include="Constraints\ThrowsNothingConstraint.cs" />
<Compile Include="Constraints\Tolerance.cs" />
<Compile Include="Constraints\ToleranceMode.cs" />
<Compile Include="Constraints\TrueConstraint.cs" />
<Compile Include="Constraints\TypeConstraint.cs" />
<Compile Include="Constraints\UniqueItemsConstraint.cs" />
<Compile Include="Constraints\XmlSerializableConstraint.cs" />
<Compile Include="Contains.cs" />
<Compile Include="DirectoryAssert.cs" />
<Compile Include="Does.cs" />
<Compile Include="Env.cs" />
<Compile Include="Exceptions\AssertionException.cs" />
<Compile Include="Exceptions\IgnoreException.cs" />
<Compile Include="Exceptions\InconclusiveException.cs" />
<Compile Include="Exceptions\ResultStateException.cs" />
<Compile Include="Exceptions\SuccessException.cs" />
<Compile Include="FileAssert.cs" />
<Compile Include="GlobalSettings.cs" />
<Compile Include="Has.cs" />
<Compile Include="Interfaces\IApplyToContext.cs" />
<Compile Include="Interfaces\IApplyToTest.cs" />
<Compile Include="Interfaces\ICombiningStrategy.cs" />
<Compile Include="Interfaces\ICommandWrapper.cs" />
<Compile Include="Interfaces\IDisposableFixture.cs" />
<Compile Include="Interfaces\IFixtureBuilder.cs" />
<Compile Include="Interfaces\IImplyFixture.cs" />
<Compile Include="Interfaces\IMethodInfo.cs" />
<Compile Include="Interfaces\IParameterDataProvider.cs" />
<Compile Include="Interfaces\IParameterDataSource.cs" />
<Compile Include="Interfaces\IParameterInfo.cs" />
<Compile Include="Interfaces\IPropertyBag.cs" />
<Compile Include="Interfaces\IReflectionInfo.cs" />
<Compile Include="Interfaces\ISimpleTestBuilder.cs" />
<Compile Include="Interfaces\ISuiteBuilder.cs" />
<Compile Include="Interfaces\ITest.cs" />
<Compile Include="Interfaces\ITestBuilder.cs" />
<Compile Include="Interfaces\ITestCaseBuilder.cs" />
<Compile Include="Interfaces\ITestCaseData.cs" />
<Compile Include="Interfaces\ITestData.cs" />
<Compile Include="Interfaces\ITestFilter.cs" />
<Compile Include="Interfaces\ITestFixtureData.cs" />
<Compile Include="Interfaces\ITestListener.cs" />
<Compile Include="Interfaces\ITestResult.cs" />
<Compile Include="Interfaces\ITypeInfo.cs" />
<Compile Include="Interfaces\IXmlNodeBuilder.cs" />
<Compile Include="Interfaces\ResultState.cs" />
<Compile Include="Interfaces\RunState.cs" />
<Compile Include="Interfaces\TestOutput.cs" />
<Compile Include="Interfaces\TestStatus.cs" />
<Compile Include="Interfaces\TNode.cs" />
<Compile Include="Internal\ActionsHelper.cs" />
<Compile Include="Internal\AssemblyHelper.cs" />
<Compile Include="Internal\AsyncInvocationRegion.cs" />
<Compile Include="Internal\Builders\CombinatorialStrategy.cs" />
<Compile Include="Internal\Builders\DatapointProvider.cs" />
<Compile Include="Internal\Builders\DefaultSuiteBuilder.cs" />
<Compile Include="Internal\Builders\DefaultTestCaseBuilder.cs" />
<Compile Include="Internal\Builders\NamespaceTreeBuilder.cs" />
<Compile Include="Internal\Builders\NUnitTestCaseBuilder.cs" />
<Compile Include="Internal\Builders\NUnitTestFixtureBuilder.cs" />
<Compile Include="Internal\Builders\PairwiseStrategy.cs" />
<Compile Include="Internal\Builders\ParameterDataProvider.cs" />
<Compile Include="Internal\Builders\ParameterDataSourceProvider.cs" />
<Compile Include="Internal\Builders\ProviderCache.cs" />
<Compile Include="Internal\Builders\SequentialStrategy.cs" />
<Compile Include="Internal\Commands\ApplyChangesToContextCommand.cs" />
<Compile Include="Internal\Commands\CommandStage.cs" />
<Compile Include="Internal\Commands\DelegatingTestCommand.cs" />
<Compile Include="Internal\Commands\MaxTimeCommand.cs" />
<Compile Include="Internal\Commands\OneTimeSetUpCommand.cs" />
<Compile Include="Internal\Commands\OneTimeTearDownCommand.cs" />
<Compile Include="Internal\Commands\SetUpTearDownCommand.cs" />
<Compile Include="Internal\Commands\SetUpTearDownItem.cs" />
<Compile Include="Internal\Commands\SkipCommand.cs" />
<Compile Include="Internal\Commands\TestActionCommand.cs" />
<Compile Include="Internal\Commands\TestActionItem.cs" />
<Compile Include="Internal\Commands\TestCommand.cs" />
<Compile Include="Internal\Commands\TestMethodCommand.cs" />
<Compile Include="Internal\Commands\TheoryResultCommand.cs" />
<Compile Include="Internal\CultureDetector.cs" />
<Compile Include="Internal\ExceptionHelper.cs" />
<Compile Include="Internal\Execution\CommandBuilder.cs" />
<Compile Include="Internal\Execution\CompositeWorkItem.cs" />
<Compile Include="Internal\Execution\CountdownEvent.cs" />
<Compile Include="Internal\Execution\EventListenerTextWriter.cs" />
<Compile Include="Internal\Execution\EventPump.cs" />
<Compile Include="Internal\Execution\EventQueue.cs" />
<Compile Include="Internal\Execution\IWorkItemDispatcher.cs" />
<Compile Include="Internal\Execution\ParallelWorkItemDispatcher.cs" />
<Compile Include="Internal\Execution\QueuingEventListener.cs" />
<Compile Include="Internal\Execution\SimpleWorkItem.cs" />
<Compile Include="Internal\Execution\SimpleWorkItemDispatcher.cs" />
<Compile Include="Internal\Execution\TestWorker.cs" />
<Compile Include="Internal\Execution\TextCapture.cs" />
<Compile Include="Internal\Execution\TextMessageWriter.cs" />
<Compile Include="Internal\Execution\WorkItem.cs" />
<Compile Include="Internal\Execution\WorkItemQueue.cs" />
<Compile Include="Internal\Execution\WorkItemState.cs" />
<Compile Include="Internal\Execution\WorkShift.cs" />
<Compile Include="Internal\Filters\AndFilter.cs" />
<Compile Include="Internal\Filters\CategoryFilter.cs" />
<Compile Include="Internal\Filters\ClassNameFilter.cs" />
<Compile Include="Internal\Filters\CompositeFilter.cs" />
<Compile Include="Internal\Filters\FullNameFilter.cs" />
<Compile Include="Internal\Filters\IdFilter.cs" />
<Compile Include="Internal\Filters\MethodNameFilter.cs" />
<Compile Include="Internal\Filters\NotFilter.cs" />
<Compile Include="Internal\Filters\OrFilter.cs" />
<Compile Include="Internal\Filters\PropertyFilter.cs" />
<Compile Include="Internal\Filters\TestNameFilter.cs" />
<Compile Include="Internal\Filters\ValueMatchFilter.cs" />
<Compile Include="Internal\Logging\ILogger.cs" />
<Compile Include="Internal\Logging\InternalTrace.cs" />
<Compile Include="Internal\Logging\InternalTraceLevel.cs" />
<Compile Include="Internal\Logging\InternalTraceWriter.cs" />
<Compile Include="Internal\Logging\Logger.cs" />
<Compile Include="Internal\GenericMethodHelper.cs" />
<Compile Include="Internal\InvalidDataSourceException.cs" />
<Compile Include="Internal\InvalidTestFixtureException.cs" />
<Compile Include="Internal\MethodWrapper.cs" />
<Compile Include="Internal\NetCFExtensions.cs" />
<Compile Include="Internal\NUnitException.cs" />
<Compile Include="Internal\OSPlatform.cs" />
<Compile Include="Internal\ParameterWrapper.cs" />
<Compile Include="Internal\PlatformHelper.cs" />
<Compile Include="Internal\PropertyBag.cs" />
<Compile Include="Internal\PropertyNames.cs" />
<Compile Include="Internal\Randomizer.cs" />
<Compile Include="Internal\Reflect.cs" />
<Compile Include="Internal\Results\TestCaseResult.cs" />
<Compile Include="Internal\Results\TestResult.cs" />
<Compile Include="Internal\Results\TestSuiteResult.cs" />
<Compile Include="Internal\RuntimeFramework.cs" />
<Compile Include="Internal\StackFilter.cs" />
<Compile Include="Internal\StringUtil.cs" />
<Compile Include="Internal\TestCaseParameters.cs" />
<Compile Include="Internal\TestExecutionContext.cs" />
<Compile Include="Internal\TestExecutionStatus.cs" />
<Compile Include="Internal\TestFilter.cs" />
<Compile Include="Internal\TestFixtureParameters.cs" />
<Compile Include="Internal\TestListener.cs" />
<Compile Include="Internal\TestNameGenerator.cs" />
<Compile Include="Internal\TestParameters.cs" />
<Compile Include="Internal\TestProgressReporter.cs" />
<Compile Include="Internal\Tests\ParameterizedFixtureSuite.cs" />
<Compile Include="Internal\Tests\ParameterizedMethodSuite.cs" />
<Compile Include="Internal\Tests\SetUpFixture.cs" />
<Compile Include="Internal\Tests\Test.cs" />
<Compile Include="Internal\Tests\TestAssembly.cs" />
<Compile Include="Internal\Tests\TestFixture.cs" />
<Compile Include="Internal\Tests\TestMethod.cs" />
<Compile Include="Internal\Tests\TestSuite.cs" />
<Compile Include="Internal\ThreadUtility.cs" />
<Compile Include="Internal\TypeHelper.cs" />
<Compile Include="Internal\TypeWrapper.cs" />
<Compile Include="Is.cs" />
<Compile Include="ITestAction.cs" />
<Compile Include="Iz.cs" />
<Compile Include="List.cs" />
<Compile Include="ListMapper.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="SpecialValue.cs" />
<Compile Include="StringAssert.cs" />
<Compile Include="TestCaseData.cs" />
<Compile Include="TestContext.cs" />
<Compile Include="TestFixtureData.cs" />
<Compile Include="TestParameters.cs" />
<Compile Include="Throws.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="Attributes\AttributeHierarchy.txt" />
<Content Include="Interfaces\InterfaceChanges.txt" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
</ItemGroup>
<ItemGroup>
<Folder Include="Compatibility\System.Collections\" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CompactFramework.CSharp.targets" />
<ProjectExtensions>
<VisualStudio>
<FlavorProperties GUID="{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}">
<HostingProcess disable="1" />
</FlavorProperties>
</VisualStudio>
</ProjectExtensions>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

Просмотреть файл

@ -1,427 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{D6FBBB3A-F6B8-45BB-B657-A7226AB96624}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnit.Framework</RootNamespace>
<AssemblyName>nunit.framework</AssemblyName>
<DefaultLanguage>en-US</DefaultLanguage>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<TargetFrameworkProfile>Profile259</TargetFrameworkProfile>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<IntermediateOutputPath>obj\$(Configuration)\portable\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\portable\</OutputPath>
<DefineConstants>TRACE;DEBUG;NUNIT_FRAMEWORK;PORTABLE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<DocumentationFile>..\..\..\bin\Debug\portable\nunit.framework.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\portable\</OutputPath>
<DefineConstants>TRACE;NUNIT_FRAMEWORK;PORTABLE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<DocumentationFile>..\..\..\bin\Release\portable\nunit.framework.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<!-- A reference to the entire .NET Framework is automatically included -->
<Content Include="Attributes\AttributeHierarchy.txt" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="ActionTargets.cs" />
<Compile Include="Api\DefaultTestAssemblyBuilder.cs" />
<Compile Include="Api\FrameworkController.cs" />
<Compile Include="Api\FrameworkPackageSettings.cs" />
<Compile Include="Api\ITestAssemblyBuilder.cs" />
<Compile Include="Api\ITestAssemblyRunner.cs" />
<Compile Include="Api\NUnitTestAssemblyRunner.cs" />
<Compile Include="Assert.Comparisons.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.Conditions.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.cs" />
<Compile Include="Assert.Equality.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.Exceptions.Async.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.Exceptions.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.That.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="Assert.Types.cs">
<DependentUpon>Assert.cs</DependentUpon>
</Compile>
<Compile Include="AssertionHelper.cs" />
<Compile Include="Assume.cs" />
<Compile Include="Attributes\AuthorAttribute.cs" />
<Compile Include="Attributes\CategoryAttribute.cs" />
<Compile Include="Attributes\CombinatorialAttribute.cs" />
<Compile Include="Attributes\CombiningStrategyAttribute.cs" />
<Compile Include="Attributes\CultureAttribute.cs" />
<Compile Include="Attributes\DataAttribute.cs" />
<Compile Include="Attributes\DatapointAttribute.cs" />
<Compile Include="Attributes\DatapointsAttribute.cs" />
<Compile Include="Attributes\DatapointSourceAttribute.cs" />
<Compile Include="Attributes\DescriptionAttribute.cs" />
<Compile Include="Attributes\ExplicitAttribute.cs" />
<Compile Include="Attributes\IgnoreAttribute.cs" />
<Compile Include="Attributes\IncludeExcludeAttribute.cs" />
<Compile Include="Attributes\SingleThreadedAttribute.cs" />
<Compile Include="Attributes\TestAssemblyDirectoryResolveAttribute.cs" />
<Compile Include="Attributes\LevelOfParallelismAttribute.cs" />
<Compile Include="Attributes\MaxTimeAttribute.cs" />
<Compile Include="Attributes\NUnitAttribute.cs" />
<Compile Include="Attributes\OneTimeSetUpAttribute.cs" />
<Compile Include="Attributes\OneTimeTearDownAttribute.cs" />
<Compile Include="Attributes\OrderAttribute.cs" />
<Compile Include="Attributes\PairwiseAttribute.cs" />
<Compile Include="Attributes\ParallelizableAttribute.cs" />
<Compile Include="Attributes\ParallelScope.cs" />
<Compile Include="Attributes\PlatformAttribute.cs" />
<Compile Include="Attributes\PropertyAttribute.cs" />
<Compile Include="Attributes\RandomAttribute.cs" />
<Compile Include="Attributes\RangeAttribute.cs" />
<Compile Include="Attributes\RepeatAttribute.cs" />
<Compile Include="Attributes\RequiresMTAAtribute.cs" />
<Compile Include="Attributes\RequiresSTAAttribute.cs" />
<Compile Include="Attributes\RequiresThreadAttribute.cs" />
<Compile Include="Attributes\RetryAttribute.cs" />
<Compile Include="Attributes\SequentialAttribute.cs" />
<Compile Include="Attributes\SetCultureAttribute.cs" />
<Compile Include="Attributes\SetUICultureAttribute.cs" />
<Compile Include="Attributes\SetUpAttribute.cs" />
<Compile Include="Attributes\SetUpFixtureAttribute.cs" />
<Compile Include="Attributes\TearDownAttribute.cs" />
<Compile Include="Attributes\TestActionAttribute.cs" />
<Compile Include="Attributes\TestAttribute.cs" />
<Compile Include="Attributes\TestCaseAttribute.cs" />
<Compile Include="Attributes\TestCaseSourceAttribute.cs" />
<Compile Include="Attributes\TestFixtureAttribute.cs" />
<Compile Include="Attributes\TestFixtureSetUpAttribute.cs" />
<Compile Include="Attributes\TestFixtureSourceAttribute.cs" />
<Compile Include="Attributes\TestFixtureTearDownAttribute.cs" />
<Compile Include="Attributes\TestOfAttribute.cs" />
<Compile Include="Attributes\TheoryAttribute.cs" />
<Compile Include="Attributes\TimeoutAttribute.cs" />
<Compile Include="Attributes\ValuesAttribute.cs" />
<Compile Include="Attributes\ValueSourceAttribute.cs" />
<Compile Include="CollectionAssert.cs" />
<Compile Include="Compatibility\AttributeHelper.cs" />
<Compile Include="Compatibility\BindingFlags.cs" />
<Compile Include="Compatibility\LongLivedMarshalByRefObject.cs" />
<Compile Include="Compatibility\ReflectionExtensions.cs" />
<Compile Include="Compatibility\System.Web.UI\ICallbackEventHandler.cs" />
<Compile Include="Constraints\AllItemsConstraint.cs" />
<Compile Include="Constraints\AndConstraint.cs" />
<Compile Include="Constraints\AssignableFromConstraint.cs" />
<Compile Include="Constraints\AssignableToConstraint.cs" />
<Compile Include="Constraints\AttributeConstraint.cs" />
<Compile Include="Constraints\AttributeExistsConstraint.cs" />
<Compile Include="Constraints\BinaryConstraint.cs" />
<Compile Include="Constraints\BinarySerializableConstraint.cs" />
<Compile Include="Constraints\CollectionConstraint.cs" />
<Compile Include="Constraints\CollectionContainsConstraint.cs" />
<Compile Include="Constraints\CollectionEquivalentConstraint.cs" />
<Compile Include="Constraints\CollectionItemsEqualConstraint.cs" />
<Compile Include="Constraints\CollectionOrderedConstraint.cs" />
<Compile Include="Constraints\CollectionSubsetConstraint.cs" />
<Compile Include="Constraints\CollectionSupersetConstraint.cs" />
<Compile Include="Constraints\CollectionTally.cs" />
<Compile Include="Constraints\ComparisonAdapter.cs" />
<Compile Include="Constraints\ComparisonConstraint.cs" />
<Compile Include="Constraints\Constraint.cs" />
<Compile Include="Constraints\ConstraintBuilder.cs" />
<Compile Include="Constraints\ConstraintExpression.cs" />
<Compile Include="Constraints\ConstraintFactory.cs" />
<Compile Include="Constraints\ConstraintResult.cs" />
<Compile Include="Constraints\ContainsConstraint.cs" />
<Compile Include="Constraints\DelayedConstraint.cs" />
<Compile Include="Constraints\DictionaryContainsKeyConstraint.cs" />
<Compile Include="Constraints\DictionaryContainsValueConstraint.cs" />
<Compile Include="Constraints\EmptyCollectionConstraint.cs" />
<Compile Include="Constraints\EmptyConstraint.cs" />
<Compile Include="Constraints\EmptyDirectoryConstraint.cs" />
<Compile Include="Constraints\EmptyStringConstraint.cs" />
<Compile Include="Constraints\EndsWithConstraint.cs" />
<Compile Include="Constraints\EqualConstraint.cs" />
<Compile Include="Constraints\EqualConstraintResult.cs" />
<Compile Include="Constraints\EqualityAdapter.cs" />
<Compile Include="Constraints\ExactCountConstraint.cs" />
<Compile Include="Constraints\ExactTypeConstraint.cs" />
<Compile Include="Constraints\ExceptionNotThrownConstraint.cs" />
<Compile Include="Constraints\ExceptionTypeConstraint.cs" />
<Compile Include="Constraints\FalseConstraint.cs" />
<Compile Include="Constraints\FileExistsConstraint.cs" />
<Compile Include="Constraints\FileOrDirectoryExistsConstraint.cs" />
<Compile Include="Constraints\FloatingPointNumerics.cs" />
<Compile Include="Constraints\GreaterThanConstraint.cs" />
<Compile Include="Constraints\GreaterThanOrEqualConstraint.cs" />
<Compile Include="Constraints\IConstraint.cs" />
<Compile Include="Constraints\InstanceOfTypeConstraint.cs" />
<Compile Include="Constraints\IResolveConstraint.cs" />
<Compile Include="Constraints\LessThanConstraint.cs" />
<Compile Include="Constraints\LessThanOrEqualConstraint.cs" />
<Compile Include="Constraints\MessageWriter.cs" />
<Compile Include="Constraints\MsgUtils.cs" />
<Compile Include="Constraints\NaNConstraint.cs" />
<Compile Include="Constraints\NoItemConstraint.cs" />
<Compile Include="Constraints\NotConstraint.cs" />
<Compile Include="Constraints\NullConstraint.cs" />
<Compile Include="Constraints\Numerics.cs" />
<Compile Include="Constraints\NUnitComparer.cs" />
<Compile Include="Constraints\NUnitEqualityComparer.cs" />
<Compile Include="Constraints\Operators\AllOperator.cs" />
<Compile Include="Constraints\Operators\AndOperator.cs" />
<Compile Include="Constraints\Operators\AttributeOperator.cs" />
<Compile Include="Constraints\Operators\BinaryOperator.cs" />
<Compile Include="Constraints\Operators\CollectionOperator.cs" />
<Compile Include="Constraints\Operators\ConstraintOperator.cs" />
<Compile Include="Constraints\Operators\ExactCountOperator.cs" />
<Compile Include="Constraints\Operators\NoneOperator.cs" />
<Compile Include="Constraints\Operators\NotOperator.cs" />
<Compile Include="Constraints\Operators\OrOperator.cs" />
<Compile Include="Constraints\Operators\PrefixOperator.cs" />
<Compile Include="Constraints\Operators\PropOperator.cs" />
<Compile Include="Constraints\Operators\SelfResolvingOperator.cs" />
<Compile Include="Constraints\Operators\SomeOperator.cs" />
<Compile Include="Constraints\Operators\ThrowsOperator.cs" />
<Compile Include="Constraints\Operators\WithOperator.cs" />
<Compile Include="Constraints\OrConstraint.cs" />
<Compile Include="Constraints\PathConstraint.cs" />
<Compile Include="Constraints\PredicateConstraint.cs" />
<Compile Include="Constraints\PrefixConstraint.cs" />
<Compile Include="Constraints\PropertyConstraint.cs" />
<Compile Include="Constraints\PropertyExistsConstraint.cs" />
<Compile Include="Constraints\RangeConstraint.cs" />
<Compile Include="Constraints\RegexConstraint.cs" />
<Compile Include="Constraints\ResolvableConstraintExpression.cs" />
<Compile Include="Constraints\ReusableConstraint.cs" />
<Compile Include="Constraints\SameAsConstraint.cs" />
<Compile Include="Constraints\SamePathConstraint.cs" />
<Compile Include="Constraints\SamePathOrUnderConstraint.cs" />
<Compile Include="Constraints\SomeItemsConstraint.cs" />
<Compile Include="Constraints\StartsWithConstraint.cs" />
<Compile Include="Constraints\StringConstraint.cs" />
<Compile Include="Constraints\SubPathConstraint.cs" />
<Compile Include="Constraints\SubstringConstraint.cs" />
<Compile Include="Constraints\ThrowsConstraint.cs" />
<Compile Include="Constraints\ThrowsExceptionConstraint.cs" />
<Compile Include="Constraints\ThrowsNothingConstraint.cs" />
<Compile Include="Constraints\Tolerance.cs" />
<Compile Include="Constraints\ToleranceMode.cs" />
<Compile Include="Constraints\TrueConstraint.cs" />
<Compile Include="Constraints\TypeConstraint.cs" />
<Compile Include="Constraints\UniqueItemsConstraint.cs" />
<Compile Include="Constraints\XmlSerializableConstraint.cs" />
<Compile Include="Contains.cs" />
<Compile Include="DirectoryAssert.cs" />
<Compile Include="Does.cs" />
<Compile Include="Env.cs" />
<Compile Include="Exceptions\AssertionException.cs" />
<Compile Include="Exceptions\IgnoreException.cs" />
<Compile Include="Exceptions\InconclusiveException.cs" />
<Compile Include="Exceptions\ResultStateException.cs" />
<Compile Include="Exceptions\SuccessException.cs" />
<Compile Include="FileAssert.cs" />
<Compile Include="GlobalSettings.cs" />
<Compile Include="Guard.cs" />
<Compile Include="Has.cs" />
<Compile Include="Interfaces\IApplyToContext.cs" />
<Compile Include="Interfaces\IApplyToTest.cs" />
<Compile Include="Interfaces\ICombiningStrategy.cs" />
<Compile Include="Interfaces\ICommandWrapper.cs" />
<Compile Include="Interfaces\IDisposableFixture.cs" />
<Compile Include="Interfaces\IFixtureBuilder.cs" />
<Compile Include="Interfaces\IImplyFixture.cs" />
<Compile Include="Interfaces\IMethodInfo.cs" />
<Compile Include="Interfaces\IParameterDataProvider.cs" />
<Compile Include="Interfaces\IParameterDataSource.cs" />
<Compile Include="Interfaces\IParameterInfo.cs" />
<Compile Include="Interfaces\IPropertyBag.cs" />
<Compile Include="Interfaces\IReflectionInfo.cs" />
<Compile Include="Interfaces\ISimpleTestBuilder.cs" />
<Compile Include="Interfaces\ISuiteBuilder.cs" />
<Compile Include="Interfaces\ITest.cs" />
<Compile Include="Interfaces\ITestBuilder.cs" />
<Compile Include="Interfaces\ITestCaseBuilder.cs" />
<Compile Include="Interfaces\ITestCaseData.cs" />
<Compile Include="Interfaces\ITestData.cs" />
<Compile Include="Interfaces\ITestFilter.cs" />
<Compile Include="Interfaces\ITestFixtureData.cs" />
<Compile Include="Interfaces\ITestListener.cs" />
<Compile Include="Interfaces\ITestResult.cs" />
<Compile Include="Interfaces\ITypeInfo.cs" />
<Compile Include="Interfaces\IXmlNodeBuilder.cs" />
<Compile Include="Interfaces\ResultState.cs" />
<Compile Include="Interfaces\RunState.cs" />
<Compile Include="Interfaces\TestOutput.cs" />
<Compile Include="Interfaces\TestStatus.cs" />
<Compile Include="Interfaces\TNode.cs" />
<Compile Include="Internal\ActionsHelper.cs" />
<Compile Include="Internal\AssemblyHelper.cs" />
<Compile Include="Internal\AsyncInvocationRegion.cs" />
<Compile Include="Internal\Builders\CombinatorialStrategy.cs" />
<Compile Include="Internal\Builders\DatapointProvider.cs" />
<Compile Include="Internal\Builders\DefaultSuiteBuilder.cs" />
<Compile Include="Internal\Builders\DefaultTestCaseBuilder.cs" />
<Compile Include="Internal\Builders\NamespaceTreeBuilder.cs" />
<Compile Include="Internal\Builders\NUnitTestCaseBuilder.cs" />
<Compile Include="Internal\Builders\NUnitTestFixtureBuilder.cs" />
<Compile Include="Internal\Builders\PairwiseStrategy.cs" />
<Compile Include="Internal\Builders\ParameterDataProvider.cs" />
<Compile Include="Internal\Builders\ParameterDataSourceProvider.cs" />
<Compile Include="Internal\Builders\ProviderCache.cs" />
<Compile Include="Internal\Builders\SequentialStrategy.cs" />
<Compile Include="Internal\Commands\ApplyChangesToContextCommand.cs" />
<Compile Include="Internal\Commands\CommandStage.cs" />
<Compile Include="Internal\Commands\DelegatingTestCommand.cs" />
<Compile Include="Internal\Commands\MaxTimeCommand.cs" />
<Compile Include="Internal\Commands\OneTimeSetUpCommand.cs" />
<Compile Include="Internal\Commands\OneTimeTearDownCommand.cs" />
<Compile Include="Internal\Commands\SetUpTearDownCommand.cs" />
<Compile Include="Internal\Commands\SetUpTearDownItem.cs" />
<Compile Include="Internal\Commands\SkipCommand.cs" />
<Compile Include="Internal\Commands\TestActionCommand.cs" />
<Compile Include="Internal\Commands\TestActionItem.cs" />
<Compile Include="Internal\Commands\TestCommand.cs" />
<Compile Include="Internal\Commands\TestMethodCommand.cs" />
<Compile Include="Internal\Commands\TheoryResultCommand.cs" />
<Compile Include="Internal\CultureDetector.cs" />
<Compile Include="Internal\ExceptionHelper.cs" />
<Compile Include="Internal\Execution\CommandBuilder.cs" />
<Compile Include="Internal\Execution\CompositeWorkItem.cs" />
<Compile Include="Internal\Execution\CountdownEvent.cs" />
<Compile Include="Internal\Execution\EventListenerTextWriter.cs" />
<Compile Include="Internal\Execution\EventPump.cs" />
<Compile Include="Internal\Execution\EventQueue.cs" />
<Compile Include="Internal\Execution\IWorkItemDispatcher.cs" />
<Compile Include="Internal\Execution\ParallelWorkItemDispatcher.cs" />
<Compile Include="Internal\Execution\QueuingEventListener.cs" />
<Compile Include="Internal\Execution\SimpleWorkItem.cs" />
<Compile Include="Internal\Execution\SimpleWorkItemDispatcher.cs" />
<Compile Include="Internal\Execution\TestWorker.cs" />
<Compile Include="Internal\Execution\TextCapture.cs" />
<Compile Include="Internal\Execution\TextMessageWriter.cs" />
<Compile Include="Internal\Execution\WorkItem.cs" />
<Compile Include="Internal\Execution\WorkItemQueue.cs" />
<Compile Include="Internal\Execution\WorkItemState.cs" />
<Compile Include="Internal\Execution\WorkShift.cs" />
<Compile Include="Internal\Filters\AndFilter.cs" />
<Compile Include="Internal\Filters\CategoryFilter.cs" />
<Compile Include="Internal\Filters\ClassNameFilter.cs" />
<Compile Include="Internal\Filters\CompositeFilter.cs" />
<Compile Include="Internal\Filters\FullNameFilter.cs" />
<Compile Include="Internal\Filters\IdFilter.cs" />
<Compile Include="Internal\Filters\MethodNameFilter.cs" />
<Compile Include="Internal\Filters\NotFilter.cs" />
<Compile Include="Internal\Filters\OrFilter.cs" />
<Compile Include="Internal\Filters\PropertyFilter.cs" />
<Compile Include="Internal\Filters\TestNameFilter.cs" />
<Compile Include="Internal\Filters\ValueMatchFilter.cs" />
<Compile Include="Internal\GenericMethodHelper.cs" />
<Compile Include="Internal\InvalidDataSourceException.cs" />
<Compile Include="Internal\InvalidTestFixtureException.cs" />
<Compile Include="Internal\Logging\ILogger.cs" />
<Compile Include="Internal\Logging\InternalTrace.cs" />
<Compile Include="Internal\Logging\InternalTraceLevel.cs" />
<Compile Include="Internal\Logging\InternalTraceWriter.cs" />
<Compile Include="Internal\Logging\Logger.cs" />
<Compile Include="Internal\MethodWrapper.cs" />
<Compile Include="Internal\NetCFExtensions.cs" />
<Compile Include="Internal\NUnitException.cs" />
<Compile Include="Internal\OSPlatform.cs" />
<Compile Include="Internal\ParameterWrapper.cs" />
<Compile Include="Internal\PlatformHelper.cs" />
<Compile Include="Internal\PropertyBag.cs" />
<Compile Include="Internal\PropertyNames.cs" />
<Compile Include="Internal\Randomizer.cs" />
<Compile Include="Internal\Reflect.cs" />
<Compile Include="Internal\Results\TestCaseResult.cs" />
<Compile Include="Internal\Results\TestResult.cs" />
<Compile Include="Internal\Results\TestSuiteResult.cs" />
<Compile Include="Internal\RuntimeFramework.cs" />
<Compile Include="Internal\StackFilter.cs" />
<Compile Include="Internal\StringUtil.cs" />
<Compile Include="Internal\TestCaseParameters.cs" />
<Compile Include="Internal\TestExecutionContext.cs" />
<Compile Include="Internal\TestExecutionStatus.cs" />
<Compile Include="Internal\TestFilter.cs" />
<Compile Include="Internal\TestFixtureParameters.cs" />
<Compile Include="Internal\TestListener.cs" />
<Compile Include="Internal\TestNameGenerator.cs" />
<Compile Include="Internal\TestParameters.cs" />
<Compile Include="Internal\TestProgressReporter.cs" />
<Compile Include="Internal\Tests\ParameterizedFixtureSuite.cs" />
<Compile Include="Internal\Tests\ParameterizedMethodSuite.cs" />
<Compile Include="Internal\Tests\SetUpFixture.cs" />
<Compile Include="Internal\Tests\Test.cs" />
<Compile Include="Internal\Tests\TestAssembly.cs" />
<Compile Include="Internal\Tests\TestFixture.cs" />
<Compile Include="Internal\Tests\TestMethod.cs" />
<Compile Include="Internal\Tests\TestSuite.cs" />
<Compile Include="Internal\ThreadUtility.cs" />
<Compile Include="Internal\TypeHelper.cs" />
<Compile Include="Internal\TypeWrapper.cs" />
<Compile Include="Is.cs" />
<Compile Include="ITestAction.cs" />
<Compile Include="Iz.cs" />
<Compile Include="List.cs" />
<Compile Include="ListMapper.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="SpecialValue.cs" />
<Compile Include="StringAssert.cs" />
<Compile Include="TestCaseData.cs" />
<Compile Include="TestContext.cs" />
<Compile Include="TestFixtureData.cs" />
<Compile Include="TestParameters.cs" />
<Compile Include="Throws.cs" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
</ItemGroup>
<ItemGroup>
<Folder Include="Compatibility\System\" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

Просмотреть файл

@ -1,112 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<PropertyGroup>
<ProjectType>Local</ProjectType>
<ProjectGuid>{2E368281-3BA8-4050-B05E-0E0E43F8F446}</ProjectGuid>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<AssemblyKeyContainerName>
</AssemblyKeyContainerName>
<AssemblyName>mock-assembly</AssemblyName>
<DefaultClientScript>JScript</DefaultClientScript>
<DefaultHTMLPageLayout>Grid</DefaultHTMLPageLayout>
<DefaultTargetSchema>IE50</DefaultTargetSchema>
<DelaySign>false</DelaySign>
<OutputType>Exe</OutputType>
<RootNamespace>NUnit.Tests</RootNamespace>
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
<FileUpgradeFlags>
</FileUpgradeFlags>
<UpgradeBackupLocation>
</UpgradeBackupLocation>
<OldToolsVersion>3.5</OldToolsVersion>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<IntermediateOutputPath>obj\$(Configuration)\net-2.0\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<OutputPath>..\..\..\bin\Debug\net-2.0\</OutputPath>
<BaseAddress>285212672</BaseAddress>
<ConfigurationOverrideFile>
</ConfigurationOverrideFile>
<DefineConstants>TRACE;DEBUG;NET_2_0</DefineConstants>
<DebugSymbols>true</DebugSymbols>
<FileAlignment>4096</FileAlignment>
<Optimize>false</Optimize>
<RegisterForComInterop>false</RegisterForComInterop>
<RemoveIntegerChecks>false</RemoveIntegerChecks>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<DebugType>full</DebugType>
<ErrorReport>prompt</ErrorReport>
<Externalconsole>true</Externalconsole>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<OutputPath>..\..\..\bin\Release\net-2.0\</OutputPath>
<BaseAddress>285212672</BaseAddress>
<ConfigurationOverrideFile>
</ConfigurationOverrideFile>
<DefineConstants>TRACE;NET_2_0</DefineConstants>
<FileAlignment>4096</FileAlignment>
<Optimize>true</Optimize>
<RegisterForComInterop>false</RegisterForComInterop>
<RemoveIntegerChecks>false</RemoveIntegerChecks>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<DebugType>none</DebugType>
<ErrorReport>prompt</ErrorReport>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="System">
<Name>System</Name>
</Reference>
<Reference Include="System.Data">
<Name>System.Data</Name>
</Reference>
<Reference Include="System.Xml">
<Name>System.XML</Name>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="MockAssembly.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-2.0.csproj">
<Project>{12B66B03-90F1-4992-BD33-BDF3C69AE49E}</Project>
<Name>nunit.framework-2.0</Name>
</ProjectReference>
<ProjectReference Include="..\nunitlite\nunitlite-2.0.csproj">
<Project>{28C7B9D6-BE1F-45E5-952C-0D5C9CA3EFDF}</Project>
<Name>nunitlite-2.0</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PreBuildEvent>
</PreBuildEvent>
<PostBuildEvent>
</PostBuildEvent>
</PropertyGroup>
</Project>

Просмотреть файл

@ -1,112 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<PropertyGroup>
<ProjectType>Local</ProjectType>
<ProjectGuid>{8FCE12F2-FE7B-43D0-94E9-3B71FECAFE64}</ProjectGuid>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<AssemblyKeyContainerName>
</AssemblyKeyContainerName>
<AssemblyName>mock-assembly</AssemblyName>
<DefaultClientScript>JScript</DefaultClientScript>
<DefaultHTMLPageLayout>Grid</DefaultHTMLPageLayout>
<DefaultTargetSchema>IE50</DefaultTargetSchema>
<DelaySign>false</DelaySign>
<OutputType>Exe</OutputType>
<RootNamespace>NUnit.Tests</RootNamespace>
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
<FileUpgradeFlags>
</FileUpgradeFlags>
<UpgradeBackupLocation>
</UpgradeBackupLocation>
<OldToolsVersion>3.5</OldToolsVersion>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<IntermediateOutputPath>obj\$(Configuration)\net-3.5\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<OutputPath>..\..\..\bin\Debug\net-3.5\</OutputPath>
<BaseAddress>285212672</BaseAddress>
<ConfigurationOverrideFile>
</ConfigurationOverrideFile>
<DefineConstants>TRACE;DEBUG;NET_3_5</DefineConstants>
<DebugSymbols>true</DebugSymbols>
<FileAlignment>4096</FileAlignment>
<Optimize>false</Optimize>
<RegisterForComInterop>false</RegisterForComInterop>
<RemoveIntegerChecks>false</RemoveIntegerChecks>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<DebugType>full</DebugType>
<ErrorReport>prompt</ErrorReport>
<Externalconsole>true</Externalconsole>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<OutputPath>..\..\..\bin\Release\net-3.5\</OutputPath>
<BaseAddress>285212672</BaseAddress>
<ConfigurationOverrideFile>
</ConfigurationOverrideFile>
<DefineConstants>TRACE;NET_3_5</DefineConstants>
<FileAlignment>4096</FileAlignment>
<Optimize>true</Optimize>
<RegisterForComInterop>false</RegisterForComInterop>
<RemoveIntegerChecks>false</RemoveIntegerChecks>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<DebugType>none</DebugType>
<ErrorReport>prompt</ErrorReport>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="System">
<Name>System</Name>
</Reference>
<Reference Include="System.Data">
<Name>System.Data</Name>
</Reference>
<Reference Include="System.Xml">
<Name>System.XML</Name>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="MockAssembly.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-3.5.csproj">
<Project>{7FA125B4-E377-4D4C-AECB-17B934E3A4B3}</Project>
<Name>nunit.framework-3.5</Name>
</ProjectReference>
<ProjectReference Include="..\nunitlite\nunitlite-3.5.csproj">
<Project>{82F93F6E-5C10-4CC7-BC65-AC0B9CA6D39A}</Project>
<Name>nunitlite-3.5</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PreBuildEvent>
</PreBuildEvent>
<PostBuildEvent>
</PostBuildEvent>
</PropertyGroup>
</Project>

Просмотреть файл

@ -1,110 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<PropertyGroup>
<ProjectType>Local</ProjectType>
<ProjectGuid>{DDCE1AE3-AA0D-4E2D-AD1B-8CA322AFA7DD}</ProjectGuid>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<AssemblyKeyContainerName>
</AssemblyKeyContainerName>
<AssemblyName>mock-assembly</AssemblyName>
<DefaultClientScript>JScript</DefaultClientScript>
<DefaultHTMLPageLayout>Grid</DefaultHTMLPageLayout>
<DefaultTargetSchema>IE50</DefaultTargetSchema>
<DelaySign>false</DelaySign>
<OutputType>Exe</OutputType>
<RootNamespace>NUnit.Tests</RootNamespace>
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
<FileUpgradeFlags>
</FileUpgradeFlags>
<UpgradeBackupLocation>
</UpgradeBackupLocation>
<OldToolsVersion>3.5</OldToolsVersion>
<IntermediateOutputPath>obj\$(Configuration)\net-4.0\</IntermediateOutputPath>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<OutputPath>..\..\..\bin\Debug\net-4.0\</OutputPath>
<BaseAddress>285212672</BaseAddress>
<ConfigurationOverrideFile>
</ConfigurationOverrideFile>
<DefineConstants>TRACE;DEBUG;NET_4_0</DefineConstants>
<DebugSymbols>true</DebugSymbols>
<FileAlignment>4096</FileAlignment>
<Optimize>false</Optimize>
<RegisterForComInterop>false</RegisterForComInterop>
<RemoveIntegerChecks>false</RemoveIntegerChecks>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<DebugType>full</DebugType>
<ErrorReport>prompt</ErrorReport>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<OutputPath>..\..\..\bin\Release\net-4.0\</OutputPath>
<BaseAddress>285212672</BaseAddress>
<ConfigurationOverrideFile>
</ConfigurationOverrideFile>
<DefineConstants>TRACE;NET_4_0</DefineConstants>
<FileAlignment>4096</FileAlignment>
<Optimize>true</Optimize>
<RegisterForComInterop>false</RegisterForComInterop>
<RemoveIntegerChecks>false</RemoveIntegerChecks>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<DebugType>none</DebugType>
<ErrorReport>prompt</ErrorReport>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="System">
<Name>System</Name>
</Reference>
<Reference Include="System.Data">
<Name>System.Data</Name>
</Reference>
<Reference Include="System.Xml">
<Name>System.XML</Name>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="MockAssembly.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-4.0.csproj">
<Project>{6A281C98-B74D-403B-8536-966871B992E3}</Project>
<Name>nunit.framework-4.0</Name>
</ProjectReference>
<ProjectReference Include="..\nunitlite\nunitlite-4.0.csproj">
<Project>{DBD0C8B0-BE4E-4CBF-AAD4-44BEA2EA830B}</Project>
<Name>nunitlite-4.0</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PreBuildEvent>
</PreBuildEvent>
<PostBuildEvent>
</PostBuildEvent>
</PropertyGroup>
</Project>

Просмотреть файл

@ -1,114 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<PropertyGroup>
<ProjectType>Local</ProjectType>
<ProjectGuid>{C3264FF3-E2D7-48D7-93A7-CDC9A827AD9D}</ProjectGuid>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<AssemblyKeyContainerName>
</AssemblyKeyContainerName>
<AssemblyName>mock-assembly</AssemblyName>
<DefaultClientScript>JScript</DefaultClientScript>
<DefaultHTMLPageLayout>Grid</DefaultHTMLPageLayout>
<DefaultTargetSchema>IE50</DefaultTargetSchema>
<DelaySign>false</DelaySign>
<OutputType>Exe</OutputType>
<RootNamespace>NUnit.Tests</RootNamespace>
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
<FileUpgradeFlags>
</FileUpgradeFlags>
<UpgradeBackupLocation>
</UpgradeBackupLocation>
<OldToolsVersion>3.5</OldToolsVersion>
<IntermediateOutputPath>obj\$(Configuration)\net-4.5\</IntermediateOutputPath>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<OutputPath>..\..\..\bin\Debug\net-4.5\</OutputPath>
<BaseAddress>285212672</BaseAddress>
<ConfigurationOverrideFile>
</ConfigurationOverrideFile>
<DefineConstants>TRACE;DEBUG;NET_4_5</DefineConstants>
<DebugSymbols>true</DebugSymbols>
<FileAlignment>4096</FileAlignment>
<Optimize>false</Optimize>
<RegisterForComInterop>false</RegisterForComInterop>
<RemoveIntegerChecks>false</RemoveIntegerChecks>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<DebugType>full</DebugType>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>false</Prefer32Bit>
<Externalconsole>true</Externalconsole>
<Commandlineparameters>--test:NUnit.Tests.Assemblies.MockTestFixture -V --noheader</Commandlineparameters>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<OutputPath>..\..\..\bin\Release\net-4.5\</OutputPath>
<BaseAddress>285212672</BaseAddress>
<ConfigurationOverrideFile>
</ConfigurationOverrideFile>
<DefineConstants>TRACE;NET_4_5</DefineConstants>
<FileAlignment>4096</FileAlignment>
<Optimize>true</Optimize>
<RegisterForComInterop>false</RegisterForComInterop>
<RemoveIntegerChecks>false</RemoveIntegerChecks>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<DebugType>none</DebugType>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="System">
<Name>System</Name>
</Reference>
<Reference Include="System.Data">
<Name>System.Data</Name>
</Reference>
<Reference Include="System.Xml">
<Name>System.XML</Name>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="MockAssembly.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-4.5.csproj">
<Project>{D209C368-1277-4EA6-A887-AA6EBA51AB99}</Project>
<Name>nunit.framework-4.5</Name>
</ProjectReference>
<ProjectReference Include="..\nunitlite\nunitlite-4.5.csproj">
<Project>{46EC0BC1-8F51-4B4D-B967-2EE452EA68FC}</Project>
<Name>nunitlite-4.5</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PreBuildEvent>
</PreBuildEvent>
<PostBuildEvent>
</PostBuildEvent>
</PropertyGroup>
</Project>

Просмотреть файл

@ -1,100 +0,0 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{D40A4728-2F9B-41D7-AAD9-7AD95D0032C3}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnit.Tests</RootNamespace>
<AssemblyName>mock-assembly</AssemblyName>
<ProjectTypeGuids>{4D628B5B-2FBC-4AA6-8C16-197242AEB884};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<PlatformFamilyName>PocketPC</PlatformFamilyName>
<PlatformID>4118C335-430C-497f-BE48-11C3316B135E</PlatformID>
<OSVersion>5.1</OSVersion>
<DeployDirSuffix>mock_nunit_assembly_netcf_3._5</DeployDirSuffix>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<NativePlatformName>Windows Mobile 5.0 Pocket PC SDK</NativePlatformName>
<FormFactorID>
</FormFactorID>
<StartupObject>
</StartupObject>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\netcf-3.5\</OutputPath>
<DefineConstants>TRACE;DEBUG;NETCF;NETCF_3_5</DefineConstants>
<NoStdLib>true</NoStdLib>
<NoConfig>true</NoConfig>
<ErrorReport>prompt</ErrorReport>
<FileAlignment>512</FileAlignment>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
<IntermediateOutputPath>obj\$(Configuration)\netcf-3.5\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\netcf-3.5\</OutputPath>
<DefineConstants>TRACE;NETCF;NETCF_3_5</DefineConstants>
<NoStdLib>true</NoStdLib>
<NoConfig>true</NoConfig>
<ErrorReport>prompt</ErrorReport>
<FileAlignment>512</FileAlignment>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
</PropertyGroup>
<ItemGroup>
<Reference Include="mscorlib" />
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="MockAssembly.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-netcf-3.5.csproj">
<Project>{B41DB8FB-0D2F-45CE-9345-AF469FC05EE8}</Project>
<Name>nunit.framework-netcf-3.5</Name>
</ProjectReference>
<ProjectReference Include="..\nunitlite\nunitlite-netcf-3.5.csproj">
<Project>{FCB4F998-02D6-4D7F-A188-E0FB1F12F151}</Project>
<Name>nunitlite-netcf-3.5</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CompactFramework.CSharp.targets" />
<ProjectExtensions>
<VisualStudio>
<FlavorProperties GUID="{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}">
<HostingProcess disable="1" />
</FlavorProperties>
</VisualStudio>
</ProjectExtensions>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

Просмотреть файл

@ -1,74 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<MinimumVisualStudioVersion>10.0</MinimumVisualStudioVersion>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{8C53C716-3E54-4DFE-8CD9-F4099042FCFA}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnit.Tests</RootNamespace>
<AssemblyName>mock-assembly</AssemblyName>
<TargetFrameworkProfile>Profile259</TargetFrameworkProfile>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<IntermediateOutputPath>obj\$(Configuration)\portable\</IntermediateOutputPath>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\portable\</OutputPath>
<DefineConstants>TRACE;DEBUG;PORTABLE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\portable\</OutputPath>
<DefineConstants>TRACE;PORTABLE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<!-- A reference to the entire .NET Framework is automatically included -->
<ProjectReference Include="..\framework\nunit.framework-portable.csproj">
<Project>{D6FBBB3A-F6B8-45BB-B657-A7226AB96624}</Project>
<Name>nunit.framework-portable</Name>
</ProjectReference>
<ProjectReference Include="..\nunitlite\nunitlite-portable.csproj">
<Project>{D339BFC2-AF3F-46FA-899A-14BAD4BCA35B}</Project>
<Name>nunitlite-portable</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="MockAssembly.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

Просмотреть файл

@ -1,74 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{3FA7B726-8AF9-4554-B41A-0BD915E4EAB5}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnitLite</RootNamespace>
<AssemblyName>nunitlite-runner</AssemblyName>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\net-2.0\</OutputPath>
<DefineConstants>TRACE;DEBUG;NET_2_0</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
<Externalconsole>true</Externalconsole>
<IntermediateOutputPath>obj\$(Configuration)\net-2.0\</IntermediateOutputPath>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\net-2.0\</OutputPath>
<DefineConstants>TRACE;NET_2_0</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-2.0.csproj">
<Project>{12B66B03-90F1-4992-BD33-BDF3C69AE49E}</Project>
<Name>nunit.framework-2.0</Name>
</ProjectReference>
<ProjectReference Include="..\nunitlite\nunitlite-2.0.csproj">
<Project>{28C7B9D6-BE1F-45E5-952C-0D5C9CA3EFDF}</Project>
<Name>nunitlite-2.0</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

Просмотреть файл

@ -1,74 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{A7E48768-23B5-4A11-B10A-048FB21A0955}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnitLite</RootNamespace>
<AssemblyName>nunitlite-runner</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\net-3.5\</OutputPath>
<DefineConstants>TRACE;DEBUG;NET_3_5</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Prefer32Bit>false</Prefer32Bit>
<Externalconsole>true</Externalconsole>
<IntermediateOutputPath>obj\$(Configuration)\net-3.5\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\net-3.5\</OutputPath>
<DefineConstants>TRACE;NET_3_5</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-3.5.csproj">
<Project>{7FA125B4-E377-4D4C-AECB-17B934E3A4B3}</Project>
<Name>nunit.framework-3.5</Name>
</ProjectReference>
<ProjectReference Include="..\nunitlite\nunitlite-3.5.csproj">
<Project>{82F93F6E-5C10-4CC7-BC65-AC0B9CA6D39A}</Project>
<Name>nunitlite-3.5</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

Просмотреть файл

@ -1,75 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{C861E6BA-852B-4BC1-ACE7-77C8D6E7898B}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnitLite</RootNamespace>
<AssemblyName>nunitlite-runner</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
<IntermediateOutputPath>obj\$(Configuration)\net-4.0\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\net-4.0\</OutputPath>
<DefineConstants>TRACE;DEBUG;NET_4_0</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Prefer32Bit>false</Prefer32Bit>
<Externalconsole>true</Externalconsole>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\net-4.0\</OutputPath>
<DefineConstants>TRACE;NET_4_0</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-4.0.csproj">
<Project>{6A281C98-B74D-403B-8536-966871B992E3}</Project>
<Name>nunit.framework-4.0</Name>
</ProjectReference>
<ProjectReference Include="..\nunitlite\nunitlite-4.0.csproj">
<Project>{DBD0C8B0-BE4E-4CBF-AAD4-44BEA2EA830B}</Project>
<Name>nunitlite-4.0</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

Просмотреть файл

@ -1,74 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{B00DC1F7-764B-4B65-9953-FA557E2EC493}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnitLite</RootNamespace>
<AssemblyName>nunitlite-runner</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<IntermediateOutputPath>obj\$(Configuration)\net-4.5\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\net-4.5\</OutputPath>
<DefineConstants>TRACE;DEBUG;NET_4_5</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Prefer32Bit>false</Prefer32Bit>
<Externalconsole>true</Externalconsole>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\net-4.5\</OutputPath>
<DefineConstants>TRACE;NET_4_5</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-4.5.csproj">
<Project>{D209C368-1277-4EA6-A887-AA6EBA51AB99}</Project>
<Name>nunit.framework-4.5</Name>
</ProjectReference>
<ProjectReference Include="..\nunitlite\nunitlite-4.5.csproj">
<Project>{46EC0BC1-8F51-4B4D-B967-2EE452EA68FC}</Project>
<Name>nunitlite-4.5</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

Просмотреть файл

@ -1,108 +0,0 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{D8D5220D-E155-4A60-AB63-0DEC87A54C87}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnitLite.Tests</RootNamespace>
<AssemblyName>nunitlite-runner</AssemblyName>
<ProjectTypeGuids>{4D628B5B-2FBC-4AA6-8C16-197242AEB884};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<PlatformFamilyName>WindowsCE</PlatformFamilyName>
<PlatformID>E2BECB1F-8C8C-41ba-B736-9BE7D946A398</PlatformID>
<OSVersion>5.0</OSVersion>
<DeployDirSuffix>nunitlite.tests_netcf_3._5</DeployDirSuffix>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<NativePlatformName>Windows CE</NativePlatformName>
<FormFactorID>
</FormFactorID>
<IntermediateOutputPath>obj\$(Configuration)\netcf-3.5\</IntermediateOutputPath>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\netcf-3.5\</OutputPath>
<DefineConstants>TRACE;DEBUG;NUNIT_FRAMEWORK;WindowsCE;NETCF;NETCF_3_5;NUNITLITE;PARALLEL</DefineConstants>
<NoStdLib>true</NoStdLib>
<NoConfig>true</NoConfig>
<ErrorReport>prompt</ErrorReport>
<FileAlignment>512</FileAlignment>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\netcf-3.5\</OutputPath>
<DefineConstants>TRACE;NUNIT_FRAMEWORK;WindowsCE;NETCF;NETCF_3_5;NUNITLITE;PARALLEL</DefineConstants>
<NoStdLib>true</NoStdLib>
<NoConfig>true</NoConfig>
<ErrorReport>prompt</ErrorReport>
<FileAlignment>512</FileAlignment>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
</PropertyGroup>
<ItemGroup>
<Reference Include="mscorlib" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-netcf-3.5.csproj">
<Project>{5F6CB3DC-5CE5-4C6A-AB23-936DB3B35DCC}</Project>
<Name>nunit.framework-netcf-3.5</Name>
</ProjectReference>
<ProjectReference Include="..\mock-assembly\mock-assembly-netcf-3.5.csproj">
<Project>{D40A4728-2F9B-41D7-AAD9-7AD95D0032C3}</Project>
<Name>mock-assembly-netcf-3.5</Name>
</ProjectReference>
<ProjectReference Include="..\nunitlite\nunitlite-netcf-3.5.csproj">
<Project>{FCB4F998-02D6-4D7F-A188-E0FB1F12F151}</Project>
<Name>nunitlite-netcf-3.5</Name>
</ProjectReference>
<ProjectReference Include="..\slow-tests\slow-nunit-tests-netcf-3.5.csproj">
<Project>{48C7F514-CA22-4405-9804-AE1703B8BC3F}</Project>
<Name>slow-nunit-tests-netcf-3.5</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CompactFramework.CSharp.targets" />
<ProjectExtensions>
<VisualStudio>
<FlavorProperties GUID="{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}">
<HostingProcess disable="1" />
</FlavorProperties>
</VisualStudio>
</ProjectExtensions>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

Просмотреть файл

@ -1,80 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{1A48458D-31A4-48D3-8EB2-2C79CFE4E82C}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnitLite</RootNamespace>
<AssemblyName>nunitlite-runner</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<IntermediateOutputPath>obj\$(Configuration)\portable\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\portable\</OutputPath>
<DefineConstants>TRACE;DEBUG;PORTABLE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Prefer32Bit>false</Prefer32Bit>
<Externalconsole>true</Externalconsole>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\portable\</OutputPath>
<DefineConstants>TRACE;PORTABLE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="..\nunitlite\ColorConsole.cs">
<Link>ColorConsole.cs</Link>
</Compile>
<Compile Include="..\nunitlite\ColorConsoleWriter.cs">
<Link>ColorConsoleWriter.cs</Link>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-portable.csproj">
<Project>{D6FBBB3A-F6B8-45BB-B657-A7226AB96624}</Project>
<Name>nunit.framework-portable</Name>
</ProjectReference>
<ProjectReference Include="..\nunitlite\nunitlite-portable.csproj">
<Project>{D339BFC2-AF3F-46FA-899A-14BAD4BCA35B}</Project>
<Name>nunitlite-portable</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

Просмотреть файл

@ -1,120 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{42BC31BF-0A03-43EC-925B-1419DD7F2C7C}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnitLite.Tests</RootNamespace>
<AssemblyName>nunitlite.tests</AssemblyName>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>3.5</OldToolsVersion>
<UpgradeBackupLocation />
<IntermediateOutputPath>obj\$(Configuration)\net-2.0\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\net-2.0\</OutputPath>
<DefineConstants>TRACE;NUNIT_FRAMEWORK;NET_2_0;PARALLEL;NUNITLITE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
<DefineConstants>TRACE;DEBUG;NUNIT_FRAMEWORK;NET_2_0;PARALLEL;NUNITLITE</DefineConstants>
<OutputPath>..\..\..\bin\Debug\net-2.0\</OutputPath>
<DebugType>full</DebugType>
<WarningLevel>4</WarningLevel>
<Optimize>false</Optimize>
<DebugSymbols>true</DebugSymbols>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Externalconsole>true</Externalconsole>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\Fakes.cs">
<Link>TestUtilities\Fakes.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="..\TestBuilder.cs">
<Link>TestUtilities\TestBuilder.cs</Link>
</Compile>
<Compile Include="..\TestFile.cs">
<Link>TestUtilities\TestFile.cs</Link>
</Compile>
<Compile Include="DefaultOptionsProviderTests.cs" />
<Compile Include="ExtendedTextWrapperTests.cs" />
<Compile Include="OutputSpecificationTests.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="CommandLineTests.cs" />
<Compile Include="CreateTestFilterTests.cs" />
<Compile Include="MakeRunSettingsTests.cs" />
<Compile Include="NUnit2XmlOutputWriterTests.cs" />
<Compile Include="TestNameParserTests.cs" />
<Compile Include="TestSelectionParserTests.cs" />
<Compile Include="TextUITests.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="TeamCityEventListenerTests.cs" />
<Compile Include="TokenizerTests.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.Web" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-2.0.csproj">
<Project>{12B66B03-90F1-4992-BD33-BDF3C69AE49E}</Project>
<Name>nunit.framework-2.0</Name>
</ProjectReference>
<ProjectReference Include="..\nunitlite\nunitlite-2.0.csproj">
<Project>{28C7B9D6-BE1F-45E5-952C-0D5C9CA3EFDF}</Project>
<Name>nunitlite-2.0</Name>
</ProjectReference>
<ProjectReference Include="..\mock-assembly\mock-assembly-2.0.csproj">
<Project>{2E368281-3BA8-4050-B05E-0E0E43F8F446}</Project>
<Name>mock-assembly-2.0</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
</ItemGroup>
<ItemGroup />
<ItemGroup>
<EmbeddedResource Include="TestListFile2.txt" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="TestListFile.txt" />
</ItemGroup>
</Project>

Просмотреть файл

@ -1,120 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{FD6D4774-71B7-4D7A-BE91-753B12C0BB4E}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnitLite.Tests</RootNamespace>
<AssemblyName>nunitlite.tests</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>3.5</OldToolsVersion>
<UpgradeBackupLocation />
<IntermediateOutputPath>obj\$(Configuration)\net-3.5\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\net-3.5\</OutputPath>
<DefineConstants>TRACE;NUNIT_FRAMEWORK;NET_3_5;PARALLEL;NUNITLITE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
<DefineConstants>TRACE;DEBUG;NUNIT_FRAMEWORK;NET_3_5;PARALLEL;NUNITLITE</DefineConstants>
<OutputPath>..\..\..\bin\Debug\net-3.5\</OutputPath>
<DebugType>full</DebugType>
<WarningLevel>4</WarningLevel>
<Optimize>false</Optimize>
<DebugSymbols>true</DebugSymbols>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Externalconsole>true</Externalconsole>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\Fakes.cs">
<Link>TestUtilities\Fakes.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="..\TestBuilder.cs">
<Link>TestUtilities\TestBuilder.cs</Link>
</Compile>
<Compile Include="..\TestFile.cs">
<Link>TestUtilities\TestFile.cs</Link>
</Compile>
<Compile Include="DefaultOptionsProviderTests.cs" />
<Compile Include="ExtendedTextWrapperTests.cs" />
<Compile Include="OutputSpecificationTests.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="CommandLineTests.cs" />
<Compile Include="CreateTestFilterTests.cs" />
<Compile Include="MakeRunSettingsTests.cs" />
<Compile Include="NUnit2XmlOutputWriterTests.cs" />
<Compile Include="TestNameParserTests.cs" />
<Compile Include="TestSelectionParserTests.cs" />
<Compile Include="TextUITests.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="TeamCityEventListenerTests.cs" />
<Compile Include="TokenizerTests.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.Web" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-3.5.csproj">
<Project>{7FA125B4-E377-4D4C-AECB-17B934E3A4B3}</Project>
<Name>nunit.framework-3.5</Name>
</ProjectReference>
<ProjectReference Include="..\nunitlite\nunitlite-3.5.csproj">
<Project>{82F93F6E-5C10-4CC7-BC65-AC0B9CA6D39A}</Project>
<Name>nunitlite-3.5</Name>
</ProjectReference>
<ProjectReference Include="..\mock-assembly\mock-assembly-3.5.csproj">
<Project>{8FCE12F2-FE7B-43D0-94E9-3B71FECAFE64}</Project>
<Name>mock-assembly-3.5</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
</ItemGroup>
<ItemGroup />
<ItemGroup>
<EmbeddedResource Include="TestListFile2.txt" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="TestListFile.txt" />
</ItemGroup>
</Project>

Просмотреть файл

@ -1,118 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{F0BA2671-5160-4164-B1FC-2883728C42D9}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnitLite.Tests</RootNamespace>
<AssemblyName>nunitlite.tests</AssemblyName>
<FileAlignment>512</FileAlignment>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>3.5</OldToolsVersion>
<UpgradeBackupLocation />
<IntermediateOutputPath>obj\$(Configuration)\net-4.0\</IntermediateOutputPath>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\net-4.0\</OutputPath>
<DefineConstants>TRACE;NUNIT_FRAMEWORK;NET_4_0;PARALLEL;NUNITLITE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
<DefineConstants>TRACE;DEBUG;NUNIT_FRAMEWORK;NET_4_0;PARALLEL;NUNITLITE</DefineConstants>
<OutputPath>..\..\..\bin\Debug\net-4.0\</OutputPath>
<DebugType>full</DebugType>
<WarningLevel>4</WarningLevel>
<Optimize>false</Optimize>
<DebugSymbols>true</DebugSymbols>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\Fakes.cs">
<Link>TestUtilities\Fakes.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="..\TestBuilder.cs">
<Link>TestUtilities\TestBuilder.cs</Link>
</Compile>
<Compile Include="..\TestFile.cs">
<Link>TestUtilities\TestFile.cs</Link>
</Compile>
<Compile Include="CommandLineTests.cs" />
<Compile Include="CreateTestFilterTests.cs" />
<Compile Include="DefaultOptionsProviderTests.cs" />
<Compile Include="ExtendedTextWrapperTests.cs" />
<Compile Include="MakeRunSettingsTests.cs" />
<Compile Include="NUnit2XmlOutputWriterTests.cs" />
<Compile Include="OutputSpecificationTests.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="TeamCityEventListenerTests.cs" />
<Compile Include="TestNameParserTests.cs" />
<Compile Include="TestSelectionParserTests.cs" />
<Compile Include="TextUITests.cs" />
<Compile Include="TokenizerTests.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.Net" />
<Reference Include="System.Web" />
<Reference Include="System.Xml" />
<Reference Include="System.Core" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="TestListFile.txt" />
<EmbeddedResource Include="TestListFile2.txt" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-4.0.csproj">
<Project>{6A281C98-B74D-403B-8536-966871B992E3}</Project>
<Name>nunit.framework-4.0</Name>
</ProjectReference>
<ProjectReference Include="..\nunitlite\nunitlite-4.0.csproj">
<Project>{DBD0C8B0-BE4E-4CBF-AAD4-44BEA2EA830B}</Project>
<Name>nunitlite-4.0</Name>
</ProjectReference>
<ProjectReference Include="..\mock-assembly\mock-assembly-4.0.csproj">
<Project>{DDCE1AE3-AA0D-4E2D-AD1B-8CA322AFA7DD}</Project>
<Name>mock-assembly-4.0</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<ItemGroup />
</Project>

Просмотреть файл

@ -1,124 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{8472DB53-5950-4A70-864C-567A55A6C4A1}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnitLite.Tests</RootNamespace>
<AssemblyName>nunitlite.tests</AssemblyName>
<FileAlignment>512</FileAlignment>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>3.5</OldToolsVersion>
<UpgradeBackupLocation />
<IntermediateOutputPath>obj\$(Configuration)\net-4.5\</IntermediateOutputPath>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\net-4.5\</OutputPath>
<DefineConstants>TRACE;NUNIT_FRAMEWORK;NET_4_5;PARALLEL;NUNITLITE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
<DefineConstants>TRACE;DEBUG;NUNIT_FRAMEWORK;NET_4_5;PARALLEL;NUNITLITE</DefineConstants>
<OutputPath>..\..\..\bin\Debug\net-4.5\</OutputPath>
<DebugType>full</DebugType>
<WarningLevel>4</WarningLevel>
<Optimize>false</Optimize>
<DebugSymbols>true</DebugSymbols>
<Prefer32Bit>false</Prefer32Bit>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Externalconsole>true</Externalconsole>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\Fakes.cs">
<Link>TestUtilities\Fakes.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="..\TestBuilder.cs">
<Link>TestUtilities\TestBuilder.cs</Link>
</Compile>
<Compile Include="..\TestFile.cs">
<Link>TestUtilities\TestFile.cs</Link>
</Compile>
<Compile Include="CommandLineTests.cs" />
<Compile Include="CreateTestFilterTests.cs" />
<Compile Include="DefaultOptionsProviderTests.cs" />
<Compile Include="ExtendedTextWrapperTests.cs" />
<Compile Include="MakeRunSettingsTests.cs" />
<Compile Include="NUnit2XmlOutputWriterTests.cs" />
<Compile Include="OutputSpecificationTests.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="TeamCityEventListenerTests.cs" />
<Compile Include="TestNameParserTests.cs" />
<Compile Include="TestSelectionParserTests.cs" />
<Compile Include="TextUITests.cs" />
<Compile Include="TokenizerTests.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.Web" />
<Reference Include="System.Xml" />
<Reference Include="System.Core" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="TestListFile.txt" />
<EmbeddedResource Include="TestListFile2.txt" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-4.5.csproj">
<Project>{D209C368-1277-4EA6-A887-AA6EBA51AB99}</Project>
<Name>nunit.framework-4.5</Name>
</ProjectReference>
<ProjectReference Include="..\nunitlite\nunitlite-4.5.csproj">
<Project>{46EC0BC1-8F51-4B4D-B967-2EE452EA68FC}</Project>
<Name>nunitlite-4.5</Name>
</ProjectReference>
<ProjectReference Include="..\testdata\nunit.testdata-4.5.csproj">
<Project>{E7541163-D7BB-4E9A-A722-D7737B7A2995}</Project>
<Name>nunit.testdata-4.5</Name>
</ProjectReference>
<ProjectReference Include="..\mock-assembly\mock-assembly-4.5.csproj">
<Project>{C3264FF3-E2D7-48D7-93A7-CDC9A827AD9D}</Project>
<Name>mock-assembly-4.5</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
</ItemGroup>
<ItemGroup />
</Project>

Просмотреть файл

@ -1,130 +0,0 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{C99C43D5-7706-4072-9CC0-9CF52412440E}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnitLite.Tests</RootNamespace>
<AssemblyName>nunitlite.tests</AssemblyName>
<ProjectTypeGuids>{4D628B5B-2FBC-4AA6-8C16-197242AEB884};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<PlatformFamilyName>WindowsCE</PlatformFamilyName>
<PlatformID>E2BECB1F-8C8C-41ba-B736-9BE7D946A398</PlatformID>
<OSVersion>5.0</OSVersion>
<DeployDirSuffix>nunitlite.tests_netcf_3._5</DeployDirSuffix>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<NativePlatformName>Windows CE</NativePlatformName>
<FormFactorID>
</FormFactorID>
<IntermediateOutputPath>obj\$(Configuration)\netcf-3.5\</IntermediateOutputPath>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\netcf-3.5\</OutputPath>
<DefineConstants>TRACE;DEBUG;NUNIT_FRAMEWORK;WindowsCE;NETCF;NETCF_3_5;NUNITLITE;PARALLEL</DefineConstants>
<NoStdLib>true</NoStdLib>
<NoConfig>true</NoConfig>
<ErrorReport>prompt</ErrorReport>
<FileAlignment>512</FileAlignment>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\netcf-3.5\</OutputPath>
<DefineConstants>TRACE;NUNIT_FRAMEWORK;WindowsCE;NETCF;NETCF_3_5;NUNITLITE;PARALLEL</DefineConstants>
<NoStdLib>true</NoStdLib>
<NoConfig>true</NoConfig>
<ErrorReport>prompt</ErrorReport>
<FileAlignment>512</FileAlignment>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
</PropertyGroup>
<ItemGroup>
<Reference Include="mscorlib" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\Fakes.cs">
<Link>TestUtilities\Fakes.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="..\TestBuilder.cs">
<Link>TestUtilities\TestBuilder.cs</Link>
</Compile>
<Compile Include="..\TestFile.cs">
<Link>TestUtilities\TestFile.cs</Link>
</Compile>
<Compile Include="CommandLineTests.cs" />
<Compile Include="CreateTestFilterTests.cs" />
<Compile Include="ExtendedTextWrapperTests.cs" />
<Compile Include="MakeRunSettingsTests.cs" />
<Compile Include="NUnit2XmlOutputWriterTests.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="TeamCityEventListenerTests.cs" />
<Compile Include="TestSelectionParserTests.cs" />
<Compile Include="TextUITests.cs" />
<Compile Include="TokenizerTests.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-netcf-3.5.csproj">
<Project>{5F6CB3DC-5CE5-4C6A-AB23-936DB3B35DCC}</Project>
<Name>nunit.framework-netcf-3.5</Name>
</ProjectReference>
<ProjectReference Include="..\mock-assembly\mock-assembly-netcf-3.5.csproj">
<Project>{D40A4728-2F9B-41D7-AAD9-7AD95D0032C3}</Project>
<Name>mock-assembly-netcf-3.5</Name>
</ProjectReference>
<ProjectReference Include="..\nunitlite\nunitlite-netcf-3.5.csproj">
<Project>{FCB4F998-02D6-4D7F-A188-E0FB1F12F151}</Project>
<Name>nunitlite-netcf-3.5</Name>
</ProjectReference>
<ProjectReference Include="..\slow-tests\slow-nunit-tests-netcf-3.5.csproj">
<Project>{48C7F514-CA22-4405-9804-AE1703B8BC3F}</Project>
<Name>slow-nunit-tests-netcf-3.5</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="TestListFile.txt" />
<EmbeddedResource Include="TestListFile2.txt" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CompactFramework.CSharp.targets" />
<ProjectExtensions>
<VisualStudio>
<FlavorProperties GUID="{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}">
<HostingProcess disable="1" />
</FlavorProperties>
</VisualStudio>
</ProjectExtensions>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

Просмотреть файл

@ -1,125 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{6872DB53-3250-4A70-2A4C-567A55A6C4B3}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnitLite.Tests</RootNamespace>
<AssemblyName>nunitlite.tests</AssemblyName>
<FileAlignment>512</FileAlignment>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>3.5</OldToolsVersion>
<UpgradeBackupLocation />
<IntermediateOutputPath>obj\$(Configuration)\portable\</IntermediateOutputPath>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\portable\</OutputPath>
<DefineConstants>TRACE;NUNIT_FRAMEWORK;PORTABLE;NUNITLITE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
<DefineConstants>TRACE;DEBUG;NUNIT_FRAMEWORK;PORTABLE;NUNITLITE</DefineConstants>
<OutputPath>..\..\..\bin\Debug\portable\</OutputPath>
<DebugType>full</DebugType>
<WarningLevel>4</WarningLevel>
<Optimize>false</Optimize>
<DebugSymbols>true</DebugSymbols>
<Prefer32Bit>false</Prefer32Bit>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Externalconsole>true</Externalconsole>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\Fakes.cs">
<Link>TestUtilities\Fakes.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="..\nunitlite\ColorConsole.cs">
<Link>ColorConsole.cs</Link>
</Compile>
<Compile Include="..\nunitlite\ColorConsoleWriter.cs">
<Link>ColorConsoleWriter.cs</Link>
</Compile>
<Compile Include="..\TestBuilder.cs">
<Link>TestUtilities\TestBuilder.cs</Link>
</Compile>
<Compile Include="..\TestFile.cs">
<Link>TestUtilities\TestFile.cs</Link>
</Compile>
<Compile Include="CommandLineTests.cs" />
<Compile Include="CreateTestFilterTests.cs" />
<Compile Include="DefaultOptionsProviderTests.cs" />
<Compile Include="ExtendedTextWrapperTests.cs" />
<Compile Include="MakeRunSettingsTests.cs" />
<Compile Include="NUnit2XmlOutputWriterTests.cs" />
<Compile Include="OutputSpecificationTests.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="TeamCityEventListenerTests.cs" />
<Compile Include="TestNameParserTests.cs" />
<Compile Include="TestSelectionParserTests.cs" />
<Compile Include="TextUITests.cs" />
<Compile Include="TokenizerTests.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.Web" />
<Reference Include="System.Xml" />
<Reference Include="System.Core" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="TestListFile.txt" />
<EmbeddedResource Include="TestListFile2.txt" />
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-portable.csproj">
<Project>{D6FBBB3A-F6B8-45BB-B657-A7226AB96624}</Project>
<Name>nunit.framework-portable</Name>
</ProjectReference>
<ProjectReference Include="..\nunitlite\nunitlite-portable.csproj">
<Project>{D339BFC2-AF3F-46FA-899A-14BAD4BCA35B}</Project>
<Name>nunitlite-portable</Name>
</ProjectReference>
<ProjectReference Include="..\mock-assembly\mock-assembly-portable.csproj">
<Project>{8C53C716-3E54-4DFE-8CD9-F4099042FCFA}</Project>
<Name>mock-assembly-portable</Name>
</ProjectReference>
</ItemGroup>
</Project>

Просмотреть файл

@ -1,104 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{28C7B9D6-BE1F-45E5-952C-0D5C9CA3EFDF}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnitLite</RootNamespace>
<AssemblyName>nunitlite</AssemblyName>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<IntermediateOutputPath>obj\$(Configuration)\net-2.0\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\net-2.0\</OutputPath>
<DefineConstants>TRACE;DEBUG;NET_2_0;NUNITLITE;PARALLEL</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\net-2.0\</OutputPath>
<DefineConstants>TRACE;NET_2_0;NUNITLITE;PARALLEL</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="ColorConsole.cs" />
<Compile Include="ColorConsoleWriter.cs" />
<Compile Include="ColorStyle.cs" />
<Compile Include="CommandLineOptions.cs" />
<Compile Include="DefaultOptionsProvider.cs" />
<Compile Include="ExtendedTextWrapper.cs" />
<Compile Include="ExtendedTextWriter.cs" />
<Compile Include="IDefaultOptionsProvider.cs" />
<Compile Include="Options.cs" />
<Compile Include="OutputSpecification.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="AutoRun.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="DebugWriter.cs" />
<Compile Include="NUnitLiteOptions.cs" />
<Compile Include="OutputManager.cs" />
<Compile Include="OutputWriters\NUnit2XmlOutputWriter.cs" />
<Compile Include="OutputWriters\NUnit3XmlOutputWriter.cs" />
<Compile Include="OutputWriters\OutputWriter.cs" />
<Compile Include="OutputWriters\TestCaseOutputWriter.cs" />
<Compile Include="ResultSummary.cs" />
<Compile Include="TcpWriter.cs" />
<Compile Include="TeamCityEventListener.cs" />
<Compile Include="TestNameParser.cs" />
<Compile Include="TestSelectionParser.cs" />
<Compile Include="TestSelectionParserException.cs" />
<Compile Include="TextRunner.cs" />
<Compile Include="TextUI.cs" />
<Compile Include="Tokenizer.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-2.0.csproj">
<Project>{12B66B03-90F1-4992-BD33-BDF3C69AE49E}</Project>
<Name>nunit.framework-2.0</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

Просмотреть файл

@ -1,104 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{82F93F6E-5C10-4CC7-BC65-AC0B9CA6D39A}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnitLite</RootNamespace>
<AssemblyName>nunitlite</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<IntermediateOutputPath>obj\$(Configuration)\net-3.5\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\net-3.5\</OutputPath>
<DefineConstants>TRACE;DEBUG;NET_3_5;NUNITLITE;PARALLEL</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\net-3.5\</OutputPath>
<DefineConstants>TRACE;NET_3_5;NUNITLITE;PARALLEL</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="ColorConsole.cs" />
<Compile Include="ColorConsoleWriter.cs" />
<Compile Include="ColorStyle.cs" />
<Compile Include="CommandLineOptions.cs" />
<Compile Include="DefaultOptionsProvider.cs" />
<Compile Include="ExtendedTextWrapper.cs" />
<Compile Include="ExtendedTextWriter.cs" />
<Compile Include="IDefaultOptionsProvider.cs" />
<Compile Include="Options.cs" />
<Compile Include="OutputSpecification.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="AutoRun.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="DebugWriter.cs" />
<Compile Include="NUnitLiteOptions.cs" />
<Compile Include="OutputManager.cs" />
<Compile Include="OutputWriters\NUnit2XmlOutputWriter.cs" />
<Compile Include="OutputWriters\NUnit3XmlOutputWriter.cs" />
<Compile Include="OutputWriters\OutputWriter.cs" />
<Compile Include="OutputWriters\TestCaseOutputWriter.cs" />
<Compile Include="ResultSummary.cs" />
<Compile Include="TcpWriter.cs" />
<Compile Include="TeamCityEventListener.cs" />
<Compile Include="TestNameParser.cs" />
<Compile Include="TestSelectionParser.cs" />
<Compile Include="TestSelectionParserException.cs" />
<Compile Include="TextRunner.cs" />
<Compile Include="TextUI.cs" />
<Compile Include="Tokenizer.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-3.5.csproj">
<Project>{7FA125B4-E377-4D4C-AECB-17B934E3A4B3}</Project>
<Name>nunit.framework-3.5</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

Просмотреть файл

@ -1,103 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{DBD0C8B0-BE4E-4CBF-AAD4-44BEA2EA830B}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnitLite</RootNamespace>
<AssemblyName>nunitlite</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
<IntermediateOutputPath>obj\$(Configuration)\net-4.0\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\net-4.0\</OutputPath>
<DefineConstants>TRACE;DEBUG;NET_4_0;NUNITLITE;PARALLEL</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\net-4.0\</OutputPath>
<DefineConstants>TRACE;NET_4_0;NUNITLITE;PARALLEL</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="AutoRun.cs" />
<Compile Include="ColorConsole.cs" />
<Compile Include="ColorConsoleWriter.cs" />
<Compile Include="ColorStyle.cs" />
<Compile Include="CommandLineOptions.cs" />
<Compile Include="DebugWriter.cs" />
<Compile Include="DefaultOptionsProvider.cs" />
<Compile Include="ExtendedTextWrapper.cs" />
<Compile Include="ExtendedTextWriter.cs" />
<Compile Include="IDefaultOptionsProvider.cs" />
<Compile Include="NUnitLiteOptions.cs" />
<Compile Include="Options.cs" />
<Compile Include="OutputManager.cs" />
<Compile Include="OutputSpecification.cs" />
<Compile Include="OutputWriters\NUnit2XmlOutputWriter.cs" />
<Compile Include="OutputWriters\NUnit3XmlOutputWriter.cs" />
<Compile Include="OutputWriters\OutputWriter.cs" />
<Compile Include="OutputWriters\TestCaseOutputWriter.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="ResultSummary.cs" />
<Compile Include="TcpWriter.cs" />
<Compile Include="TeamCityEventListener.cs" />
<Compile Include="TestNameParser.cs" />
<Compile Include="TestSelectionParser.cs" />
<Compile Include="TestSelectionParserException.cs" />
<Compile Include="TextRunner.cs" />
<Compile Include="TextUI.cs" />
<Compile Include="Tokenizer.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-4.0.csproj">
<Project>{6A281C98-B74D-403B-8536-966871B992E3}</Project>
<Name>nunit.framework-4.0</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

Просмотреть файл

@ -1,105 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{46EC0BC1-8F51-4B4D-B967-2EE452EA68FC}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnitLite</RootNamespace>
<AssemblyName>nunitlite</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
<IntermediateOutputPath>obj\$(Configuration)\net-4.5\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\net-4.5\</OutputPath>
<DefineConstants>TRACE;DEBUG;NET_4_5;NUNITLITE;PARALLEL</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\net-4.5\</OutputPath>
<DefineConstants>TRACE;NET_4_5;NUNITLITE;PARALLEL</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="AutoRun.cs" />
<Compile Include="ColorConsole.cs" />
<Compile Include="ColorConsoleWriter.cs" />
<Compile Include="ColorStyle.cs" />
<Compile Include="CommandLineOptions.cs" />
<Compile Include="DebugWriter.cs" />
<Compile Include="DefaultOptionsProvider.cs" />
<Compile Include="ExtendedTextWrapper.cs" />
<Compile Include="ExtendedTextWriter.cs" />
<Compile Include="IDefaultOptionsProvider.cs" />
<Compile Include="NUnitLiteOptions.cs" />
<Compile Include="Options.cs" />
<Compile Include="OutputManager.cs" />
<Compile Include="OutputSpecification.cs" />
<Compile Include="OutputWriters\NUnit2XmlOutputWriter.cs" />
<Compile Include="OutputWriters\NUnit3XmlOutputWriter.cs" />
<Compile Include="OutputWriters\OutputWriter.cs" />
<Compile Include="OutputWriters\TestCaseOutputWriter.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="ResultSummary.cs" />
<Compile Include="TcpWriter.cs" />
<Compile Include="TeamCityEventListener.cs" />
<Compile Include="TestNameParser.cs" />
<Compile Include="TestSelectionParser.cs" />
<Compile Include="TestSelectionParserException.cs" />
<Compile Include="TextRunner.cs" />
<Compile Include="TextUI.cs" />
<Compile Include="Tokenizer.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-4.5.csproj">
<Project>{D209C368-1277-4EA6-A887-AA6EBA51AB99}</Project>
<Name>nunit.framework-4.5</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

Просмотреть файл

@ -1,129 +0,0 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{FCB4F998-02D6-4D7F-A188-E0FB1F12F151}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnitLite</RootNamespace>
<AssemblyName>nunitlite</AssemblyName>
<ProjectTypeGuids>{4D628B5B-2FBC-4AA6-8C16-197242AEB884};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<PlatformFamilyName>PocketPC</PlatformFamilyName>
<PlatformID>4118C335-430C-497f-BE48-11C3316B135E</PlatformID>
<OSVersion>5.1</OSVersion>
<DeployDirSuffix>nunitlite.runner_netcf_3._5</DeployDirSuffix>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<NativePlatformName>Windows Mobile 5.0 Pocket PC SDK</NativePlatformName>
<FormFactorID>
</FormFactorID>
<IntermediateOutputPath>obj\$(Configuration)\netcf-3.5\</IntermediateOutputPath>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
<StartupObject>
</StartupObject>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\netcf-3.5\</OutputPath>
<DefineConstants>TRACE;DEBUG;WindowsCE;NETCF;NETCF_3_5;NUNITLITE</DefineConstants>
<NoStdLib>true</NoStdLib>
<NoConfig>true</NoConfig>
<ErrorReport>prompt</ErrorReport>
<FileAlignment>512</FileAlignment>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\netcf-3.5\</OutputPath>
<DefineConstants>TRACE;WindowsCE;NETCF;NETCF_3_5;NUNITLITE;PARALLEL</DefineConstants>
<NoStdLib>true</NoStdLib>
<NoConfig>true</NoConfig>
<ErrorReport>prompt</ErrorReport>
<FileAlignment>512</FileAlignment>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Reference Include="mscorlib" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="AutoRun.cs" />
<Compile Include="ColorConsole.cs" />
<Compile Include="ColorConsoleWriter.cs" />
<Compile Include="ColorStyle.cs" />
<Compile Include="CommandLineOptions.cs" />
<Compile Include="DebugWriter.cs" />
<Compile Include="DefaultOptionsProvider.cs" />
<Compile Include="ExtendedTextWrapper.cs" />
<Compile Include="ExtendedTextWriter.cs" />
<Compile Include="IDefaultOptionsProvider.cs" />
<Compile Include="NUnitLiteOptions.cs" />
<Compile Include="Options.cs" />
<Compile Include="OutputManager.cs" />
<Compile Include="OutputSpecification.cs" />
<Compile Include="OutputWriters\NUnit2XmlOutputWriter.cs" />
<Compile Include="OutputWriters\NUnit3XmlOutputWriter.cs" />
<Compile Include="OutputWriters\OutputWriter.cs" />
<Compile Include="OutputWriters\TestCaseOutputWriter.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="ResultSummary.cs" />
<Compile Include="StringExtensions.cs" />
<Compile Include="StringSplitOptions.cs" />
<Compile Include="TcpWriter.cs" />
<Compile Include="TeamCityEventListener.cs" />
<Compile Include="TestNameParser.cs" />
<Compile Include="TestSelectionParser.cs" />
<Compile Include="TestSelectionParserException.cs" />
<Compile Include="TextRunner.cs" />
<Compile Include="TextUI.cs" />
<Compile Include="Tokenizer.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-netcf-3.5.csproj">
<Project>{B41DB8FB-0D2F-45CE-9345-AF469FC05EE8}</Project>
<Name>nunit.framework-netcf-3.5</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CompactFramework.CSharp.targets" />
<ProjectExtensions>
<VisualStudio>
<FlavorProperties GUID="{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}">
<HostingProcess disable="1" />
</FlavorProperties>
</VisualStudio>
</ProjectExtensions>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

Просмотреть файл

@ -1,87 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<MinimumVisualStudioVersion>10.0</MinimumVisualStudioVersion>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{D339BFC2-AF3F-46FA-899A-14BAD4BCA35B}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnitLite</RootNamespace>
<AssemblyName>nunitlite</AssemblyName>
<TargetFrameworkProfile>Profile259</TargetFrameworkProfile>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<IntermediateOutputPath>obj\$(Configuration)\portable\</IntermediateOutputPath>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\portable\</OutputPath>
<DefineConstants>TRACE;DEBUG;PORTABLE;NUNITLITE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\portable\</OutputPath>
<DefineConstants>TRACE;PORTABLE;NUNITLITE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="AutoRun.cs" />
<Compile Include="ColorStyle.cs" />
<Compile Include="CommandLineOptions.cs" />
<Compile Include="ExtendedTextWrapper.cs" />
<Compile Include="ExtendedTextWriter.cs" />
<Compile Include="IDefaultOptionsProvider.cs" />
<Compile Include="NUnitLiteOptions.cs" />
<Compile Include="Options.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="ResultSummary.cs" />
<Compile Include="TeamCityEventListener.cs" />
<Compile Include="TestNameParser.cs" />
<Compile Include="TestSelectionParser.cs" />
<Compile Include="TestSelectionParserException.cs" />
<Compile Include="TextRunner.cs" />
<Compile Include="TextUI.cs" />
<Compile Include="Tokenizer.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-portable.csproj">
<Project>{D6FBBB3A-F6B8-45BB-B657-A7226AB96624}</Project>
<Name>nunit.framework-portable</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

Просмотреть файл

@ -1,67 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{B0791F6D-5D14-40DD-A2CB-5D2A97892693}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnit.Tests</RootNamespace>
<AssemblyName>slow-nunit-tests</AssemblyName>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<IntermediateOutputPath>obj\$(Configuration)\net-2.0\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\net-2.0\</OutputPath>
<DefineConstants>TRACE;DEBUG;NET_2_0</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\net-2.0\</OutputPath>
<DefineConstants>TRACE;NET_2_0</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="SlowTests.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-2.0.csproj">
<Project>{12B66B03-90F1-4992-BD33-BDF3C69AE49E}</Project>
<Name>nunit.framework-2.0</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

Просмотреть файл

@ -1,67 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{C6156B98-923A-474B-B257-29107476E93C}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnit.Tests</RootNamespace>
<AssemblyName>slow-nunit-tests</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<IntermediateOutputPath>obj\$(Configuration)\net-3.5\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\net-3.5\</OutputPath>
<DefineConstants>TRACE;DEBUG;NET_3_5</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\net-3.5\</OutputPath>
<DefineConstants>TRACE;NET_3_5</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="SlowTests.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-3.5.csproj">
<Project>{7FA125B4-E377-4D4C-AECB-17B934E3A4B3}</Project>
<Name>nunit.framework-3.5</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

Просмотреть файл

@ -1,68 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{1D38AEC8-F5C0-4B1C-A0AE-18F4015A2E78}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnit.Tests</RootNamespace>
<AssemblyName>slow-nunit-tests</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<IntermediateOutputPath>obj\$(Configuration)\net-4.0\</IntermediateOutputPath>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\net-4.0\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\net-4.0\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="SlowTests.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-4.0.csproj">
<Project>{6A281C98-B74D-403B-8536-966871B992E3}</Project>
<Name>nunit.framework-4.0</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

Просмотреть файл

@ -1,73 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{705FBD41-77A9-4FE7-A6C1-85026F2DDA09}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnit.Tests</RootNamespace>
<AssemblyName>slow-nunit-tests</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<IntermediateOutputPath>obj\$(Configuration)\net-4.5\</IntermediateOutputPath>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\net-4.5\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\net-4.5\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="SlowTests.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-4.5.csproj">
<Project>{D209C368-1277-4EA6-A887-AA6EBA51AB99}</Project>
<Name>nunit.framework-4.5</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="slow-nunit-tests.build" />
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

Просмотреть файл

@ -1,87 +0,0 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{48C7F514-CA22-4405-9804-AE1703B8BC3F}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnit.Tests</RootNamespace>
<AssemblyName>slow-nunit-tests</AssemblyName>
<ProjectTypeGuids>{4D628B5B-2FBC-4AA6-8C16-197242AEB884};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<PlatformFamilyName>PocketPC</PlatformFamilyName>
<PlatformID>4118C335-430C-497f-BE48-11C3316B135E</PlatformID>
<OSVersion>5.1</OSVersion>
<DeployDirSuffix>mock_nunit_assembly_netcf_3._5</DeployDirSuffix>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<NativePlatformName>Windows Mobile 5.0 Pocket PC SDK</NativePlatformName>
<FormFactorID>
</FormFactorID>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\netcf-3.5\</OutputPath>
<DefineConstants>TRACE;DEBUG;NETCF;NETCF_3_5</DefineConstants>
<NoStdLib>true</NoStdLib>
<NoConfig>true</NoConfig>
<ErrorReport>prompt</ErrorReport>
<FileAlignment>512</FileAlignment>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
<IntermediateOutputPath>obj\$(Configuration)\netcf-3.5\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\netcf-3.5\</OutputPath>
<DefineConstants>TRACE;NETCF;NETCF_3_5</DefineConstants>
<NoStdLib>true</NoStdLib>
<NoConfig>true</NoConfig>
<ErrorReport>prompt</ErrorReport>
<FileAlignment>512</FileAlignment>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
</PropertyGroup>
<ItemGroup>
<Reference Include="mscorlib" />
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="SlowTests.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-netcf-3.5.csproj">
<Project>{B41DB8FB-0D2F-45CE-9345-AF469FC05EE8}</Project>
<Name>nunit.framework-netcf-3.5</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CompactFramework.CSharp.targets" />
<ProjectExtensions>
<VisualStudio>
<FlavorProperties GUID="{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}">
<HostingProcess disable="1" />
</FlavorProperties>
</VisualStudio>
</ProjectExtensions>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

Просмотреть файл

@ -1,77 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MinimumVisualStudioVersion>10.0</MinimumVisualStudioVersion>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{74CB429E-69D7-4525-BBDF-BBC47DBC7070}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnit.Tests</RootNamespace>
<AssemblyName>slow-nunit-tests</AssemblyName>
<DefaultLanguage>en-US</DefaultLanguage>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<TargetFrameworkProfile>Profile259</TargetFrameworkProfile>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<IntermediateOutputPath>obj\$(Configuration)\portable\</IntermediateOutputPath>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\portable\</OutputPath>
<DefineConstants>TRACE;PORTABLE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\portable\</OutputPath>
<DefineConstants>TRACE;PORTABLE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="mscorlib" />
<Reference Include="System" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="SlowTests.cs" />
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-portable.csproj">
<Project>{D6FBBB3A-F6B8-45BB-B657-A7226AB96624}</Project>
<Name>nunit.framework-portable</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

Просмотреть файл

@ -1,57 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{1BFDD2CD-5F57-4B23-928D-A4C1892C6D82}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnit.Tests</RootNamespace>
<AssemblyName>slow-nunitlite-tests</AssemblyName>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\bin\Debug\net-2.0\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\bin\Release\net-2.0\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="SlowTests.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunitlite-2.0.csproj">
<Project>{0bfa7f0a-bc15-40a5-863a-fa9b55ae2fd3}</Project>
<Name>nunitlite-2.0</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

Просмотреть файл

@ -1,118 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{15B64946-4989-4873-915C-3E181772FA03}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnit.TestData</RootNamespace>
<AssemblyName>nunit.testdata</AssemblyName>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>3.5</OldToolsVersion>
<UpgradeBackupLocation />
<IntermediateOutputPath>obj\$(Configuration)\net-2.0\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\net-2.0\</OutputPath>
<DefineConstants>TRACE;DEBUG;NET_2_0</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\net-2.0\</OutputPath>
<DefineConstants>TRACE;NET_2_0</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="ActionAttributeFixture.cs" />
<Compile Include="AsyncDummyFixture.cs" />
<Compile Include="AsyncRealFixture.cs" />
<Compile Include="TextOutputFixture.cs" />
<Compile Include="RepeatingTestsFixtureBase.cs" />
<Compile Include="RetryFixture.cs" />
<Compile Include="GenericTestMethodData.cs" />
<Compile Include="OptionalTestParametersFixture.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="AssertCountFixture.cs" />
<Compile Include="AssertFailFixture.cs" />
<Compile Include="AssertIgnoreData.cs" />
<Compile Include="AttributeInheritanceData.cs" />
<Compile Include="AuthorFixture.cs" />
<Compile Include="CategoryAttributeData.cs" />
<Compile Include="CultureAttributeData.cs" />
<Compile Include="DatapointFixture.cs" />
<Compile Include="DescriptionFixture.cs" />
<Compile Include="OneTimeSetUpTearDownData.cs" />
<Compile Include="MaxTimeFixture.cs" />
<Compile Include="ParameterizedTestFixture.cs" />
<Compile Include="PropertyAttributeTests.cs" />
<Compile Include="RandomAttributeFixture.cs" />
<Compile Include="RepeatedTestFixture.cs" />
<Compile Include="SetUpData.cs" />
<Compile Include="SingleThreadedFixtureData.cs" />
<Compile Include="TestCaseAttributeFixture.cs" />
<Compile Include="TestCaseOrderAttributeFixture.cs" />
<Compile Include="TestCaseSourceAttributeFixture.cs" />
<Compile Include="TestContextData.cs" />
<Compile Include="TestFixtureData.cs" />
<Compile Include="TestFixtureSourceData.cs" />
<Compile Include="TestMethodSignatureFixture.cs" />
<Compile Include="TestOfFixture.cs" />
<Compile Include="TheoryFixture.cs" />
<Compile Include="TimeoutFixture.cs" />
<Compile Include="UnexpectedExceptionFixture.cs" />
<Compile Include="UnhandledExceptions.cs" />
<Compile Include="SetUpFixtureData.cs" />
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-2.0.csproj">
<Project>{12B66B03-90F1-4992-BD33-BDF3C69AE49E}</Project>
<Name>nunit.framework-2.0</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

Просмотреть файл

@ -1,118 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{520F4C89-51B6-49D6-9ED7-4523048C0154}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnit.TestData</RootNamespace>
<AssemblyName>nunit.testdata</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>3.5</OldToolsVersion>
<UpgradeBackupLocation />
<IntermediateOutputPath>obj\$(Configuration)\net-3.5\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\net-3.5\</OutputPath>
<DefineConstants>TRACE;DEBUG;NET_3_5</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\net-3.5\</OutputPath>
<DefineConstants>TRACE;NET_3_5</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="ActionAttributeFixture.cs" />
<Compile Include="AsyncDummyFixture.cs" />
<Compile Include="AsyncRealFixture.cs" />
<Compile Include="RepeatingTestsFixtureBase.cs" />
<Compile Include="RetryFixture.cs" />
<Compile Include="GenericTestMethodData.cs" />
<Compile Include="OptionalTestParametersFixture.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="AssertCountFixture.cs" />
<Compile Include="AssertFailFixture.cs" />
<Compile Include="AssertIgnoreData.cs" />
<Compile Include="AttributeInheritanceData.cs" />
<Compile Include="AuthorFixture.cs" />
<Compile Include="CategoryAttributeData.cs" />
<Compile Include="CultureAttributeData.cs" />
<Compile Include="DatapointFixture.cs" />
<Compile Include="DescriptionFixture.cs" />
<Compile Include="OneTimeSetUpTearDownData.cs" />
<Compile Include="MaxTimeFixture.cs" />
<Compile Include="ParameterizedTestFixture.cs" />
<Compile Include="PropertyAttributeTests.cs" />
<Compile Include="RandomAttributeFixture.cs" />
<Compile Include="RepeatedTestFixture.cs" />
<Compile Include="SetUpData.cs" />
<Compile Include="SingleThreadedFixtureData.cs" />
<Compile Include="TestCaseAttributeFixture.cs" />
<Compile Include="TestCaseOrderAttributeFixture.cs" />
<Compile Include="TestCaseSourceAttributeFixture.cs" />
<Compile Include="TestContextData.cs" />
<Compile Include="TestFixtureData.cs" />
<Compile Include="TestFixtureSourceData.cs" />
<Compile Include="TestMethodSignatureFixture.cs" />
<Compile Include="TestOfFixture.cs" />
<Compile Include="TextOutputFixture.cs" />
<Compile Include="TheoryFixture.cs" />
<Compile Include="TimeoutFixture.cs" />
<Compile Include="UnexpectedExceptionFixture.cs" />
<Compile Include="UnhandledExceptions.cs" />
<Compile Include="SetUpFixtureData.cs" />
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-3.5.csproj">
<Project>{7FA125B4-E377-4D4C-AECB-17B934E3A4B3}</Project>
<Name>nunit.framework-3.5</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

Просмотреть файл

@ -1,149 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{A35E6AD6-6D46-41E1-8DB1-A41086793893}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnit.TestData</RootNamespace>
<AssemblyName>nunit.testdata</AssemblyName>
<FileAlignment>512</FileAlignment>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>3.5</OldToolsVersion>
<UpgradeBackupLocation />
<IntermediateOutputPath>obj\$(Configuration)\net-4.0\</IntermediateOutputPath>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\net-4.0\</OutputPath>
<DefineConstants>TRACE;DEBUG;NET_4_0</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\net-4.0\</OutputPath>
<DefineConstants>TRACE;NET_4_0</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.Threading.Tasks">
<HintPath>..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Threading.Tasks.Extensions">
<HintPath>..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Threading.Tasks.Extensions.Desktop">
<HintPath>..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.Desktop.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.IO">
<HintPath>..\..\..\packages\Microsoft.Bcl.1.1.10\lib\net40\System.IO.dll</HintPath>
</Reference>
<Reference Include="System.Net" />
<Reference Include="System.Runtime">
<HintPath>..\..\..\packages\Microsoft.Bcl.1.1.10\lib\net40\System.Runtime.dll</HintPath>
</Reference>
<Reference Include="System.Threading.Tasks">
<HintPath>..\..\..\packages\Microsoft.Bcl.1.1.10\lib\net40\System.Threading.Tasks.dll</HintPath>
</Reference>
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="ActionAttributeFixture.cs" />
<Compile Include="AssertCountFixture.cs" />
<Compile Include="AssertFailFixture.cs" />
<Compile Include="AssertIgnoreData.cs" />
<Compile Include="AsyncDummyFixture.cs" />
<Compile Include="AsyncRealFixture.cs" />
<Compile Include="AsyncSetupTearDownFixture.cs" />
<Compile Include="AttributeInheritanceData.cs" />
<Compile Include="AuthorFixture.cs" />
<Compile Include="CategoryAttributeData.cs" />
<Compile Include="CultureAttributeData.cs" />
<Compile Include="DatapointFixture.cs" />
<Compile Include="DescriptionFixture.cs" />
<Compile Include="GenericTestMethodData.cs" />
<Compile Include="MaxTimeFixture.cs" />
<Compile Include="OneTimeSetUpTearDownData.cs" />
<Compile Include="OptionalTestParametersFixture.cs" />
<Compile Include="ParameterizedTestFixture.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="PropertyAttributeTests.cs" />
<Compile Include="RandomAttributeFixture.cs" />
<Compile Include="RepeatedTestFixture.cs" />
<Compile Include="RepeatingTestsFixtureBase.cs" />
<Compile Include="RetryFixture.cs" />
<Compile Include="SetUpData.cs" />
<Compile Include="SetUpFixtureData.cs" />
<Compile Include="SingleThreadedFixtureData.cs" />
<Compile Include="TestCaseAttributeFixture.cs" />
<Compile Include="TestCaseOrderAttributeFixture.cs" />
<Compile Include="TestCaseSourceAttributeFixture.cs" />
<Compile Include="TestContextData.cs" />
<Compile Include="TestFixtureData.cs" />
<Compile Include="TestFixtureSourceData.cs" />
<Compile Include="TestMethodSignatureFixture.cs" />
<Compile Include="TestOfFixture.cs" />
<Compile Include="TextOutputFixture.cs" />
<Compile Include="TheoryFixture.cs" />
<Compile Include="TimeoutFixture.cs" />
<Compile Include="UnexpectedExceptionFixture.cs" />
<Compile Include="UnhandledExceptions.cs" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
<None Include="app.config" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-4.0.csproj">
<Project>{6A281C98-B74D-403B-8536-966871B992E3}</Project>
<Name>nunit.framework-4.0</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
<Error Condition="!Exists('..\..\..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets'))" />
<Error Condition="!Exists('..\..\..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets'))" />
</Target>
<Import Project="..\..\..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets" Condition="Exists('..\..\..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets')" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

Просмотреть файл

@ -1,122 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{E7541163-D7BB-4E9A-A722-D7737B7A2995}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnit.TestData</RootNamespace>
<AssemblyName>nunit.testdata</AssemblyName>
<FileAlignment>512</FileAlignment>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>3.5</OldToolsVersion>
<UpgradeBackupLocation />
<IntermediateOutputPath>obj\$(Configuration)\net-4.5\</IntermediateOutputPath>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\net-4.5\</OutputPath>
<DefineConstants>TRACE;DEBUG;NET_4_5</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\net-4.5\</OutputPath>
<DefineConstants>TRACE;NET_4_5</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="ActionAttributeFixture.cs" />
<Compile Include="AssertCountFixture.cs" />
<Compile Include="AssertFailFixture.cs" />
<Compile Include="AssertIgnoreData.cs" />
<Compile Include="AsyncDummyFixture.cs" />
<Compile Include="AsyncRealFixture.cs" />
<Compile Include="AsyncSetupTearDownFixture.cs" />
<Compile Include="AttributeInheritanceData.cs" />
<Compile Include="AuthorFixture.cs" />
<Compile Include="CategoryAttributeData.cs" />
<Compile Include="CultureAttributeData.cs" />
<Compile Include="DatapointFixture.cs" />
<Compile Include="DescriptionFixture.cs" />
<Compile Include="GenericTestMethodData.cs" />
<Compile Include="MaxTimeFixture.cs" />
<Compile Include="OneTimeSetUpTearDownData.cs" />
<Compile Include="OptionalTestParametersFixture.cs" />
<Compile Include="ParameterizedTestFixture.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="PropertyAttributeTests.cs" />
<Compile Include="RandomAttributeFixture.cs" />
<Compile Include="RepeatedTestFixture.cs" />
<Compile Include="RepeatingTestsFixtureBase.cs" />
<Compile Include="RetryFixture.cs" />
<Compile Include="SetUpData.cs" />
<Compile Include="SetUpFixtureData.cs" />
<Compile Include="SingleThreadedFixtureData.cs" />
<Compile Include="TestCaseAttributeFixture.cs" />
<Compile Include="TestCaseOrderAttributeFixture.cs" />
<Compile Include="TestCaseSourceAttributeFixture.cs" />
<Compile Include="TestContextData.cs" />
<Compile Include="TestFixtureData.cs" />
<Compile Include="TestFixtureSourceData.cs" />
<Compile Include="TestMethodSignatureFixture.cs" />
<Compile Include="TestOfFixture.cs" />
<Compile Include="TextOutputFixture.cs" />
<Compile Include="TheoryFixture.cs" />
<Compile Include="TimeoutFixture.cs" />
<Compile Include="UnexpectedExceptionFixture.cs" />
<Compile Include="UnhandledExceptions.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-4.5.csproj">
<Project>{D209C368-1277-4EA6-A887-AA6EBA51AB99}</Project>
<Name>nunit.framework-4.5</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

Просмотреть файл

@ -1,131 +0,0 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{0B7C0B55-6A49-4F32-993E-C9ED6DA0B73C}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnit.TestData</RootNamespace>
<AssemblyName>nunit.testdata</AssemblyName>
<ProjectTypeGuids>{4D628B5B-2FBC-4AA6-8C16-197242AEB884};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<PlatformFamilyName>WindowsCE</PlatformFamilyName>
<PlatformID>E2BECB1F-8C8C-41ba-B736-9BE7D946A398</PlatformID>
<OSVersion>5.0</OSVersion>
<DeployDirSuffix>nunitlite.testdata_netcf_3._5</DeployDirSuffix>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<NativePlatformName>Windows CE</NativePlatformName>
<FormFactorID>
</FormFactorID>
<IntermediateOutputPath>obj\$(Configuration)\netcf-3.5\</IntermediateOutputPath>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\netcf-3.5\</OutputPath>
<DefineConstants>TRACE;DEBUG;WindowsCE;NETCF;NETCF_3_5</DefineConstants>
<NoStdLib>true</NoStdLib>
<NoConfig>true</NoConfig>
<ErrorReport>prompt</ErrorReport>
<FileAlignment>512</FileAlignment>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\netcf-3.5\</OutputPath>
<DefineConstants>TRACE;WindowsCE;NETCF;NETCF_3_5</DefineConstants>
<NoStdLib>true</NoStdLib>
<NoConfig>true</NoConfig>
<ErrorReport>prompt</ErrorReport>
<FileAlignment>512</FileAlignment>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
</PropertyGroup>
<ItemGroup>
<Reference Include="mscorlib" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="ActionAttributeFixture.cs" />
<Compile Include="AssertCountFixture.cs" />
<Compile Include="AssertFailFixture.cs" />
<Compile Include="AssertIgnoreData.cs" />
<Compile Include="AsyncDummyFixture.cs" />
<Compile Include="AsyncRealFixture.cs" />
<Compile Include="AttributeInheritanceData.cs" />
<Compile Include="AuthorFixture.cs" />
<Compile Include="CategoryAttributeData.cs" />
<Compile Include="CultureAttributeData.cs" />
<Compile Include="DatapointFixture.cs" />
<Compile Include="DescriptionFixture.cs" />
<Compile Include="GenericTestMethodData.cs" />
<Compile Include="MaxTimeFixture.cs" />
<Compile Include="OneTimeSetUpTearDownData.cs" />
<Compile Include="OptionalTestParametersFixture.cs" />
<Compile Include="ParameterizedTestFixture.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="PropertyAttributeTests.cs" />
<Compile Include="RandomAttributeFixture.cs" />
<Compile Include="RepeatedTestFixture.cs" />
<Compile Include="RepeatingTestsFixtureBase.cs" />
<Compile Include="RetryFixture.cs" />
<Compile Include="SetUpData.cs" />
<Compile Include="SetUpFixtureData.cs" />
<Compile Include="SingleThreadedFixtureData.cs" />
<Compile Include="TestCaseAttributeFixture.cs" />
<Compile Include="TestCaseOrderAttributeFixture.cs" />
<Compile Include="TestCaseSourceAttributeFixture.cs" />
<Compile Include="TestContextData.cs" />
<Compile Include="TestFixtureData.cs" />
<Compile Include="TestFixtureSourceData.cs" />
<Compile Include="TestMethodSignatureFixture.cs" />
<Compile Include="TestOfFixture.cs" />
<Compile Include="TextOutputFixture.cs" />
<Compile Include="TheoryFixture.cs" />
<Compile Include="TimeoutFixture.cs" />
<Compile Include="UnexpectedExceptionFixture.cs" />
<Compile Include="UnhandledExceptions.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-netcf-3.5.csproj">
<Project>{5F6CB3DC-5CE5-4C6A-AB23-936DB3B35DCC}</Project>
<Name>nunit.framework-netcf-3.5</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CompactFramework.CSharp.targets" />
<ProjectExtensions>
<VisualStudio>
<FlavorProperties GUID="{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}">
<HostingProcess disable="1" />
</FlavorProperties>
</VisualStudio>
</ProjectExtensions>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

Просмотреть файл

@ -1,120 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MinimumVisualStudioVersion>10.0</MinimumVisualStudioVersion>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{9ED200E4-2026-4955-87E0-D8CEA7BD9E7F}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnit.TestData</RootNamespace>
<AssemblyName>nunit.testdata</AssemblyName>
<DefaultLanguage>en-US</DefaultLanguage>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<TargetFrameworkProfile>Profile259</TargetFrameworkProfile>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<IntermediateOutputPath>obj\$(Configuration)\portable\</IntermediateOutputPath>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\portable\</OutputPath>
<DefineConstants>TRACE;DEBUG;PORTABLE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\portable\</OutputPath>
<DefineConstants>TRACE;PORTABLE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="mscorlib" />
<Reference Include="System" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="ActionAttributeFixture.cs" />
<Compile Include="AssertCountFixture.cs" />
<Compile Include="AssertFailFixture.cs" />
<Compile Include="AssertIgnoreData.cs" />
<Compile Include="AsyncDummyFixture.cs" />
<Compile Include="AsyncRealFixture.cs" />
<Compile Include="AsyncSetupTearDownFixture.cs" />
<Compile Include="AttributeInheritanceData.cs" />
<Compile Include="AuthorFixture.cs" />
<Compile Include="CategoryAttributeData.cs" />
<Compile Include="CultureAttributeData.cs" />
<Compile Include="DatapointFixture.cs" />
<Compile Include="DescriptionFixture.cs" />
<Compile Include="GenericTestMethodData.cs" />
<Compile Include="MaxTimeFixture.cs" />
<Compile Include="OneTimeSetUpTearDownData.cs" />
<Compile Include="OptionalTestParametersFixture.cs" />
<Compile Include="ParameterizedTestFixture.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="PropertyAttributeTests.cs" />
<Compile Include="RandomAttributeFixture.cs" />
<Compile Include="RepeatedTestFixture.cs" />
<Compile Include="RepeatingTestsFixtureBase.cs" />
<Compile Include="RetryFixture.cs" />
<Compile Include="SetUpData.cs" />
<Compile Include="SetUpFixtureData.cs" />
<Compile Include="SingleThreadedFixtureData.cs" />
<Compile Include="TestCaseAttributeFixture.cs" />
<Compile Include="TestCaseOrderAttributeFixture.cs" />
<Compile Include="TestCaseSourceAttributeFixture.cs" />
<Compile Include="TestContextData.cs" />
<Compile Include="TestFixtureData.cs" />
<Compile Include="TestFixtureSourceData.cs" />
<Compile Include="TestMethodSignatureFixture.cs" />
<Compile Include="TestOfFixture.cs" />
<Compile Include="TextOutputFixture.cs" />
<Compile Include="TheoryFixture.cs" />
<Compile Include="TimeoutFixture.cs" />
<Compile Include="UnexpectedExceptionFixture.cs" />
<Compile Include="UnhandledExceptions.cs" />
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-portable.csproj">
<Project>{D6FBBB3A-F6B8-45BB-B657-A7226AB96624}</Project>
<Name>nunit.framework-portable</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

Просмотреть файл

@ -1,335 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{EA9871E3-9972-4476-821E-3961C28125E8}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnit.Framework.Tests</RootNamespace>
<AssemblyName>nunit.framework.tests</AssemblyName>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>3.5</OldToolsVersion>
<UpgradeBackupLocation />
<IntermediateOutputPath>obj\$(Configuration)\net-2.0\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\net-2.0\</OutputPath>
<DefineConstants>TRACE;NUNIT_FRAMEWORK;NET_2_0;PARALLEL;NUNITLITE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn>0414</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
<DefineConstants>TRACE;DEBUG;NUNIT_FRAMEWORK;NET_2_0;PARALLEL;NUNITLITE</DefineConstants>
<OutputPath>..\..\..\bin\Debug\net-2.0\</OutputPath>
<DebugType>full</DebugType>
<WarningLevel>4</WarningLevel>
<Optimize>false</Optimize>
<DebugSymbols>true</DebugSymbols>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Externalconsole>true</Externalconsole>
<NoWarn>0414</NoWarn>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\Fakes.cs">
<Link>TestUtilities\Fakes.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="..\TestBuilder.cs">
<Link>TestUtilities\TestBuilder.cs</Link>
</Compile>
<Compile Include="..\TestFile.cs">
<Link>TestUtilities\TestFile.cs</Link>
</Compile>
<Compile Include="Api\FrameworkControllerTests.cs" />
<Compile Include="Api\ResultStateTests.cs" />
<Compile Include="Api\TestAssemblyRunnerTests.cs" />
<Compile Include="Assertions\AssertionHelperTests.cs" />
<Compile Include="Assertions\AssertPolarityTests.cs" />
<Compile Include="Assertions\AssertZeroTests.cs" />
<Compile Include="Assertions\AssumeEqualsTests.cs" />
<Compile Include="Assertions\AsyncThrowsTests.cs" />
<Compile Include="Assertions\LowTrustFixture.cs" />
<Compile Include="Attributes\CommandWrapperTests.cs" />
<Compile Include="Attributes\RetryAttributeTests.cs" />
<Compile Include="Attributes\RandomAttributeTests.cs" />
<Compile Include="Attributes\RangeAttributeTests.cs" />
<Compile Include="Attributes\SingleThreadedFixtureTests.cs" />
<Compile Include="Attributes\TestFixtureSourceTests.cs" />
<Compile Include="Attributes\TestOrderAttributeTests.cs" />
<Compile Include="Compatibility\ReflectionExtensionsTests.cs" />
<Compile Include="Constraints\AsyncDelayedConstraintTests.cs" />
<Compile Include="Constraints\CollectionSupersetConstraintTests.cs" />
<Compile Include="Constraints\DictionaryContainsValueConstraintTests.cs" />
<Compile Include="Internal\AssemblyHelperTests.cs" />
<Compile Include="Internal\AsyncSetupTeardownTests.cs" />
<Compile Include="Internal\AsyncTestMethodTests.cs" />
<Compile Include="Internal\Filters\AndFilterTests.cs" />
<Compile Include="Internal\Filters\CategoryFilterTests.cs" />
<Compile Include="Internal\Filters\ClassNameFilterTests.cs" />
<Compile Include="Internal\Filters\EmptyFilterTests.cs" />
<Compile Include="Internal\Filters\FullNameFilterTests.cs" />
<Compile Include="Internal\Filters\IdFilterTests.cs" />
<Compile Include="Internal\Filters\MethodNameFilterTests.cs" />
<Compile Include="Internal\Filters\NotFilterTests.cs" />
<Compile Include="Internal\Filters\OrFilterTests.cs" />
<Compile Include="Internal\Filters\PropertyFilterTests.cs" />
<Compile Include="Internal\Filters\MockTestFilter.cs" />
<Compile Include="Internal\Filters\TestFilterXmlTests.cs" />
<Compile Include="Internal\Filters\TestNameFilterTests.cs" />
<Compile Include="Internal\GenericMethodHelperTests.cs" />
<Compile Include="Internal\NUnitTestCaseBuilderTests.cs" />
<Compile Include="Internal\RealAsyncSetupTeardownTests.cs" />
<Compile Include="Internal\TestNameGeneratorTests.cs" />
<Compile Include="Internal\TestNamingTests.cs" />
<Compile Include="Internal\TypeHelperTests.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Assertions\ArrayEqualsFailureMessageFixture.cs" />
<Compile Include="Assertions\ArrayEqualsFixture.cs" />
<Compile Include="Assertions\ArrayNotEqualFixture.cs" />
<Compile Include="Assertions\AssertEqualsTests.cs" />
<Compile Include="Assertions\AssertFailTests.cs" />
<Compile Include="Assertions\AssertIgnoreTests.cs" />
<Compile Include="Assertions\AssertInconclusiveTests.cs" />
<Compile Include="Assertions\AssertPassTests.cs" />
<Compile Include="Assertions\AssertThatTests.cs" />
<Compile Include="Assertions\AssertThrowsAsyncTests.cs" />
<Compile Include="Assertions\AssertThrowsTests.cs" />
<Compile Include="Assertions\AssumeThatTests.cs" />
<Compile Include="Assertions\CollectionAssertTest.cs" />
<Compile Include="Assertions\ConditionAssertTests.cs" />
<Compile Include="Assertions\DirectoryAssertTests.cs" />
<Compile Include="Assertions\FileAssertTests.cs" />
<Compile Include="Assertions\GreaterEqualFixture.cs" />
<Compile Include="Assertions\GreaterFixture.cs" />
<Compile Include="Assertions\LessEqualFixture.cs" />
<Compile Include="Assertions\LessFixture.cs" />
<Compile Include="Assertions\ListContentsTests.cs" />
<Compile Include="Assertions\NotEqualFixture.cs" />
<Compile Include="Assertions\NotSameFixture.cs" />
<Compile Include="Assertions\NullableTypesTests.cs" />
<Compile Include="Assertions\SameFixture.cs" />
<Compile Include="Assertions\StringAssertTests.cs" />
<Compile Include="Assertions\TypeAssertTest.cs" />
<Compile Include="Attributes\ActionAttributeTests.cs" />
<Compile Include="Attributes\ApplyToContextTests.cs" />
<Compile Include="Attributes\ApplyToTestTests.cs" />
<Compile Include="Attributes\AttributeInheritanceTests.cs" />
<Compile Include="Attributes\AuthorTests.cs" />
<Compile Include="Attributes\CategoryAttributeTests.cs" />
<Compile Include="Attributes\CombinatorialTests.cs" />
<Compile Include="Attributes\DatapointTests.cs" />
<Compile Include="Attributes\DerivedPropertyAttributeTests.cs" />
<Compile Include="Attributes\DescriptionTests.cs" />
<Compile Include="Attributes\OneTimeSetUpTearDownTests.cs" />
<Compile Include="Attributes\MaxTimeTests.cs" />
<Compile Include="Attributes\PairwiseTests.cs" />
<Compile Include="Attributes\ParameterizedTestFixtureTests.cs" />
<Compile Include="Attributes\PropertyAttributeTests.cs" />
<Compile Include="Attributes\RepeatAttributeTests.cs" />
<Compile Include="Attributes\ApartmentAttributeTests.cs" />
<Compile Include="Attributes\RequiresThreadAttributeTests.cs" />
<Compile Include="Attributes\SetCultureAttributeTests.cs" />
<Compile Include="Attributes\SetUpFixtureAttributeTests.cs" />
<Compile Include="Attributes\TestMethodBuilderTests.cs" />
<Compile Include="Attributes\TestCaseAttributeTests.cs" />
<Compile Include="Attributes\TestCaseSourceTests.cs" />
<Compile Include="Attributes\TestDummy.cs" />
<Compile Include="Attributes\TestExpectedResult.cs" />
<Compile Include="TestParametersTests.cs" />
<Compile Include="TestUtilities\AsyncTestDelegates.cs" />
<Compile Include="Attributes\TestFixtureAttributeTests.cs" />
<Compile Include="Attributes\TestOfTests.cs" />
<Compile Include="Attributes\TheoryTests.cs" />
<Compile Include="Attributes\ThreadingTests.cs" />
<Compile Include="Attributes\ValuesAttributeEnumTests.cs" />
<Compile Include="Attributes\TimeoutTests.cs" />
<Compile Include="Attributes\ValuesAttributeTests.cs" />
<Compile Include="Attributes\ValueSourceTests.cs" />
<Compile Include="Compatibility\AttributeHelperTests.cs" />
<Compile Include="Constraints\AllItemsConstraintTests.cs" />
<Compile Include="Constraints\AndConstraintTests.cs" />
<Compile Include="Constraints\AssignableToConstraintTests.cs" />
<Compile Include="Constraints\AttributeExistsConstraintTests.cs" />
<Compile Include="Constraints\BasicConstraintTests.cs" />
<Compile Include="Constraints\BinarySerializableTest.cs" />
<Compile Include="Constraints\AssignableFromConstraintTests.cs" />
<Compile Include="Constraints\CollectionContainsConstraintTests.cs" />
<Compile Include="Constraints\CollectionEqualsTests.cs" />
<Compile Include="Constraints\CollectionEquivalentConstraintTests.cs" />
<Compile Include="Constraints\CollectionOrderedConstraintTests.cs" />
<Compile Include="Constraints\CollectionSubsetConstraintTests.cs" />
<Compile Include="Constraints\ComparisonConstraintTestBase.cs" />
<Compile Include="Constraints\DelayedConstraintTests.cs" />
<Compile Include="Constraints\DictionaryContainsKeyConstraintTests.cs" />
<Compile Include="Constraints\EndsWithConstraintTests.cs" />
<Compile Include="Constraints\ExactTypeConstraintTests.cs" />
<Compile Include="Constraints\FileOrDirectoryExistsConstraintTests.cs" />
<Compile Include="Constraints\GreaterThanConstraintTests.cs" />
<Compile Include="Constraints\GreaterThanOrEqualConstraintTests.cs" />
<Compile Include="Constraints\InstanceOfTypeConstraintTests.cs" />
<Compile Include="Constraints\LessThanConstraintTests.cs" />
<Compile Include="Constraints\LessThanOrEqualConstraintTests.cs" />
<Compile Include="Constraints\NUnitComparerTests.cs" />
<Compile Include="Constraints\ConstraintTestBase.cs" />
<Compile Include="Constraints\EmptyConstraintTest.cs" />
<Compile Include="Constraints\EqualConstraintTests.cs" />
<Compile Include="Constraints\EqualTest.cs" />
<Compile Include="Constraints\FloatingPointNumericsTest.cs" />
<Compile Include="Constraints\MsgUtilTests.cs" />
<Compile Include="Constraints\NotConstraintTests.cs" />
<Compile Include="Constraints\NumericsTest.cs" />
<Compile Include="Constraints\NUnitEqualityComparerTests.cs" />
<Compile Include="Constraints\OrConstraintTests.cs" />
<Compile Include="Constraints\PathConstraintTests.cs" />
<Compile Include="Constraints\PredicateConstraintTests.cs" />
<Compile Include="Constraints\PropertyTests.cs" />
<Compile Include="Constraints\RangeConstraintTests.cs" />
<Compile Include="Constraints\RangeTests.cs" />
<Compile Include="Constraints\ReusableConstraintTests.cs" />
<Compile Include="Constraints\SameAsTest.cs" />
<Compile Include="Constraints\StartsWithConstraintTests.cs" />
<Compile Include="Constraints\StringConstraintTest.cs" />
<Compile Include="Constraints\SubstringConstraintTests.cs" />
<Compile Include="Constraints\ThrowsConstraintTests.cs" />
<Compile Include="Constraints\ThrowsExceptionConstraintTests.cs" />
<Compile Include="Constraints\ToleranceTests.cs" />
<Compile Include="Constraints\ToStringTests.cs" />
<Compile Include="Constraints\UniqueItemsConstraintTests.cs" />
<Compile Include="Constraints\XmlSerializableTest.cs" />
<Compile Include="Internal\CallContextTests.cs" />
<Compile Include="Internal\CultureSettingAndDetectionTests.cs" />
<Compile Include="Internal\DeduceTypeArgsFromArgs.cs" />
<Compile Include="Internal\EventQueueTests.cs" />
<Compile Include="Internal\GenericTestFixtureTests.cs" />
<Compile Include="Internal\GenericTestMethodTests.cs" />
<Compile Include="Internal\PlatformDetectionTests.cs" />
<Compile Include="Internal\PropertyBagTests.cs" />
<Compile Include="Internal\RandomizerTests.cs" />
<Compile Include="Internal\RuntimeFrameworkTests.cs" />
<Compile Include="Internal\SetUpFixtureTests.cs" />
<Compile Include="Internal\SetUpTearDownTests.cs" />
<Compile Include="Internal\StackFilterTests.cs" />
<Compile Include="Internal\TestExecutionContextTests.cs" />
<Compile Include="Internal\Filters\TestFilterTests.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="Internal\TestFixtureTests.cs" />
<Compile Include="Internal\TestMethodSignatureTests.cs" />
<Compile Include="Internal\TestResultOutputTests.cs" />
<Compile Include="Internal\TestResultTests.cs" />
<Compile Include="Internal\TestWorkerTests.cs" />
<Compile Include="Internal\TestXmlTests.cs" />
<Compile Include="Internal\TextMessageWriterTests.cs" />
<Compile Include="Internal\TypeParameterUsedWithTestMethod.cs" />
<Compile Include="Internal\UnexpectedExceptionTests.cs" />
<Compile Include="Internal\UnhandledExceptionTests.cs" />
<Compile Include="Internal\WorkItemQueueTests.cs" />
<Compile Include="Internal\WorkShiftTests.cs" />
<Compile Include="Syntax\AfterTests.cs" />
<Compile Include="Syntax\ArbitraryConstraintMatching.cs" />
<Compile Include="Syntax\CollectionTests.cs" />
<Compile Include="Syntax\ComparisonTests.cs" />
<Compile Include="Syntax\EqualityTests.cs" />
<Compile Include="Syntax\InvalidCodeTests.cs" />
<Compile Include="Syntax\OperatorOverrides.cs" />
<Compile Include="Syntax\OperatorTests.cs" />
<Compile Include="Syntax\PathConstraintTests.cs" />
<Compile Include="Syntax\PropertyTests.cs" />
<Compile Include="Syntax\SerializableConstraints.cs" />
<Compile Include="Syntax\SimpleConstraints.cs" />
<Compile Include="Syntax\StringConstraints.cs" />
<Compile Include="Syntax\SyntaxTest.cs" />
<Compile Include="Syntax\TestCompiler.cs" />
<Compile Include="Syntax\ThrowsTests.cs" />
<Compile Include="Syntax\TypeConstraints.cs" />
<Compile Include="TestContextTests.cs" />
<Compile Include="TestUtilities\Collections\SimpleObjectCollection.cs" />
<Compile Include="TestUtilities\Collections\SimpleObjectList.cs" />
<Compile Include="TestUtilities\Comparers\AlwaysEqualComparer.cs" />
<Compile Include="TestUtilities\Comparers\GenericComparison.cs" />
<Compile Include="TestUtilities\Comparers\GenericEqualityComparer.cs" />
<Compile Include="TestUtilities\Comparers\GenericComparer.cs" />
<Compile Include="TestUtilities\Comparers\ObjectEqualityComparer.cs" />
<Compile Include="TestUtilities\Comparers\ObjectComparer.cs" />
<Compile Include="TestUtilities\ResultSummary.cs" />
<Compile Include="TestUtilities\TestAssert.cs" />
<Compile Include="TestUtilities\Comparers\TestComparer.cs" />
<Compile Include="TestUtilities\TestDelegates.cs" />
<Compile Include="TestUtilities\TestDirectory.cs" />
<Compile Include="TestUtilities\TestFinder.cs" />
<Compile Include="Constraints\ExactCountConstraintTests.cs" />
<Compile Include="TestUtilities\UniqueValues.cs" />
<Compile Include="TextOutputTests.cs" />
<Compile Include="ThrowsTests.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="NUnit.System.Linq, Version=0.6.0.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
<HintPath>..\..\..\packages\NUnit.System.Linq.0.6.0\lib\net20\NUnit.System.Linq.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.Web" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="TestImage1.jpg" />
<EmbeddedResource Include="TestImage2.jpg" />
<EmbeddedResource Include="TestText1.txt" />
<EmbeddedResource Include="TestText2.txt" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="TestListFile.txt" />
<EmbeddedResource Include="TestListFile2.txt" />
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-2.0.csproj">
<Project>{12B66B03-90F1-4992-BD33-BDF3C69AE49E}</Project>
<Name>nunit.framework-2.0</Name>
</ProjectReference>
<ProjectReference Include="..\testdata\nunit.testdata-2.0.csproj">
<Project>{15B64946-4989-4873-915C-3E181772FA03}</Project>
<Name>nunit.testdata-2.0</Name>
</ProjectReference>
<ProjectReference Include="..\mock-assembly\mock-assembly-2.0.csproj">
<Project>{2E368281-3BA8-4050-B05E-0E0E43F8F446}</Project>
<Name>mock-assembly-2.0</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
<None Include="packages.config" />
</ItemGroup>
</Project>

Просмотреть файл

@ -1,330 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{B93FC354-D59D-4650-84E4-7FCA7D51689A}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnit.Framework.Tests</RootNamespace>
<AssemblyName>nunit.framework.tests</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>3.5</OldToolsVersion>
<UpgradeBackupLocation />
<IntermediateOutputPath>obj\$(Configuration)\net-3.5\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\net-3.5\</OutputPath>
<DefineConstants>TRACE;NUNIT_FRAMEWORK;NET_3_5;PARALLEL;NUNITLITE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<NoWarn>0414</NoWarn>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
<DefineConstants>TRACE;DEBUG;NUNIT_FRAMEWORK;NET_3_5;PARALLEL;NUNITLITE</DefineConstants>
<OutputPath>..\..\..\bin\Debug\net-3.5\</OutputPath>
<DebugType>full</DebugType>
<WarningLevel>4</WarningLevel>
<Optimize>false</Optimize>
<DebugSymbols>true</DebugSymbols>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Externalconsole>true</Externalconsole>
<NoWarn>0414</NoWarn>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\Fakes.cs">
<Link>TestUtilities\Fakes.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="..\TestBuilder.cs">
<Link>TestUtilities\TestBuilder.cs</Link>
</Compile>
<Compile Include="..\TestFile.cs">
<Link>TestUtilities\TestFile.cs</Link>
</Compile>
<Compile Include="Api\FrameworkControllerTests.cs" />
<Compile Include="Api\ResultStateTests.cs" />
<Compile Include="Api\TestAssemblyRunnerTests.cs" />
<Compile Include="Assertions\AssertionHelperTests.cs" />
<Compile Include="Assertions\AssertPolarityTests.cs" />
<Compile Include="Assertions\AssertZeroTests.cs" />
<Compile Include="Assertions\AssumeEqualsTests.cs" />
<Compile Include="Assertions\AsyncThrowsTests.cs" />
<Compile Include="Assertions\LowTrustFixture.cs" />
<Compile Include="Attributes\CommandWrapperTests.cs" />
<Compile Include="Attributes\RetryAttributeTests.cs" />
<Compile Include="Attributes\RandomAttributeTests.cs" />
<Compile Include="Attributes\RangeAttributeTests.cs" />
<Compile Include="Attributes\SingleThreadedFixtureTests.cs" />
<Compile Include="Attributes\TestFixtureSourceTests.cs" />
<Compile Include="Attributes\TestOrderAttributeTests.cs" />
<Compile Include="Compatibility\ReflectionExtensionsTests.cs" />
<Compile Include="Constraints\AsyncDelayedConstraintTests.cs" />
<Compile Include="Constraints\CollectionSupersetConstraintTests.cs" />
<Compile Include="Constraints\DictionaryContainsValueConstraintTests.cs" />
<Compile Include="Internal\AssemblyHelperTests.cs" />
<Compile Include="Internal\AsyncSetupTeardownTests.cs" />
<Compile Include="Internal\AsyncTestMethodTests.cs" />
<Compile Include="Internal\Filters\AndFilterTests.cs" />
<Compile Include="Internal\Filters\CategoryFilterTests.cs" />
<Compile Include="Internal\Filters\ClassNameFilterTests.cs" />
<Compile Include="Internal\Filters\EmptyFilterTests.cs" />
<Compile Include="Internal\Filters\FullNameFilterTests.cs" />
<Compile Include="Internal\Filters\IdFilterTests.cs" />
<Compile Include="Internal\Filters\MethodNameFilterTests.cs" />
<Compile Include="Internal\Filters\MockTestFilter.cs" />
<Compile Include="Internal\Filters\NotFilterTests.cs" />
<Compile Include="Internal\Filters\OrFilterTests.cs" />
<Compile Include="Internal\Filters\PropertyFilterTests.cs" />
<Compile Include="Internal\Filters\TestFilterXmlTests.cs" />
<Compile Include="Internal\Filters\TestNameFilterTests.cs" />
<Compile Include="Internal\GenericMethodHelperTests.cs" />
<Compile Include="Internal\NUnitTestCaseBuilderTests.cs" />
<Compile Include="Internal\RealAsyncSetupTeardownTests.cs" />
<Compile Include="Internal\TestNameGeneratorTests.cs" />
<Compile Include="Internal\TestNamingTests.cs" />
<Compile Include="Internal\TypeHelperTests.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Assertions\ArrayEqualsFailureMessageFixture.cs" />
<Compile Include="Assertions\ArrayEqualsFixture.cs" />
<Compile Include="Assertions\ArrayNotEqualFixture.cs" />
<Compile Include="Assertions\AssertEqualsTests.cs" />
<Compile Include="Assertions\AssertFailTests.cs" />
<Compile Include="Assertions\AssertIgnoreTests.cs" />
<Compile Include="Assertions\AssertInconclusiveTests.cs" />
<Compile Include="Assertions\AssertPassTests.cs" />
<Compile Include="Assertions\AssertThatTests.cs" />
<Compile Include="Assertions\AssertThrowsAsyncTests.cs" />
<Compile Include="Assertions\AssertThrowsTests.cs" />
<Compile Include="Assertions\AssumeThatTests.cs" />
<Compile Include="Assertions\CollectionAssertTest.cs" />
<Compile Include="Assertions\ConditionAssertTests.cs" />
<Compile Include="Assertions\DirectoryAssertTests.cs" />
<Compile Include="Assertions\FileAssertTests.cs" />
<Compile Include="Assertions\GreaterEqualFixture.cs" />
<Compile Include="Assertions\GreaterFixture.cs" />
<Compile Include="Assertions\LessEqualFixture.cs" />
<Compile Include="Assertions\LessFixture.cs" />
<Compile Include="Assertions\ListContentsTests.cs" />
<Compile Include="Assertions\NotEqualFixture.cs" />
<Compile Include="Assertions\NotSameFixture.cs" />
<Compile Include="Assertions\NullableTypesTests.cs" />
<Compile Include="Assertions\SameFixture.cs" />
<Compile Include="Assertions\StringAssertTests.cs" />
<Compile Include="Assertions\TypeAssertTest.cs" />
<Compile Include="Attributes\ActionAttributeTests.cs" />
<Compile Include="Attributes\ApplyToContextTests.cs" />
<Compile Include="Attributes\ApplyToTestTests.cs" />
<Compile Include="Attributes\AttributeInheritanceTests.cs" />
<Compile Include="Attributes\AuthorTests.cs" />
<Compile Include="Attributes\CategoryAttributeTests.cs" />
<Compile Include="Attributes\CombinatorialTests.cs" />
<Compile Include="Attributes\DatapointTests.cs" />
<Compile Include="Attributes\DerivedPropertyAttributeTests.cs" />
<Compile Include="Attributes\DescriptionTests.cs" />
<Compile Include="Attributes\OneTimeSetUpTearDownTests.cs" />
<Compile Include="Attributes\MaxTimeTests.cs" />
<Compile Include="Attributes\PairwiseTests.cs" />
<Compile Include="Attributes\ParameterizedTestFixtureTests.cs" />
<Compile Include="Attributes\PropertyAttributeTests.cs" />
<Compile Include="Attributes\RepeatAttributeTests.cs" />
<Compile Include="Attributes\ApartmentAttributeTests.cs" />
<Compile Include="Attributes\RequiresThreadAttributeTests.cs" />
<Compile Include="Attributes\SetCultureAttributeTests.cs" />
<Compile Include="Attributes\SetUpFixtureAttributeTests.cs" />
<Compile Include="Attributes\TestMethodBuilderTests.cs" />
<Compile Include="Attributes\TestCaseAttributeTests.cs" />
<Compile Include="Attributes\TestCaseSourceTests.cs" />
<Compile Include="Attributes\TestDummy.cs" />
<Compile Include="Attributes\TestExpectedResult.cs" />
<Compile Include="TestUtilities\AsyncTestDelegates.cs" />
<Compile Include="Attributes\TestFixtureAttributeTests.cs" />
<Compile Include="Attributes\TestOfTests.cs" />
<Compile Include="Attributes\TheoryTests.cs" />
<Compile Include="Attributes\ThreadingTests.cs" />
<Compile Include="Attributes\ValuesAttributeEnumTests.cs" />
<Compile Include="Attributes\TimeoutTests.cs" />
<Compile Include="Attributes\ValuesAttributeTests.cs" />
<Compile Include="Attributes\ValueSourceTests.cs" />
<Compile Include="Compatibility\AttributeHelperTests.cs" />
<Compile Include="Constraints\AllItemsConstraintTests.cs" />
<Compile Include="Constraints\AndConstraintTests.cs" />
<Compile Include="Constraints\AssignableToConstraintTests.cs" />
<Compile Include="Constraints\AttributeExistsConstraintTests.cs" />
<Compile Include="Constraints\BasicConstraintTests.cs" />
<Compile Include="Constraints\BinarySerializableTest.cs" />
<Compile Include="Constraints\AssignableFromConstraintTests.cs" />
<Compile Include="Constraints\CollectionContainsConstraintTests.cs" />
<Compile Include="Constraints\CollectionEqualsTests.cs" />
<Compile Include="Constraints\CollectionEquivalentConstraintTests.cs" />
<Compile Include="Constraints\CollectionOrderedConstraintTests.cs" />
<Compile Include="Constraints\CollectionSubsetConstraintTests.cs" />
<Compile Include="Constraints\ComparisonConstraintTestBase.cs" />
<Compile Include="Constraints\DelayedConstraintTests.cs" />
<Compile Include="Constraints\DictionaryContainsKeyConstraintTests.cs" />
<Compile Include="Constraints\EndsWithConstraintTests.cs" />
<Compile Include="Constraints\ExactTypeConstraintTests.cs" />
<Compile Include="Constraints\FileOrDirectoryExistsConstraintTests.cs" />
<Compile Include="Constraints\GreaterThanConstraintTests.cs" />
<Compile Include="Constraints\GreaterThanOrEqualConstraintTests.cs" />
<Compile Include="Constraints\InstanceOfTypeConstraintTests.cs" />
<Compile Include="Constraints\LessThanConstraintTests.cs" />
<Compile Include="Constraints\LessThanOrEqualConstraintTests.cs" />
<Compile Include="Constraints\NUnitComparerTests.cs" />
<Compile Include="Constraints\ConstraintTestBase.cs" />
<Compile Include="Constraints\EmptyConstraintTest.cs" />
<Compile Include="Constraints\EqualConstraintTests.cs" />
<Compile Include="Constraints\EqualTest.cs" />
<Compile Include="Constraints\FloatingPointNumericsTest.cs" />
<Compile Include="Constraints\MsgUtilTests.cs" />
<Compile Include="Constraints\NotConstraintTests.cs" />
<Compile Include="Constraints\NumericsTest.cs" />
<Compile Include="Constraints\NUnitEqualityComparerTests.cs" />
<Compile Include="Constraints\OrConstraintTests.cs" />
<Compile Include="Constraints\PathConstraintTests.cs" />
<Compile Include="Constraints\PredicateConstraintTests.cs" />
<Compile Include="Constraints\PropertyTests.cs" />
<Compile Include="Constraints\RangeConstraintTests.cs" />
<Compile Include="Constraints\RangeTests.cs" />
<Compile Include="Constraints\ReusableConstraintTests.cs" />
<Compile Include="Constraints\SameAsTest.cs" />
<Compile Include="Constraints\StartsWithConstraintTests.cs" />
<Compile Include="Constraints\StringConstraintTest.cs" />
<Compile Include="Constraints\SubstringConstraintTests.cs" />
<Compile Include="Constraints\ThrowsConstraintTests.cs" />
<Compile Include="Constraints\ThrowsExceptionConstraintTests.cs" />
<Compile Include="Constraints\ToleranceTests.cs" />
<Compile Include="Constraints\ToStringTests.cs" />
<Compile Include="Constraints\UniqueItemsConstraintTests.cs" />
<Compile Include="Constraints\XmlSerializableTest.cs" />
<Compile Include="Internal\CallContextTests.cs" />
<Compile Include="Internal\CultureSettingAndDetectionTests.cs" />
<Compile Include="Internal\DeduceTypeArgsFromArgs.cs" />
<Compile Include="Internal\EventQueueTests.cs" />
<Compile Include="Internal\GenericTestFixtureTests.cs" />
<Compile Include="Internal\GenericTestMethodTests.cs" />
<Compile Include="Internal\PlatformDetectionTests.cs" />
<Compile Include="Internal\PropertyBagTests.cs" />
<Compile Include="Internal\RandomizerTests.cs" />
<Compile Include="Internal\RuntimeFrameworkTests.cs" />
<Compile Include="Internal\SetUpFixtureTests.cs" />
<Compile Include="Internal\SetUpTearDownTests.cs" />
<Compile Include="Internal\StackFilterTests.cs" />
<Compile Include="Internal\TestExecutionContextTests.cs" />
<Compile Include="Internal\Filters\TestFilterTests.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="Internal\TestFixtureTests.cs" />
<Compile Include="Internal\TestMethodSignatureTests.cs" />
<Compile Include="Internal\TestResultOutputTests.cs" />
<Compile Include="Internal\TestResultTests.cs" />
<Compile Include="Internal\TestWorkerTests.cs" />
<Compile Include="Internal\TestXmlTests.cs" />
<Compile Include="Internal\TextMessageWriterTests.cs" />
<Compile Include="Internal\TypeParameterUsedWithTestMethod.cs" />
<Compile Include="Internal\UnexpectedExceptionTests.cs" />
<Compile Include="Internal\UnhandledExceptionTests.cs" />
<Compile Include="Internal\WorkItemQueueTests.cs" />
<Compile Include="Internal\WorkShiftTests.cs" />
<Compile Include="Syntax\AfterTests.cs" />
<Compile Include="Syntax\ArbitraryConstraintMatching.cs" />
<Compile Include="Syntax\CollectionTests.cs" />
<Compile Include="Syntax\ComparisonTests.cs" />
<Compile Include="Syntax\EqualityTests.cs" />
<Compile Include="Syntax\InvalidCodeTests.cs" />
<Compile Include="Syntax\OperatorOverrides.cs" />
<Compile Include="Syntax\OperatorTests.cs" />
<Compile Include="Syntax\PathConstraintTests.cs" />
<Compile Include="Syntax\PropertyTests.cs" />
<Compile Include="Syntax\SerializableConstraints.cs" />
<Compile Include="Syntax\SimpleConstraints.cs" />
<Compile Include="Syntax\StringConstraints.cs" />
<Compile Include="Syntax\SyntaxTest.cs" />
<Compile Include="Syntax\TestCompiler.cs" />
<Compile Include="Syntax\ThrowsTests.cs" />
<Compile Include="Syntax\TypeConstraints.cs" />
<Compile Include="TestContextTests.cs" />
<Compile Include="TestUtilities\Collections\SimpleObjectCollection.cs" />
<Compile Include="TestUtilities\Collections\SimpleObjectList.cs" />
<Compile Include="TestUtilities\Comparers\AlwaysEqualComparer.cs" />
<Compile Include="TestUtilities\Comparers\GenericComparison.cs" />
<Compile Include="TestUtilities\Comparers\GenericEqualityComparer.cs" />
<Compile Include="TestUtilities\Comparers\GenericComparer.cs" />
<Compile Include="TestUtilities\Comparers\ObjectEqualityComparer.cs" />
<Compile Include="TestUtilities\Comparers\ObjectComparer.cs" />
<Compile Include="TestUtilities\Comparers\TestComparer.cs" />
<Compile Include="TestUtilities\ResultSummary.cs" />
<Compile Include="TestUtilities\TestAssert.cs" />
<Compile Include="TestUtilities\TestDelegates.cs" />
<Compile Include="TestUtilities\TestDirectory.cs" />
<Compile Include="TestUtilities\TestFinder.cs" />
<Compile Include="Constraints\ExactCountConstraintTests.cs" />
<Compile Include="TestUtilities\UniqueValues.cs" />
<Compile Include="TextOutputTests.cs" />
<Compile Include="ThrowsTests.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.Web" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="TestImage1.jpg" />
<EmbeddedResource Include="TestImage2.jpg" />
<EmbeddedResource Include="TestText1.txt" />
<EmbeddedResource Include="TestText2.txt" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="TestListFile.txt" />
<EmbeddedResource Include="TestListFile2.txt" />
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-3.5.csproj">
<Project>{7FA125B4-E377-4D4C-AECB-17B934E3A4B3}</Project>
<Name>nunit.framework-3.5</Name>
</ProjectReference>
<ProjectReference Include="..\testdata\nunit.testdata-3.5.csproj">
<Project>{520F4C89-51B6-49D6-9ED7-4523048C0154}</Project>
<Name>nunit.testdata-3.5</Name>
</ProjectReference>
<ProjectReference Include="..\mock-assembly\mock-assembly-3.5.csproj">
<Project>{8FCE12F2-FE7B-43D0-94E9-3B71FECAFE64}</Project>
<Name>mock-assembly-3.5</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
<None Include="packages.config" />
</ItemGroup>
</Project>

Просмотреть файл

@ -1,356 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{08D0F53A-CD37-4060-B5A2-BCC202F0DE46}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnit.Framework.Tests</RootNamespace>
<AssemblyName>nunit.framework.tests</AssemblyName>
<FileAlignment>512</FileAlignment>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>3.5</OldToolsVersion>
<UpgradeBackupLocation />
<IntermediateOutputPath>obj\$(Configuration)\net-4.0\</IntermediateOutputPath>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\net-4.0\</OutputPath>
<DefineConstants>TRACE;NUNIT_FRAMEWORK;NET_4_0;PARALLEL;NUNITLITE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<NoWarn>0414</NoWarn>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
<DefineConstants>TRACE;DEBUG;NUNIT_FRAMEWORK;NET_4_0;PARALLEL;NUNITLITE</DefineConstants>
<OutputPath>..\..\..\bin\Debug\net-4.0\</OutputPath>
<DebugType>full</DebugType>
<WarningLevel>4</WarningLevel>
<Optimize>false</Optimize>
<DebugSymbols>true</DebugSymbols>
<NoWarn>0414</NoWarn>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\Fakes.cs">
<Link>TestUtilities\Fakes.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="..\TestBuilder.cs">
<Link>TestUtilities\TestBuilder.cs</Link>
</Compile>
<Compile Include="..\TestFile.cs">
<Link>TestUtilities\TestFile.cs</Link>
</Compile>
<Compile Include="Api\FrameworkControllerTests.cs" />
<Compile Include="Api\ResultStateTests.cs" />
<Compile Include="Api\TestAssemblyRunnerTests.cs" />
<Compile Include="Assertions\ArrayEqualsFailureMessageFixture.cs" />
<Compile Include="Assertions\ArrayEqualsFixture.cs" />
<Compile Include="Assertions\ArrayNotEqualFixture.cs" />
<Compile Include="Assertions\AssertEqualsTests.cs" />
<Compile Include="Assertions\AssertFailTests.cs" />
<Compile Include="Assertions\AssertIgnoreTests.cs" />
<Compile Include="Assertions\AssertInconclusiveTests.cs" />
<Compile Include="Assertions\AssertionHelperTests.cs" />
<Compile Include="Assertions\AssertPassTests.cs" />
<Compile Include="Assertions\AssertPolarityTests.cs" />
<Compile Include="Assertions\AssertThatTests.cs" />
<Compile Include="Assertions\AssertThrowsAsyncTests.cs" />
<Compile Include="Assertions\AssertThrowsTests.cs" />
<Compile Include="Assertions\AssertZeroTests.cs" />
<Compile Include="Assertions\AssumeEqualsTests.cs" />
<Compile Include="Assertions\AssumeThatTests.cs" />
<Compile Include="Assertions\AsyncThrowsTests.cs" />
<Compile Include="Assertions\CollectionAssertTest.cs" />
<Compile Include="Assertions\ConditionAssertTests.cs" />
<Compile Include="Assertions\DirectoryAssertTests.cs" />
<Compile Include="Assertions\FileAssertTests.cs" />
<Compile Include="Assertions\GreaterEqualFixture.cs" />
<Compile Include="Assertions\GreaterFixture.cs" />
<Compile Include="Assertions\LessEqualFixture.cs" />
<Compile Include="Assertions\LessFixture.cs" />
<Compile Include="Assertions\ListContentsTests.cs" />
<Compile Include="Assertions\LowTrustFixture.cs" />
<Compile Include="Assertions\NotEqualFixture.cs" />
<Compile Include="Assertions\NotSameFixture.cs" />
<Compile Include="Assertions\NullableTypesTests.cs" />
<Compile Include="Assertions\SameFixture.cs" />
<Compile Include="Assertions\StringAssertTests.cs" />
<Compile Include="Assertions\TypeAssertTest.cs" />
<Compile Include="Attributes\ActionAttributeTests.cs" />
<Compile Include="Attributes\ApartmentAttributeTests.cs" />
<Compile Include="Attributes\ApplyToContextTests.cs" />
<Compile Include="Attributes\ApplyToTestTests.cs" />
<Compile Include="Attributes\AttributeInheritanceTests.cs" />
<Compile Include="Attributes\AuthorTests.cs" />
<Compile Include="Attributes\CategoryAttributeTests.cs" />
<Compile Include="Attributes\CombinatorialTests.cs" />
<Compile Include="Attributes\CommandWrapperTests.cs" />
<Compile Include="Attributes\DatapointTests.cs" />
<Compile Include="Attributes\DerivedPropertyAttributeTests.cs" />
<Compile Include="Attributes\DescriptionTests.cs" />
<Compile Include="Attributes\MaxTimeTests.cs" />
<Compile Include="Attributes\OneTimeSetUpTearDownTests.cs" />
<Compile Include="Attributes\PairwiseTests.cs" />
<Compile Include="Attributes\ParameterizedTestFixtureTests.cs" />
<Compile Include="Attributes\PropertyAttributeTests.cs" />
<Compile Include="Attributes\RandomAttributeTests.cs" />
<Compile Include="Attributes\RangeAttributeTests.cs" />
<Compile Include="Attributes\RepeatAttributeTests.cs" />
<Compile Include="Attributes\RequiresThreadAttributeTests.cs" />
<Compile Include="Attributes\RetryAttributeTests.cs" />
<Compile Include="Attributes\SetCultureAttributeTests.cs" />
<Compile Include="Attributes\SetUpFixtureAttributeTests.cs" />
<Compile Include="Attributes\SingleThreadedFixtureTests.cs" />
<Compile Include="Attributes\TestCaseAttributeTests.cs" />
<Compile Include="Attributes\TestCaseSourceTests.cs" />
<Compile Include="Attributes\TestDummy.cs" />
<Compile Include="Attributes\TestExpectedResult.cs" />
<Compile Include="Attributes\TestOrderAttributeTests.cs" />
<Compile Include="Internal\AssemblyHelperTests.cs" />
<Compile Include="Internal\Filters\MockTestFilter.cs" />
<Compile Include="TestUtilities\AsyncTestDelegates.cs" />
<Compile Include="Attributes\TestFixtureAttributeTests.cs" />
<Compile Include="Attributes\TestFixtureSourceTests.cs" />
<Compile Include="Attributes\TestMethodBuilderTests.cs" />
<Compile Include="Attributes\TestOfTests.cs" />
<Compile Include="Attributes\TheoryTests.cs" />
<Compile Include="Attributes\ThreadingTests.cs" />
<Compile Include="Attributes\TimeoutTests.cs" />
<Compile Include="Attributes\ValuesAttributeEnumTests.cs" />
<Compile Include="Attributes\ValuesAttributeTests.cs" />
<Compile Include="Attributes\ValueSourceTests.cs" />
<Compile Include="Compatibility\AttributeHelperTests.cs" />
<Compile Include="Compatibility\ReflectionExtensionsTests.cs" />
<Compile Include="Constraints\AllItemsConstraintTests.cs" />
<Compile Include="Constraints\AndConstraintTests.cs" />
<Compile Include="Constraints\AssignableToConstraintTests.cs" />
<Compile Include="Constraints\AsyncDelayedConstraintTests.cs" />
<Compile Include="Constraints\AttributeExistsConstraintTests.cs" />
<Compile Include="Constraints\BasicConstraintTests.cs" />
<Compile Include="Constraints\BinarySerializableTest.cs" />
<Compile Include="Constraints\AssignableFromConstraintTests.cs" />
<Compile Include="Constraints\CollectionContainsConstraintTests.cs" />
<Compile Include="Constraints\CollectionEqualsTests.cs" />
<Compile Include="Constraints\CollectionEquivalentConstraintTests.cs" />
<Compile Include="Constraints\CollectionOrderedConstraintTests.cs" />
<Compile Include="Constraints\CollectionSupersetConstraintTests.cs" />
<Compile Include="Constraints\CollectionSubsetConstraintTests.cs" />
<Compile Include="Constraints\ComparisonConstraintTestBase.cs" />
<Compile Include="Constraints\DelayedConstraintTests.cs" />
<Compile Include="Constraints\DictionaryContainsKeyConstraintTests.cs" />
<Compile Include="Constraints\DictionaryContainsValueConstraintTests.cs" />
<Compile Include="Constraints\EndsWithConstraintTests.cs" />
<Compile Include="Constraints\ExactTypeConstraintTests.cs" />
<Compile Include="Constraints\FileOrDirectoryExistsConstraintTests.cs" />
<Compile Include="Constraints\GreaterThanConstraintTests.cs" />
<Compile Include="Constraints\GreaterThanOrEqualConstraintTests.cs" />
<Compile Include="Constraints\InstanceOfTypeConstraintTests.cs" />
<Compile Include="Constraints\LessThanConstraintTests.cs" />
<Compile Include="Constraints\LessThanOrEqualConstraintTests.cs" />
<Compile Include="Constraints\NUnitComparerTests.cs" />
<Compile Include="Constraints\ConstraintTestBase.cs" />
<Compile Include="Constraints\EmptyConstraintTest.cs" />
<Compile Include="Constraints\EqualConstraintTests.cs" />
<Compile Include="Constraints\EqualTest.cs" />
<Compile Include="Constraints\FloatingPointNumericsTest.cs" />
<Compile Include="Constraints\MsgUtilTests.cs" />
<Compile Include="Constraints\NotConstraintTests.cs" />
<Compile Include="Constraints\NumericsTest.cs" />
<Compile Include="Constraints\NUnitEqualityComparerTests.cs" />
<Compile Include="Constraints\OrConstraintTests.cs" />
<Compile Include="Constraints\PathConstraintTests.cs" />
<Compile Include="Constraints\PredicateConstraintTests.cs" />
<Compile Include="Constraints\PropertyTests.cs" />
<Compile Include="Constraints\RangeConstraintTests.cs" />
<Compile Include="Constraints\RangeTests.cs" />
<Compile Include="Constraints\ReusableConstraintTests.cs" />
<Compile Include="Constraints\SameAsTest.cs" />
<Compile Include="Constraints\StartsWithConstraintTests.cs" />
<Compile Include="Constraints\StringConstraintTest.cs" />
<Compile Include="Constraints\SubstringConstraintTests.cs" />
<Compile Include="Constraints\ThrowsConstraintTests.cs" />
<Compile Include="Constraints\ThrowsExceptionConstraintTests.cs" />
<Compile Include="Constraints\ToleranceTests.cs" />
<Compile Include="Constraints\ToStringTests.cs" />
<Compile Include="Constraints\UniqueItemsConstraintTests.cs" />
<Compile Include="Constraints\XmlSerializableTest.cs" />
<Compile Include="Internal\AsyncSetupTeardownTests.cs" />
<Compile Include="Internal\AsyncTestMethodTests.cs" />
<Compile Include="Internal\CallContextTests.cs" />
<Compile Include="Internal\CultureSettingAndDetectionTests.cs" />
<Compile Include="Internal\DeduceTypeArgsFromArgs.cs" />
<Compile Include="Internal\EventQueueTests.cs" />
<Compile Include="Internal\Filters\AndFilterTests.cs" />
<Compile Include="Internal\Filters\CategoryFilterTests.cs" />
<Compile Include="Internal\Filters\ClassNameFilterTests.cs" />
<Compile Include="Internal\Filters\EmptyFilterTests.cs" />
<Compile Include="Internal\Filters\FullNameFilterTests.cs" />
<Compile Include="Internal\Filters\IdFilterTests.cs" />
<Compile Include="Internal\Filters\MethodNameFilterTests.cs" />
<Compile Include="Internal\Filters\NotFilterTests.cs" />
<Compile Include="Internal\Filters\OrFilterTests.cs" />
<Compile Include="Internal\Filters\TestFilterTests.cs" />
<Compile Include="Internal\Filters\TestFilterXmlTests.cs" />
<Compile Include="Internal\Filters\TestNameFilterTests.cs" />
<Compile Include="Internal\GenericMethodHelperTests.cs" />
<Compile Include="Internal\GenericTestFixtureTests.cs" />
<Compile Include="Internal\GenericTestMethodTests.cs" />
<Compile Include="Internal\NUnitTestCaseBuilderTests.cs" />
<Compile Include="Internal\PlatformDetectionTests.cs" />
<Compile Include="Internal\PropertyBagTests.cs" />
<Compile Include="Internal\RandomizerTests.cs" />
<Compile Include="Internal\RealAsyncSetupTeardownTests.cs" />
<Compile Include="Internal\RuntimeFrameworkTests.cs" />
<Compile Include="Internal\SetUpFixtureTests.cs" />
<Compile Include="Internal\SetUpTearDownTests.cs" />
<Compile Include="Internal\StackFilterTests.cs" />
<Compile Include="Internal\TestExecutionContextTests.cs" />
<Compile Include="Internal\TestFixtureTests.cs" />
<Compile Include="Internal\TestMethodSignatureTests.cs" />
<Compile Include="Internal\TestNameGeneratorTests.cs" />
<Compile Include="Internal\TestNamingTests.cs" />
<Compile Include="Internal\TestResultOutputTests.cs" />
<Compile Include="Internal\TestResultTests.cs" />
<Compile Include="Internal\TestWorkerTests.cs" />
<Compile Include="Internal\TestXmlTests.cs" />
<Compile Include="Internal\TextMessageWriterTests.cs" />
<Compile Include="Internal\TypeHelperTests.cs" />
<Compile Include="Internal\TypeParameterUsedWithTestMethod.cs" />
<Compile Include="Internal\UnexpectedExceptionTests.cs" />
<Compile Include="Internal\UnhandledExceptionTests.cs" />
<Compile Include="Internal\WorkItemQueueTests.cs" />
<Compile Include="Internal\WorkShiftTests.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Syntax\AfterTests.cs" />
<Compile Include="Syntax\ArbitraryConstraintMatching.cs" />
<Compile Include="Syntax\CollectionTests.cs" />
<Compile Include="Syntax\ComparisonTests.cs" />
<Compile Include="Syntax\EqualityTests.cs" />
<Compile Include="Syntax\InvalidCodeTests.cs" />
<Compile Include="Syntax\OperatorOverrides.cs" />
<Compile Include="Syntax\OperatorTests.cs" />
<Compile Include="Syntax\PathConstraintTests.cs" />
<Compile Include="Syntax\PropertyTests.cs" />
<Compile Include="Syntax\SerializableConstraints.cs" />
<Compile Include="Syntax\SimpleConstraints.cs" />
<Compile Include="Syntax\StringConstraints.cs" />
<Compile Include="Syntax\SyntaxTest.cs" />
<Compile Include="Syntax\TestCompiler.cs" />
<Compile Include="Syntax\ThrowsTests.cs" />
<Compile Include="Syntax\TypeConstraints.cs" />
<Compile Include="TestContextTests.cs" />
<Compile Include="TestUtilities\Collections\SimpleObjectCollection.cs" />
<Compile Include="TestUtilities\Collections\SimpleObjectList.cs" />
<Compile Include="TestUtilities\Comparers\AlwaysEqualComparer.cs" />
<Compile Include="TestUtilities\Comparers\GenericComparer.cs" />
<Compile Include="TestUtilities\Comparers\GenericComparison.cs" />
<Compile Include="TestUtilities\Comparers\GenericEqualityComparer.cs" />
<Compile Include="TestUtilities\Comparers\ObjectComparer.cs" />
<Compile Include="TestUtilities\Comparers\ObjectEqualityComparer.cs" />
<Compile Include="TestUtilities\Comparers\TestComparer.cs" />
<Compile Include="TestUtilities\ResultSummary.cs" />
<Compile Include="TestUtilities\TestAssert.cs" />
<Compile Include="TestUtilities\TestDelegates.cs" />
<Compile Include="TestUtilities\TestDirectory.cs" />
<Compile Include="TestUtilities\TestFinder.cs" />
<Compile Include="Constraints\ExactCountConstraintTests.cs" />
<Compile Include="TestUtilities\UniqueValues.cs" />
<Compile Include="TextOutputTests.cs" />
<Compile Include="ThrowsTests.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="Microsoft.Threading.Tasks">
<HintPath>..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Threading.Tasks.Extensions">
<HintPath>..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Threading.Tasks.Extensions.Desktop">
<HintPath>..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.Desktop.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.Net" />
<Reference Include="System.Web" />
<Reference Include="System.Xml" />
<Reference Include="System.Core" />
<Reference Include="System.IO, Version=2.6.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<HintPath>..\..\..\packages\Microsoft.Bcl.1.1.10\lib\net40\System.IO.dll</HintPath>
</Reference>
<Reference Include="System.Runtime, Version=2.6.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<HintPath>..\..\..\packages\Microsoft.Bcl.1.1.10\lib\net40\System.Runtime.dll</HintPath>
</Reference>
<Reference Include="System.Threading.Tasks, Version=2.6.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<HintPath>..\..\..\packages\Microsoft.Bcl.1.1.10\lib\net40\System.Threading.Tasks.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="TestImage1.jpg" />
<EmbeddedResource Include="TestImage2.jpg" />
<EmbeddedResource Include="TestText1.txt" />
<EmbeddedResource Include="TestText2.txt" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="TestListFile.txt" />
<EmbeddedResource Include="TestListFile2.txt" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
<None Include="app.config" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-4.0.csproj">
<Project>{6A281C98-B74D-403B-8536-966871B992E3}</Project>
<Name>nunit.framework-4.0</Name>
</ProjectReference>
<ProjectReference Include="..\testdata\nunit.testdata-4.0.csproj">
<Project>{A35E6AD6-6D46-41E1-8DB1-A41086793893}</Project>
<Name>nunit.testdata-4.0</Name>
</ProjectReference>
<ProjectReference Include="..\mock-assembly\mock-assembly-4.0.csproj">
<Project>{DDCE1AE3-AA0D-4E2D-AD1B-8CA322AFA7DD}</Project>
<Name>mock-assembly-4.0</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
<Error Condition="!Exists('..\..\..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets'))" />
<Error Condition="!Exists('..\..\..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets'))" />
</Target>
<Import Project="..\..\..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets" Condition="Exists('..\..\..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets')" />
</Project>

Просмотреть файл

@ -1,333 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{5B8B0EAB-3E74-48BB-8231-26E73B2019DC}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnit.Framework.Tests</RootNamespace>
<AssemblyName>nunit.framework.tests</AssemblyName>
<FileAlignment>512</FileAlignment>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>3.5</OldToolsVersion>
<UpgradeBackupLocation />
<IntermediateOutputPath>obj\$(Configuration)\net-4.5\</IntermediateOutputPath>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\net-4.5\</OutputPath>
<DefineConstants>TRACE;NUNIT_FRAMEWORK;NET_4_5;PARALLEL;NUNITLITE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
<NoWarn>0414</NoWarn>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
<DefineConstants>TRACE;DEBUG;NUNIT_FRAMEWORK;NET_4_5;PARALLEL;NUNITLITE</DefineConstants>
<OutputPath>..\..\..\bin\Debug\net-4.5\</OutputPath>
<DebugType>full</DebugType>
<WarningLevel>4</WarningLevel>
<Optimize>false</Optimize>
<DebugSymbols>true</DebugSymbols>
<Prefer32Bit>false</Prefer32Bit>
<NoWarn>0414</NoWarn>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\Fakes.cs">
<Link>TestUtilities\Fakes.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="..\TestBuilder.cs">
<Link>TestUtilities\TestBuilder.cs</Link>
</Compile>
<Compile Include="..\TestFile.cs">
<Link>TestUtilities\TestFile.cs</Link>
</Compile>
<Compile Include="Api\FrameworkControllerTests.cs" />
<Compile Include="Api\ResultStateTests.cs" />
<Compile Include="Api\TestAssemblyRunnerTests.cs" />
<Compile Include="Assertions\ArrayEqualsFailureMessageFixture.cs" />
<Compile Include="Assertions\ArrayEqualsFixture.cs" />
<Compile Include="Assertions\ArrayNotEqualFixture.cs" />
<Compile Include="Assertions\AssertEqualsTests.cs" />
<Compile Include="Assertions\AssertFailTests.cs" />
<Compile Include="Assertions\AssertIgnoreTests.cs" />
<Compile Include="Assertions\AssertInconclusiveTests.cs" />
<Compile Include="Assertions\AssertionHelperTests.cs" />
<Compile Include="Assertions\AssertPassTests.cs" />
<Compile Include="Assertions\AssertThatTests.cs" />
<Compile Include="Assertions\AssertThrowsAsyncTests.cs" />
<Compile Include="Assertions\AssertThrowsTests.cs" />
<Compile Include="Assertions\AssertPolarityTests.cs" />
<Compile Include="Assertions\AssertZeroTests.cs" />
<Compile Include="Assertions\AssumeEqualsTests.cs" />
<Compile Include="Assertions\AssumeThatTests.cs" />
<Compile Include="Assertions\AsyncThrowsTests.cs" />
<Compile Include="Assertions\CollectionAssertTest.cs" />
<Compile Include="Assertions\ConditionAssertTests.cs" />
<Compile Include="Assertions\DirectoryAssertTests.cs" />
<Compile Include="Assertions\FileAssertTests.cs" />
<Compile Include="Assertions\GreaterEqualFixture.cs" />
<Compile Include="Assertions\GreaterFixture.cs" />
<Compile Include="Assertions\LessEqualFixture.cs" />
<Compile Include="Assertions\LessFixture.cs" />
<Compile Include="Assertions\ListContentsTests.cs" />
<Compile Include="Assertions\LowTrustFixture.cs" />
<Compile Include="Assertions\NotEqualFixture.cs" />
<Compile Include="Assertions\NotSameFixture.cs" />
<Compile Include="Assertions\NullableTypesTests.cs" />
<Compile Include="Assertions\SameFixture.cs" />
<Compile Include="Assertions\StringAssertTests.cs" />
<Compile Include="Assertions\TypeAssertTest.cs" />
<Compile Include="Attributes\ActionAttributeTests.cs" />
<Compile Include="Attributes\ApartmentAttributeTests.cs" />
<Compile Include="Attributes\ApplyToContextTests.cs" />
<Compile Include="Attributes\ApplyToTestTests.cs" />
<Compile Include="Attributes\AttributeInheritanceTests.cs" />
<Compile Include="Attributes\AuthorTests.cs" />
<Compile Include="Attributes\CategoryAttributeTests.cs" />
<Compile Include="Attributes\CombinatorialTests.cs" />
<Compile Include="Attributes\CommandWrapperTests.cs" />
<Compile Include="Attributes\DatapointTests.cs" />
<Compile Include="Attributes\DerivedPropertyAttributeTests.cs" />
<Compile Include="Attributes\DescriptionTests.cs" />
<Compile Include="Attributes\MaxTimeTests.cs" />
<Compile Include="Attributes\OneTimeSetUpTearDownTests.cs" />
<Compile Include="Attributes\PairwiseTests.cs" />
<Compile Include="Attributes\ParameterizedTestFixtureTests.cs" />
<Compile Include="Attributes\PropertyAttributeTests.cs" />
<Compile Include="Attributes\RandomAttributeTests.cs" />
<Compile Include="Attributes\RangeAttributeTests.cs" />
<Compile Include="Attributes\RepeatAttributeTests.cs" />
<Compile Include="Attributes\RequiresThreadAttributeTests.cs" />
<Compile Include="Attributes\RetryAttributeTests.cs" />
<Compile Include="Attributes\SetCultureAttributeTests.cs" />
<Compile Include="Attributes\SetUpFixtureAttributeTests.cs" />
<Compile Include="Attributes\TestCaseAttributeTests.cs" />
<Compile Include="Attributes\TestCaseSourceTests.cs" />
<Compile Include="Attributes\TestDummy.cs" />
<Compile Include="Attributes\TestExpectedResult.cs" />
<Compile Include="Attributes\TestFixtureAttributeTests.cs" />
<Compile Include="Attributes\TestFixtureSourceTests.cs" />
<Compile Include="Attributes\TestMethodBuilderTests.cs" />
<Compile Include="Attributes\TestOfTests.cs" />
<Compile Include="Attributes\TestOrderAttributeTests.cs" />
<Compile Include="Attributes\TheoryTests.cs" />
<Compile Include="Attributes\SingleThreadedFixtureTests.cs" />
<Compile Include="Attributes\ThreadingTests.cs" />
<Compile Include="Attributes\TimeoutTests.cs" />
<Compile Include="Attributes\ValuesAttributeEnumTests.cs" />
<Compile Include="Attributes\ValuesAttributeTests.cs" />
<Compile Include="Attributes\ValueSourceTests.cs" />
<Compile Include="Compatibility\AttributeHelperTests.cs" />
<Compile Include="Compatibility\ReflectionExtensionsTests.cs" />
<Compile Include="Constraints\AllItemsConstraintTests.cs" />
<Compile Include="Constraints\AndConstraintTests.cs" />
<Compile Include="Constraints\AssignableFromConstraintTests.cs" />
<Compile Include="Constraints\AssignableToConstraintTests.cs" />
<Compile Include="Constraints\AsyncDelayedConstraintTests.cs" />
<Compile Include="Constraints\AttributeExistsConstraintTests.cs" />
<Compile Include="Constraints\BasicConstraintTests.cs" />
<Compile Include="Constraints\BinarySerializableTest.cs" />
<Compile Include="Constraints\CollectionContainsConstraintTests.cs" />
<Compile Include="Constraints\CollectionEqualsTests.cs" />
<Compile Include="Constraints\CollectionEquivalentConstraintTests.cs" />
<Compile Include="Constraints\CollectionOrderedConstraintTests.cs" />
<Compile Include="Constraints\CollectionSubsetConstraintTests.cs" />
<Compile Include="Constraints\CollectionSupersetConstraintTests.cs" />
<Compile Include="Constraints\ComparisonConstraintTestBase.cs" />
<Compile Include="Constraints\ConstraintTestBase.cs" />
<Compile Include="Constraints\DelayedConstraintTests.cs" />
<Compile Include="Constraints\DictionaryContainsKeyConstraintTests.cs" />
<Compile Include="Constraints\DictionaryContainsValueConstraintTests.cs" />
<Compile Include="Constraints\EmptyConstraintTest.cs" />
<Compile Include="Constraints\EndsWithConstraintTests.cs" />
<Compile Include="Constraints\EqualConstraintTests.cs" />
<Compile Include="Constraints\EqualTest.cs" />
<Compile Include="Constraints\ExactCountConstraintTests.cs" />
<Compile Include="Constraints\ExactTypeConstraintTests.cs" />
<Compile Include="Constraints\FileOrDirectoryExistsConstraintTests.cs" />
<Compile Include="Constraints\FloatingPointNumericsTest.cs" />
<Compile Include="Constraints\GreaterThanConstraintTests.cs" />
<Compile Include="Constraints\GreaterThanOrEqualConstraintTests.cs" />
<Compile Include="Constraints\InstanceOfTypeConstraintTests.cs" />
<Compile Include="Constraints\LessThanConstraintTests.cs" />
<Compile Include="Constraints\LessThanOrEqualConstraintTests.cs" />
<Compile Include="Constraints\MsgUtilTests.cs" />
<Compile Include="Constraints\NotConstraintTests.cs" />
<Compile Include="Constraints\NumericsTest.cs" />
<Compile Include="Constraints\NUnitComparerTests.cs" />
<Compile Include="Constraints\NUnitEqualityComparerTests.cs" />
<Compile Include="Constraints\OrConstraintTests.cs" />
<Compile Include="Constraints\PathConstraintTests.cs" />
<Compile Include="Constraints\PredicateConstraintTests.cs" />
<Compile Include="Constraints\PropertyTests.cs" />
<Compile Include="Constraints\RangeConstraintTests.cs" />
<Compile Include="Constraints\RangeTests.cs" />
<Compile Include="Constraints\ReusableConstraintTests.cs" />
<Compile Include="Constraints\SameAsTest.cs" />
<Compile Include="Constraints\StartsWithConstraintTests.cs" />
<Compile Include="Constraints\StringConstraintTest.cs" />
<Compile Include="Constraints\SubstringConstraintTests.cs" />
<Compile Include="Constraints\ThrowsConstraintTests.cs" />
<Compile Include="Constraints\ThrowsExceptionConstraintTests.cs" />
<Compile Include="Constraints\ToleranceTests.cs" />
<Compile Include="Constraints\ToStringTests.cs" />
<Compile Include="Constraints\UniqueItemsConstraintTests.cs" />
<Compile Include="Constraints\XmlSerializableTest.cs" />
<Compile Include="Internal\AssemblyHelperTests.cs" />
<Compile Include="Internal\AsyncSetupTeardownTests.cs" />
<Compile Include="Internal\AsyncTestMethodTests.cs" />
<Compile Include="Internal\CallContextTests.cs" />
<Compile Include="Internal\CultureSettingAndDetectionTests.cs" />
<Compile Include="Internal\DeduceTypeArgsFromArgs.cs" />
<Compile Include="Internal\EventQueueTests.cs" />
<Compile Include="Internal\Filters\MockTestFilter.cs" />
<Compile Include="Internal\Filters\AndFilterTests.cs" />
<Compile Include="Internal\Filters\CategoryFilterTests.cs" />
<Compile Include="Internal\Filters\ClassNameFilterTests.cs" />
<Compile Include="Internal\Filters\EmptyFilterTests.cs" />
<Compile Include="Internal\Filters\FullNameFilterTests.cs" />
<Compile Include="Internal\Filters\IdFilterTests.cs" />
<Compile Include="Internal\Filters\MethodNameFilterTests.cs" />
<Compile Include="Internal\Filters\NotFilterTests.cs" />
<Compile Include="Internal\Filters\OrFilterTests.cs" />
<Compile Include="Internal\Filters\PropertyFilterTests.cs" />
<Compile Include="Internal\Filters\TestFilterTests.cs" />
<Compile Include="Internal\Filters\TestFilterXmlTests.cs" />
<Compile Include="Internal\Filters\TestNameFilterTests.cs" />
<Compile Include="Internal\GenericMethodHelperTests.cs" />
<Compile Include="Internal\GenericTestFixtureTests.cs" />
<Compile Include="Internal\GenericTestMethodTests.cs" />
<Compile Include="Internal\NUnitTestCaseBuilderTests.cs" />
<Compile Include="Internal\PlatformDetectionTests.cs" />
<Compile Include="Internal\PropertyBagTests.cs" />
<Compile Include="Internal\RandomizerTests.cs" />
<Compile Include="Internal\RealAsyncSetupTeardownTests.cs" />
<Compile Include="Internal\RuntimeFrameworkTests.cs" />
<Compile Include="Internal\SetUpFixtureTests.cs" />
<Compile Include="Internal\SetUpTearDownTests.cs" />
<Compile Include="Internal\StackFilterTests.cs" />
<Compile Include="Internal\TestExecutionContextTests.cs" />
<Compile Include="Internal\TestFixtureTests.cs" />
<Compile Include="Internal\TestMethodSignatureTests.cs" />
<Compile Include="Internal\TestNameGeneratorTests.cs" />
<Compile Include="Internal\TestNamingTests.cs" />
<Compile Include="Internal\TestResultOutputTests.cs" />
<Compile Include="Internal\TestResultTests.cs" />
<Compile Include="Internal\TestWorkerTests.cs" />
<Compile Include="Internal\TestXmlTests.cs" />
<Compile Include="Internal\TextMessageWriterTests.cs" />
<Compile Include="Internal\TypeHelperTests.cs" />
<Compile Include="Internal\TypeParameterUsedWithTestMethod.cs" />
<Compile Include="Internal\UnexpectedExceptionTests.cs" />
<Compile Include="Internal\UnhandledExceptionTests.cs" />
<Compile Include="Internal\WorkItemQueueTests.cs" />
<Compile Include="Internal\WorkShiftTests.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Syntax\AfterTests.cs" />
<Compile Include="Syntax\ArbitraryConstraintMatching.cs" />
<Compile Include="Syntax\CollectionTests.cs" />
<Compile Include="Syntax\ComparisonTests.cs" />
<Compile Include="Syntax\EqualityTests.cs" />
<Compile Include="Syntax\InvalidCodeTests.cs" />
<Compile Include="Syntax\OperatorOverrides.cs" />
<Compile Include="Syntax\OperatorTests.cs" />
<Compile Include="Syntax\PathConstraintTests.cs" />
<Compile Include="Syntax\PropertyTests.cs" />
<Compile Include="Syntax\SerializableConstraints.cs" />
<Compile Include="Syntax\SimpleConstraints.cs" />
<Compile Include="Syntax\StringConstraints.cs" />
<Compile Include="Syntax\SyntaxTest.cs" />
<Compile Include="Syntax\TestCompiler.cs" />
<Compile Include="Syntax\ThrowsTests.cs" />
<Compile Include="Syntax\TypeConstraints.cs" />
<Compile Include="TestContextTests.cs" />
<Compile Include="TestUtilities\AsyncTestDelegates.cs" />
<Compile Include="TestUtilities\Collections\SimpleObjectCollection.cs" />
<Compile Include="TestUtilities\Collections\SimpleObjectList.cs" />
<Compile Include="TestUtilities\Comparers\AlwaysEqualComparer.cs" />
<Compile Include="TestUtilities\Comparers\GenericComparer.cs" />
<Compile Include="TestUtilities\Comparers\GenericComparison.cs" />
<Compile Include="TestUtilities\Comparers\GenericEqualityComparer.cs" />
<Compile Include="TestUtilities\Comparers\ObjectComparer.cs" />
<Compile Include="TestUtilities\Comparers\ObjectEqualityComparer.cs" />
<Compile Include="TestUtilities\Comparers\TestComparer.cs" />
<Compile Include="TestUtilities\ResultSummary.cs" />
<Compile Include="TestUtilities\TestAssert.cs" />
<Compile Include="TestUtilities\TestDelegates.cs" />
<Compile Include="TestUtilities\TestDirectory.cs" />
<Compile Include="TestUtilities\TestFinder.cs" />
<Compile Include="TestUtilities\UniqueValues.cs" />
<Compile Include="TextOutputTests.cs" />
<Compile Include="ThrowsTests.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.Web" />
<Reference Include="System.Xml" />
<Reference Include="System.Core" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="TestImage1.jpg" />
<EmbeddedResource Include="TestImage2.jpg" />
<EmbeddedResource Include="TestText1.txt" />
<EmbeddedResource Include="TestText2.txt" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="TestListFile.txt" />
<EmbeddedResource Include="TestListFile2.txt" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-4.5.csproj">
<Project>{D209C368-1277-4EA6-A887-AA6EBA51AB99}</Project>
<Name>nunit.framework-4.5</Name>
</ProjectReference>
<ProjectReference Include="..\testdata\nunit.testdata-4.5.csproj">
<Project>{E7541163-D7BB-4E9A-A722-D7737B7A2995}</Project>
<Name>nunit.testdata-4.5</Name>
</ProjectReference>
<ProjectReference Include="..\mock-assembly\mock-assembly-4.5.csproj">
<Project>{C3264FF3-E2D7-48D7-93A7-CDC9A827AD9D}</Project>
<Name>mock-assembly-4.5</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
<Content Include="FrameworkTests.nunit">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>

Просмотреть файл

@ -1,350 +0,0 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{80A9EC94-2C42-44AC-9D2C-E1418D712C48}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnit.Framework.Tests</RootNamespace>
<AssemblyName>nunit.framework.tests</AssemblyName>
<ProjectTypeGuids>{4D628B5B-2FBC-4AA6-8C16-197242AEB884};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<PlatformFamilyName>WindowsCE</PlatformFamilyName>
<PlatformID>E2BECB1F-8C8C-41ba-B736-9BE7D946A398</PlatformID>
<OSVersion>5.0</OSVersion>
<DeployDirSuffix>nunitlite.tests_netcf_3._5</DeployDirSuffix>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<NativePlatformName>Windows CE</NativePlatformName>
<FormFactorID>
</FormFactorID>
<IntermediateOutputPath>obj\$(Configuration)\netcf-3.5\</IntermediateOutputPath>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\netcf-3.5\</OutputPath>
<DefineConstants>TRACE;DEBUG;NUNIT_FRAMEWORK;WindowsCE;NETCF;NETCF_3_5;NUNITLITE;PARALLEL</DefineConstants>
<NoStdLib>true</NoStdLib>
<NoConfig>true</NoConfig>
<ErrorReport>prompt</ErrorReport>
<FileAlignment>512</FileAlignment>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\netcf-3.5\</OutputPath>
<DefineConstants>TRACE;NUNIT_FRAMEWORK;WindowsCE;NETCF;NETCF_3_5;NUNITLITE;PARALLEL</DefineConstants>
<NoStdLib>true</NoStdLib>
<NoConfig>true</NoConfig>
<ErrorReport>prompt</ErrorReport>
<FileAlignment>512</FileAlignment>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
</PropertyGroup>
<ItemGroup>
<Reference Include="mscorlib" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\Fakes.cs">
<Link>TestUtilities\Fakes.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="..\TestBuilder.cs">
<Link>TestUtilities\TestBuilder.cs</Link>
</Compile>
<Compile Include="..\TestFile.cs">
<Link>TestUtilities\TestFile.cs</Link>
</Compile>
<Compile Include="Api\FrameworkControllerTests.cs" />
<Compile Include="Api\ResultStateTests.cs" />
<Compile Include="Api\TestAssemblyRunnerTests.cs" />
<Compile Include="Assertions\ArrayEqualsFailureMessageFixture.cs" />
<Compile Include="Assertions\ArrayEqualsFixture.cs" />
<Compile Include="Assertions\ArrayNotEqualFixture.cs" />
<Compile Include="Assertions\AssertEqualsTests.cs" />
<Compile Include="Assertions\AssertFailTests.cs" />
<Compile Include="Assertions\AssertIgnoreTests.cs" />
<Compile Include="Assertions\AssertInconclusiveTests.cs" />
<Compile Include="Assertions\AssertionHelperTests.cs" />
<Compile Include="Assertions\AssertPassTests.cs" />
<Compile Include="Assertions\AssertPolarityTests.cs" />
<Compile Include="Assertions\AssertThatTests.cs" />
<Compile Include="Assertions\AssertThrowsTests.cs" />
<Compile Include="Assertions\AssertZeroTests.cs" />
<Compile Include="Assertions\AssumeEqualsTests.cs" />
<Compile Include="Assertions\AssumeThatTests.cs" />
<Compile Include="Assertions\AsyncThrowsTests.cs" />
<Compile Include="Assertions\CollectionAssertTest.cs" />
<Compile Include="Assertions\ConditionAssertTests.cs" />
<Compile Include="Assertions\DirectoryAssertTests.cs" />
<Compile Include="Assertions\FileAssertTests.cs" />
<Compile Include="Assertions\GreaterEqualFixture.cs" />
<Compile Include="Assertions\GreaterFixture.cs" />
<Compile Include="Assertions\LessEqualFixture.cs" />
<Compile Include="Assertions\LessFixture.cs" />
<Compile Include="Assertions\ListContentsTests.cs" />
<Compile Include="Assertions\NotEqualFixture.cs" />
<Compile Include="Assertions\NotSameFixture.cs" />
<Compile Include="Assertions\NullableTypesTests.cs" />
<Compile Include="Assertions\SameFixture.cs" />
<Compile Include="Assertions\StringAssertTests.cs" />
<Compile Include="Assertions\TypeAssertTest.cs" />
<Compile Include="Attributes\ActionAttributeTests.cs" />
<Compile Include="Attributes\ApartmentAttributeTests.cs" />
<Compile Include="Attributes\ApplyToContextTests.cs" />
<Compile Include="Attributes\ApplyToTestTests.cs" />
<Compile Include="Attributes\AttributeInheritanceTests.cs" />
<Compile Include="Attributes\AuthorTests.cs" />
<Compile Include="Attributes\CategoryAttributeTests.cs" />
<Compile Include="Attributes\CombinatorialTests.cs" />
<Compile Include="Attributes\CommandWrapperTests.cs" />
<Compile Include="Attributes\DatapointTests.cs" />
<Compile Include="Attributes\DerivedPropertyAttributeTests.cs" />
<Compile Include="Attributes\DescriptionTests.cs" />
<Compile Include="Attributes\MaxTimeTests.cs" />
<Compile Include="Attributes\OneTimeSetUpTearDownTests.cs" />
<Compile Include="Attributes\PairwiseTests.cs" />
<Compile Include="Attributes\ParameterizedTestFixtureTests.cs" />
<Compile Include="Attributes\PropertyAttributeTests.cs" />
<Compile Include="Attributes\RandomAttributeTests.cs" />
<Compile Include="Attributes\RangeAttributeTests.cs" />
<Compile Include="Attributes\RepeatAttributeTests.cs" />
<Compile Include="Attributes\RequiresThreadAttributeTests.cs" />
<Compile Include="Attributes\RetryAttributeTests.cs" />
<Compile Include="Attributes\SetCultureAttributeTests.cs" />
<Compile Include="Attributes\SetUpFixtureAttributeTests.cs" />
<Compile Include="Attributes\SingleThreadedFixtureTests.cs" />
<Compile Include="Attributes\TestCaseAttributeTests.cs" />
<Compile Include="Attributes\TestCaseSourceTests.cs" />
<Compile Include="Attributes\TestDummy.cs" />
<Compile Include="Attributes\TestExpectedResult.cs" />
<Compile Include="Attributes\TestFixtureAttributeTests.cs" />
<Compile Include="Attributes\TestFixtureSourceTests.cs" />
<Compile Include="Attributes\TestMethodBuilderTests.cs" />
<Compile Include="Attributes\TestOfTests.cs" />
<Compile Include="Attributes\TestOrderAttributeTests.cs" />
<Compile Include="Attributes\TheoryTests.cs" />
<Compile Include="Attributes\ThreadingTests.cs" />
<Compile Include="Attributes\TimeoutTests.cs" />
<Compile Include="Attributes\ValuesAttributeEnumTests.cs" />
<Compile Include="Attributes\ValuesAttributeTests.cs" />
<Compile Include="Attributes\ValueSourceTests.cs" />
<Compile Include="Compatibility\AttributeHelperTests.cs" />
<Compile Include="Compatibility\ReflectionExtensionsTests.cs" />
<Compile Include="Compatibility\StopwatchTests.cs" />
<Compile Include="Constraints\AllItemsConstraintTests.cs" />
<Compile Include="Constraints\AndConstraintTests.cs" />
<Compile Include="Constraints\AssignableFromConstraintTests.cs" />
<Compile Include="Constraints\AssignableToConstraintTests.cs" />
<Compile Include="Constraints\AsyncDelayedConstraintTests.cs" />
<Compile Include="Constraints\AttributeExistsConstraintTests.cs" />
<Compile Include="Constraints\BasicConstraintTests.cs" />
<Compile Include="Constraints\BinarySerializableTest.cs" />
<Compile Include="Constraints\CollectionContainsConstraintTests.cs" />
<Compile Include="Constraints\CollectionEqualsTests.cs" />
<Compile Include="Constraints\CollectionEquivalentConstraintTests.cs" />
<Compile Include="Constraints\CollectionOrderedConstraintTests.cs" />
<Compile Include="Constraints\CollectionSubsetConstraintTests.cs" />
<Compile Include="Constraints\CollectionSupersetConstraintTests.cs" />
<Compile Include="Constraints\ComparisonConstraintTestBase.cs" />
<Compile Include="Constraints\ConstraintTestBase.cs" />
<Compile Include="Constraints\DelayedConstraintTests.cs" />
<Compile Include="Constraints\DictionaryContainsKeyConstraintTests.cs" />
<Compile Include="Constraints\DictionaryContainsValueConstraintTests.cs" />
<Compile Include="Constraints\EmptyConstraintTest.cs" />
<Compile Include="Constraints\EndsWithConstraintTests.cs" />
<Compile Include="Constraints\EqualConstraintTests.cs" />
<Compile Include="Constraints\EqualTest.cs" />
<Compile Include="Constraints\ExactCountConstraintTests.cs" />
<Compile Include="Constraints\ExactTypeConstraintTests.cs" />
<Compile Include="Constraints\FileOrDirectoryExistsConstraintTests.cs" />
<Compile Include="Constraints\FloatingPointNumericsTest.cs" />
<Compile Include="Constraints\GreaterThanConstraintTests.cs" />
<Compile Include="Constraints\GreaterThanOrEqualConstraintTests.cs" />
<Compile Include="Constraints\InstanceOfTypeConstraintTests.cs" />
<Compile Include="Constraints\LessThanConstraintTests.cs" />
<Compile Include="Constraints\LessThanOrEqualConstraintTests.cs" />
<Compile Include="Constraints\MsgUtilTests.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="Constraints\NotConstraintTests.cs" />
<Compile Include="Constraints\NumericsTest.cs" />
<Compile Include="Constraints\NUnitComparerTests.cs" />
<Compile Include="Constraints\NUnitEqualityComparerTests.cs" />
<Compile Include="Constraints\OrConstraintTests.cs" />
<Compile Include="Constraints\PathConstraintTests.cs" />
<Compile Include="Constraints\PredicateConstraintTests.cs" />
<Compile Include="Constraints\PropertyTests.cs" />
<Compile Include="Constraints\RangeConstraintTests.cs" />
<Compile Include="Constraints\RangeTests.cs" />
<Compile Include="Constraints\ReusableConstraintTests.cs" />
<Compile Include="Constraints\SameAsTest.cs" />
<Compile Include="Constraints\StartsWithConstraintTests.cs" />
<Compile Include="Constraints\StringConstraintTest.cs" />
<Compile Include="Constraints\SubstringConstraintTests.cs" />
<Compile Include="Constraints\ThrowsConstraintTests.cs" />
<Compile Include="Constraints\ThrowsExceptionConstraintTests.cs" />
<Compile Include="Constraints\ToleranceTests.cs" />
<Compile Include="Constraints\ToStringTests.cs" />
<Compile Include="Constraints\UniqueItemsConstraintTests.cs" />
<Compile Include="Constraints\XmlSerializableTest.cs" />
<Compile Include="Internal\AsyncTestMethodTests.cs" />
<Compile Include="Internal\CallContextTests.cs" />
<Compile Include="Internal\CultureSettingAndDetectionTests.cs" />
<Compile Include="Internal\DeduceTypeArgsFromArgs.cs" />
<Compile Include="Internal\EventQueueTests.cs" />
<Compile Include="Internal\Filters\AndFilterTests.cs" />
<Compile Include="Internal\Filters\CategoryFilterTests.cs" />
<Compile Include="Internal\Filters\ClassNameFilterTests.cs" />
<Compile Include="Internal\Filters\EmptyFilterTests.cs" />
<Compile Include="Internal\Filters\FullNameFilterTests.cs" />
<Compile Include="Internal\Filters\IdFilterTests.cs" />
<Compile Include="Internal\Filters\MethodNameFilterTests.cs" />
<Compile Include="Internal\Filters\NotFilterTests.cs" />
<Compile Include="Internal\Filters\OrFilterTests.cs" />
<Compile Include="Internal\Filters\PropertyFilterTests.cs" />
<Compile Include="Internal\Filters\MockTestFilter.cs" />
<Compile Include="Internal\Filters\TestFilterTests.cs" />
<Compile Include="Internal\Filters\TestFilterXmlTests.cs" />
<Compile Include="Internal\Filters\TestNameFilterTests.cs" />
<Compile Include="Internal\AssemblyHelperTests.cs" />
<Compile Include="Internal\GenericMethodHelperTests.cs" />
<Compile Include="Internal\GenericTestFixtureTests.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="Internal\GenericTestMethodTests.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="Internal\NUnitTestCaseBuilderTests.cs" />
<Compile Include="Internal\PlatformDetectionTests.cs" />
<Compile Include="Internal\PropertyBagTests.cs" />
<Compile Include="Internal\RandomizerTests.cs" />
<Compile Include="Internal\RuntimeFrameworkTests.cs" />
<Compile Include="Internal\SetUpFixtureTests.cs" />
<Compile Include="Internal\SetUpTearDownTests.cs" />
<Compile Include="Internal\StackFilterTests.cs" />
<Compile Include="Internal\TestExecutionContextTests.cs" />
<Compile Include="Internal\TestFixtureTests.cs" />
<Compile Include="Internal\TestMethodSignatureTests.cs" />
<Compile Include="Internal\TestNameGeneratorTests.cs" />
<Compile Include="Internal\TestNamingTests.cs" />
<Compile Include="Internal\TestResultOutputTests.cs" />
<Compile Include="Internal\TestResultTests.cs" />
<Compile Include="Internal\TestWorkerTests.cs" />
<Compile Include="Internal\TestXmlTests.cs" />
<Compile Include="Internal\TextMessageWriterTests.cs" />
<Compile Include="Internal\TypeHelperTests.cs" />
<Compile Include="Internal\TypeParameterUsedWithTestMethod.cs" />
<Compile Include="Internal\UnexpectedExceptionTests.cs" />
<Compile Include="Internal\UnhandledExceptionTests.cs" />
<Compile Include="Internal\WorkItemQueueTests.cs" />
<Compile Include="Internal\WorkShiftTests.cs" />
<Compile Include="NUnitLite.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Syntax\AfterTests.cs" />
<Compile Include="Syntax\ArbitraryConstraintMatching.cs" />
<Compile Include="Syntax\CollectionTests.cs" />
<Compile Include="Syntax\ComparisonTests.cs" />
<Compile Include="Syntax\EqualityTests.cs" />
<Compile Include="Syntax\InvalidCodeTests.cs" />
<Compile Include="Syntax\OperatorOverrides.cs" />
<Compile Include="Syntax\OperatorTests.cs" />
<Compile Include="Syntax\PathConstraintTests.cs" />
<Compile Include="Syntax\PropertyTests.cs" />
<Compile Include="Syntax\SerializableConstraints.cs" />
<Compile Include="Syntax\SimpleConstraints.cs" />
<Compile Include="Syntax\StringConstraints.cs" />
<Compile Include="Syntax\SyntaxTest.cs" />
<Compile Include="Syntax\TestCompiler.cs" />
<Compile Include="Syntax\ThrowsTests.cs" />
<Compile Include="Syntax\TypeConstraints.cs" />
<Compile Include="TestContextTests.cs" />
<Compile Include="TestParametersTests.cs" />
<Compile Include="TestUtilities\Collections\SimpleObjectCollection.cs" />
<Compile Include="TestUtilities\Collections\SimpleObjectList.cs" />
<Compile Include="TestUtilities\Comparers\AlwaysEqualComparer.cs" />
<Compile Include="TestUtilities\Comparers\GenericComparer.cs" />
<Compile Include="TestUtilities\Comparers\GenericComparison.cs" />
<Compile Include="TestUtilities\Comparers\GenericEqualityComparer.cs" />
<Compile Include="TestUtilities\Comparers\ObjectComparer.cs" />
<Compile Include="TestUtilities\Comparers\ObjectEqualityComparer.cs" />
<Compile Include="TestUtilities\Comparers\TestComparer.cs" />
<Compile Include="TestUtilities\ResultSummary.cs" />
<Compile Include="TestUtilities\TestAssert.cs" />
<Compile Include="TestUtilities\TestDelegates.cs" />
<Compile Include="TestUtilities\TestDirectory.cs" />
<Compile Include="TestUtilities\TestFinder.cs" />
<Compile Include="TestUtilities\UniqueValues.cs" />
<Compile Include="TextOutputTests.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-netcf-3.5.csproj">
<Project>{5F6CB3DC-5CE5-4C6A-AB23-936DB3B35DCC}</Project>
<Name>nunit.framework-netcf-3.5</Name>
</ProjectReference>
<ProjectReference Include="..\mock-assembly\mock-assembly-netcf-3.5.csproj">
<Project>{D40A4728-2F9B-41D7-AAD9-7AD95D0032C3}</Project>
<Name>mock-assembly-netcf-3.5</Name>
</ProjectReference>
<ProjectReference Include="..\nunitlite\nunitlite-netcf-3.5.csproj">
<Project>{FCB4F998-02D6-4D7F-A188-E0FB1F12F151}</Project>
<Name>nunitlite-netcf-3.5</Name>
</ProjectReference>
<ProjectReference Include="..\slow-tests\slow-nunit-tests-netcf-3.5.csproj">
<Project>{48C7F514-CA22-4405-9804-AE1703B8BC3F}</Project>
<Name>slow-nunit-tests-netcf-3.5</Name>
</ProjectReference>
<ProjectReference Include="..\testdata\nunit.testdata-netcf-3.5.csproj">
<Project>{0B7C0B55-6A49-4F32-993E-C9ED6DA0B73C}</Project>
<Name>nunit.testdata-netcf-3.5</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="TestImage1.jpg" />
<EmbeddedResource Include="TestImage2.jpg" />
<EmbeddedResource Include="TestText1.txt" />
<EmbeddedResource Include="TestText2.txt" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="TestListFile.txt" />
<EmbeddedResource Include="TestListFile2.txt" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CompactFramework.CSharp.targets" />
<ProjectExtensions>
<VisualStudio>
<FlavorProperties GUID="{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}">
<HostingProcess disable="1" />
</FlavorProperties>
</VisualStudio>
</ProjectExtensions>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

Просмотреть файл

@ -1,322 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{3AFA44B9-9DF0-494E-B633-6E6B9F2BB808}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NUnit.Framework.Tests</RootNamespace>
<AssemblyName>nunit.framework.tests</AssemblyName>
<DefaultLanguage>en-US</DefaultLanguage>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<TargetFrameworkProfile>Profile259</TargetFrameworkProfile>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<IntermediateOutputPath>obj\$(Configuration)\portable\</IntermediateOutputPath>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\portable\</OutputPath>
<DefineConstants>TRACE;NUNIT_FRAMEWORK;PORTABLE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
<DefineConstants>TRACE;DEBUG;NUNIT_FRAMEWORK;PORTABLE</DefineConstants>
<OutputPath>..\..\..\bin\Debug\portable\</OutputPath>
<DebugType>full</DebugType>
<WarningLevel>4</WarningLevel>
<Optimize>false</Optimize>
<DebugSymbols>true</DebugSymbols>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>..\..\nunit.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\Fakes.cs">
<Link>TestUtilities\Fakes.cs</Link>
</Compile>
<Compile Include="..\FrameworkVersion.cs">
<Link>Properties\FrameworkVersion.cs</Link>
</Compile>
<Compile Include="..\TestBuilder.cs">
<Link>TestUtilities\TestBuilder.cs</Link>
</Compile>
<Compile Include="..\TestFile.cs">
<Link>TestUtilities\TestFile.cs</Link>
</Compile>
<Compile Include="Api\FrameworkControllerTests.cs" />
<Compile Include="Api\ResultStateTests.cs" />
<Compile Include="Api\TestAssemblyRunnerTests.cs" />
<Compile Include="Assertions\ArrayEqualsFailureMessageFixture.cs" />
<Compile Include="Assertions\ArrayEqualsFixture.cs" />
<Compile Include="Assertions\ArrayNotEqualFixture.cs" />
<Compile Include="Assertions\AssertFailTests.cs" />
<Compile Include="Assertions\AssertIgnoreTests.cs" />
<Compile Include="Assertions\AssertInconclusiveTests.cs" />
<Compile Include="Assertions\AssertionHelperTests.cs" />
<Compile Include="Assertions\AssertPassTests.cs" />
<Compile Include="Assertions\AssertPolarityTests.cs" />
<Compile Include="Assertions\AssertThatTests.cs" />
<Compile Include="Assertions\AssertThrowsAsyncTests.cs" />
<Compile Include="Assertions\AssertThrowsTests.cs" />
<Compile Include="Assertions\AssertZeroTests.cs" />
<Compile Include="Assertions\AssumeEqualsTests.cs" />
<Compile Include="Assertions\AssumeThatTests.cs" />
<Compile Include="Assertions\AsyncThrowsTests.cs" />
<Compile Include="Assertions\CollectionAssertTest.cs" />
<Compile Include="Assertions\ConditionAssertTests.cs" />
<Compile Include="Assertions\AssertEqualsTests.cs" />
<Compile Include="Assertions\DirectoryAssertTests.cs" />
<Compile Include="Assertions\FileAssertTests.cs" />
<Compile Include="Assertions\GreaterEqualFixture.cs" />
<Compile Include="Assertions\GreaterFixture.cs" />
<Compile Include="Assertions\LessEqualFixture.cs" />
<Compile Include="Assertions\LessFixture.cs" />
<Compile Include="Assertions\ListContentsTests.cs" />
<Compile Include="Assertions\NotEqualFixture.cs" />
<Compile Include="Assertions\NotSameFixture.cs" />
<Compile Include="Assertions\NullableTypesTests.cs" />
<Compile Include="Assertions\SameFixture.cs" />
<Compile Include="Assertions\StringAssertTests.cs" />
<Compile Include="Assertions\TypeAssertTest.cs" />
<Compile Include="Attributes\ActionAttributeTests.cs" />
<Compile Include="Attributes\ApartmentAttributeTests.cs" />
<Compile Include="Attributes\ApplyToContextTests.cs" />
<Compile Include="Attributes\ApplyToTestTests.cs" />
<Compile Include="Attributes\AttributeInheritanceTests.cs" />
<Compile Include="Attributes\AuthorTests.cs" />
<Compile Include="Attributes\CategoryAttributeTests.cs" />
<Compile Include="Attributes\CombinatorialTests.cs" />
<Compile Include="Attributes\CommandWrapperTests.cs" />
<Compile Include="Attributes\DatapointTests.cs" />
<Compile Include="Attributes\DerivedPropertyAttributeTests.cs" />
<Compile Include="Attributes\DescriptionTests.cs" />
<Compile Include="Attributes\MaxTimeTests.cs" />
<Compile Include="Attributes\OneTimeSetUpTearDownTests.cs" />
<Compile Include="Attributes\PairwiseTests.cs" />
<Compile Include="Attributes\ParameterizedTestFixtureTests.cs" />
<Compile Include="Attributes\PropertyAttributeTests.cs" />
<Compile Include="Attributes\RandomAttributeTests.cs" />
<Compile Include="Attributes\RangeAttributeTests.cs" />
<Compile Include="Attributes\RepeatAttributeTests.cs" />
<Compile Include="Attributes\RequiresThreadAttributeTests.cs" />
<Compile Include="Attributes\RetryAttributeTests.cs" />
<Compile Include="Attributes\SetCultureAttributeTests.cs" />
<Compile Include="Attributes\SetUpFixtureAttributeTests.cs" />
<Compile Include="Attributes\SingleThreadedFixtureTests.cs" />
<Compile Include="Attributes\TestCaseAttributeTests.cs" />
<Compile Include="Attributes\TestCaseSourceTests.cs" />
<Compile Include="Attributes\TestDummy.cs" />
<Compile Include="Attributes\TestFixtureAttributeTests.cs" />
<Compile Include="Attributes\TestFixtureSourceTests.cs" />
<Compile Include="Attributes\TestMethodBuilderTests.cs" />
<Compile Include="Attributes\TestOfTests.cs" />
<Compile Include="Attributes\TestOrderAttributeTests.cs" />
<Compile Include="Attributes\TheoryTests.cs" />
<Compile Include="Attributes\ThreadingTests.cs" />
<Compile Include="Attributes\TimeoutTests.cs" />
<Compile Include="Attributes\ValuesAttributeEnumTests.cs" />
<Compile Include="Attributes\ValuesAttributeTests.cs" />
<Compile Include="Attributes\ValueSourceTests.cs" />
<Compile Include="Compatibility\AttributeHelperTests.cs" />
<Compile Include="Compatibility\ReflectionExtensionsTests.cs" />
<Compile Include="Constraints\AllItemsConstraintTests.cs" />
<Compile Include="Constraints\AndConstraintTests.cs" />
<Compile Include="Constraints\AssignableToConstraintTests.cs" />
<Compile Include="Constraints\AsyncDelayedConstraintTests.cs" />
<Compile Include="Constraints\AttributeExistsConstraintTests.cs" />
<Compile Include="Constraints\BasicConstraintTests.cs" />
<Compile Include="Constraints\BinarySerializableTest.cs" />
<Compile Include="Constraints\AssignableFromConstraintTests.cs" />
<Compile Include="Constraints\CollectionContainsConstraintTests.cs" />
<Compile Include="Constraints\CollectionEquivalentConstraintTests.cs" />
<Compile Include="Constraints\CollectionOrderedConstraintTests.cs" />
<Compile Include="Constraints\CollectionSubsetConstraintTests.cs" />
<Compile Include="Constraints\CollectionEqualsTests.cs" />
<Compile Include="Constraints\CollectionSupersetConstraintTests.cs" />
<Compile Include="Constraints\ComparisonConstraintTestBase.cs" />
<Compile Include="Constraints\DelayedConstraintTests.cs" />
<Compile Include="Constraints\DictionaryContainsKeyConstraintTests.cs" />
<Compile Include="Constraints\DictionaryContainsValueConstraintTests.cs" />
<Compile Include="Constraints\EndsWithConstraintTests.cs" />
<Compile Include="Constraints\ExactTypeConstraintTests.cs" />
<Compile Include="Constraints\FileOrDirectoryExistsConstraintTests.cs" />
<Compile Include="Constraints\GreaterThanConstraintTests.cs" />
<Compile Include="Constraints\GreaterThanOrEqualConstraintTests.cs" />
<Compile Include="Constraints\InstanceOfTypeConstraintTests.cs" />
<Compile Include="Constraints\LessThanConstraintTests.cs" />
<Compile Include="Constraints\LessThanOrEqualConstraintTests.cs" />
<Compile Include="Constraints\NUnitComparerTests.cs" />
<Compile Include="Constraints\ConstraintTestBase.cs" />
<Compile Include="Constraints\EmptyConstraintTest.cs" />
<Compile Include="Constraints\EqualConstraintTests.cs" />
<Compile Include="Constraints\EqualTest.cs" />
<Compile Include="Constraints\FloatingPointNumericsTest.cs" />
<Compile Include="Constraints\MsgUtilTests.cs" />
<Compile Include="Constraints\NotConstraintTests.cs" />
<Compile Include="Constraints\NumericsTest.cs" />
<Compile Include="Constraints\NUnitEqualityComparerTests.cs" />
<Compile Include="Constraints\OrConstraintTests.cs" />
<Compile Include="Constraints\PathConstraintTests.cs" />
<Compile Include="Constraints\PredicateConstraintTests.cs" />
<Compile Include="Constraints\PropertyTests.cs" />
<Compile Include="Constraints\RangeConstraintTests.cs" />
<Compile Include="Constraints\RangeTests.cs" />
<Compile Include="Constraints\ReusableConstraintTests.cs" />
<Compile Include="Constraints\SameAsTest.cs" />
<Compile Include="Constraints\StartsWithConstraintTests.cs" />
<Compile Include="Constraints\StringConstraintTest.cs" />
<Compile Include="Constraints\SubstringConstraintTests.cs" />
<Compile Include="Constraints\ThrowsConstraintTests.cs" />
<Compile Include="Constraints\ThrowsExceptionConstraintTests.cs" />
<Compile Include="Constraints\ToleranceTests.cs" />
<Compile Include="Constraints\ToStringTests.cs" />
<Compile Include="Constraints\UniqueItemsConstraintTests.cs" />
<Compile Include="Constraints\XmlSerializableTest.cs" />
<Compile Include="Internal\AssemblyHelperTests.cs" />
<Compile Include="Internal\Filters\AndFilterTests.cs" />
<Compile Include="Internal\Filters\CategoryFilterTests.cs" />
<Compile Include="Internal\Filters\ClassNameFilterTests.cs" />
<Compile Include="Internal\Filters\EmptyFilterTests.cs" />
<Compile Include="Internal\Filters\FullNameFilterTests.cs" />
<Compile Include="Internal\Filters\IdFilterTests.cs" />
<Compile Include="Internal\Filters\MethodNameFilterTests.cs" />
<Compile Include="Internal\Filters\NotFilterTests.cs" />
<Compile Include="Internal\Filters\OrFilterTests.cs" />
<Compile Include="Internal\Filters\MockTestFilter.cs" />
<Compile Include="Internal\Filters\TestFilterTests.cs" />
<Compile Include="Internal\Filters\TestFilterXmlTests.cs" />
<Compile Include="Internal\Filters\TestNameFilterTests.cs" />
<Compile Include="Internal\RealAsyncSetupTeardownTests.cs" />
<Compile Include="Internal\AsyncSetupTeardownTests.cs" />
<Compile Include="Internal\AsyncTestMethodTests.cs" />
<Compile Include="Internal\CallContextTests.cs" />
<Compile Include="Internal\CultureSettingAndDetectionTests.cs" />
<Compile Include="Internal\DeduceTypeArgsFromArgs.cs" />
<Compile Include="Internal\EventQueueTests.cs" />
<Compile Include="Internal\GenericMethodHelperTests.cs" />
<Compile Include="Internal\GenericTestFixtureTests.cs" />
<Compile Include="Internal\GenericTestMethodTests.cs" />
<Compile Include="Internal\NUnitTestCaseBuilderTests.cs" />
<Compile Include="Internal\PlatformDetectionTests.cs" />
<Compile Include="Internal\PropertyBagTests.cs" />
<Compile Include="Internal\RandomizerTests.cs" />
<Compile Include="Internal\RuntimeFrameworkTests.cs" />
<Compile Include="Internal\SetUpFixtureTests.cs" />
<Compile Include="Internal\SetUpTearDownTests.cs" />
<Compile Include="Internal\StackFilterTests.cs" />
<Compile Include="Internal\TestExecutionContextTests.cs" />
<Compile Include="Internal\TestFixtureTests.cs" />
<Compile Include="Internal\TestMethodSignatureTests.cs" />
<Compile Include="Internal\TestNameGeneratorTests.cs" />
<Compile Include="Internal\TestNamingTests.cs" />
<Compile Include="Internal\TestResultOutputTests.cs" />
<Compile Include="Internal\TestResultTests.cs" />
<Compile Include="Internal\TestWorkerTests.cs" />
<Compile Include="Internal\TestXmlTests.cs" />
<Compile Include="Internal\TextMessageWriterTests.cs" />
<Compile Include="Internal\TypeHelperTests.cs" />
<Compile Include="Internal\TypeParameterUsedWithTestMethod.cs" />
<Compile Include="Internal\UnexpectedExceptionTests.cs" />
<Compile Include="Internal\UnhandledExceptionTests.cs" />
<Compile Include="Internal\WorkItemQueueTests.cs" />
<Compile Include="Internal\WorkShiftTests.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Syntax\AfterTests.cs" />
<Compile Include="Syntax\ArbitraryConstraintMatching.cs" />
<Compile Include="Syntax\CollectionTests.cs" />
<Compile Include="Syntax\ComparisonTests.cs" />
<Compile Include="Syntax\EqualityTests.cs" />
<Compile Include="Syntax\InvalidCodeTests.cs" />
<Compile Include="Syntax\OperatorOverrides.cs" />
<Compile Include="Syntax\OperatorTests.cs" />
<Compile Include="Syntax\PathConstraintTests.cs" />
<Compile Include="Syntax\PropertyTests.cs" />
<Compile Include="Syntax\SerializableConstraints.cs" />
<Compile Include="Syntax\SimpleConstraints.cs" />
<Compile Include="Syntax\StringConstraints.cs" />
<Compile Include="Syntax\SyntaxTest.cs" />
<Compile Include="Syntax\TestCompiler.cs" />
<Compile Include="Syntax\ThrowsTests.cs" />
<Compile Include="Syntax\TypeConstraints.cs" />
<Compile Include="TestContextTests.cs" />
<Compile Include="Attributes\TestExpectedResult.cs" />
<Compile Include="TestUtilities\AsyncTestDelegates.cs" />
<Compile Include="TestUtilities\Collections\SimpleObjectCollection.cs" />
<Compile Include="TestUtilities\Collections\SimpleObjectList.cs" />
<Compile Include="TestUtilities\Comparers\AlwaysEqualComparer.cs" />
<Compile Include="TestUtilities\Comparers\GenericComparer.cs" />
<Compile Include="TestUtilities\Comparers\GenericComparison.cs" />
<Compile Include="TestUtilities\Comparers\GenericEqualityComparer.cs" />
<Compile Include="TestUtilities\Comparers\ObjectComparer.cs" />
<Compile Include="TestUtilities\Comparers\ObjectEqualityComparer.cs" />
<Compile Include="TestUtilities\Comparers\TestComparer.cs" />
<Compile Include="TestUtilities\ResultSummary.cs" />
<Compile Include="TestUtilities\TestAssert.cs" />
<Compile Include="TestUtilities\TestDelegates.cs" />
<Compile Include="TestUtilities\TestDirectory.cs" />
<Compile Include="TestUtilities\TestFinder.cs" />
<Compile Include="Constraints\ExactCountConstraintTests.cs" />
<Compile Include="TestUtilities\UniqueValues.cs" />
<Compile Include="TextOutputTests.cs" />
<Compile Include="ThrowsTests.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="TestImage1.jpg" />
<EmbeddedResource Include="TestImage2.jpg" />
<EmbeddedResource Include="TestText1.txt" />
<EmbeddedResource Include="TestText2.txt" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="TestListFile.txt" />
<EmbeddedResource Include="TestListFile2.txt" />
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\nunit.snk">
<Link>nunit.snk</Link>
</None>
<None Include="app.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\framework\nunit.framework-portable.csproj">
<Project>{D6FBBB3A-F6B8-45BB-B657-A7226AB96624}</Project>
<Name>nunit.framework-portable</Name>
</ProjectReference>
<ProjectReference Include="..\slow-tests\slow-nunit-tests-portable.csproj">
<Project>{74CB429E-69D7-4525-BBDF-BBC47DBC7070}</Project>
<Name>slow-nunit-tests-portable</Name>
</ProjectReference>
<ProjectReference Include="..\testdata\nunit.testdata-portable.csproj">
<Project>{9ED200E4-2026-4955-87E0-D8CEA7BD9E7F}</Project>
<Name>nunit.testdata-portable</Name>
</ProjectReference>
<ProjectReference Include="..\mock-assembly\mock-assembly-portable.csproj">
<Project>{8C53C716-3E54-4DFE-8CD9-F4099042FCFA}</Project>
<Name>mock-assembly-portable</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>