Skip to content

Commit d0e9fc9

Browse files
committed
initial creation
1 parent 5917cab commit d0e9fc9

File tree

394 files changed

+26314
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

394 files changed

+26314
-0
lines changed

BuildProcessTemplates/DefaultTemplate.11.1.xaml

+543
Large diffs are not rendered by default.

BuildProcessTemplates/DefaultTemplate.xaml

+602
Large diffs are not rendered by default.

BuildProcessTemplates/LabDefaultTemplate.11.xaml

+208
Large diffs are not rendered by default.
+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
<Activity mc:Ignorable="sad" x:Class="TfsBuild.Process" xmlns="http://schemas.microsoft.com/netfx/2009/xaml/activities" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mtbc="clr-namespace:Microsoft.TeamFoundation.Build.Client;assembly=Microsoft.TeamFoundation.Build.Client" xmlns:mtbw="clr-namespace:Microsoft.TeamFoundation.Build.Workflow;assembly=Microsoft.TeamFoundation.Build.Workflow" xmlns:mtbwa="clr-namespace:Microsoft.TeamFoundation.Build.Workflow.Activities;assembly=Microsoft.TeamFoundation.Build.Workflow" xmlns:mtbwt="clr-namespace:Microsoft.TeamFoundation.Build.Workflow.Tracking;assembly=Microsoft.TeamFoundation.Build.Workflow" xmlns:mtvc="clr-namespace:Microsoft.TeamFoundation.VersionControl.Client;assembly=Microsoft.TeamFoundation.VersionControl.Client" xmlns:mva="clr-namespace:Microsoft.VisualBasic.Activities;assembly=System.Activities" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:sad="http://schemas.microsoft.com/netfx/2009/xaml/activities/presentation" xmlns:sad1="clr-namespace:System.Activities.Debugger;assembly=System.Activities" xmlns:scg="clr-namespace:System.Collections.Generic;assembly=mscorlib" xmlns:this="clr-namespace:TfsBuild;" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
2+
<x:Members>
3+
<x:Property Name="ConfigurationFolderPath" Type="InArgument(x:String)" />
4+
<x:Property Name="AgentSettings" Type="InArgument(mtbwa:AgentSettings)" />
5+
<x:Property Name="MSBuildArguments" Type="InArgument(x:String)" />
6+
<x:Property Name="MSBuildPlatform" Type="InArgument(mtbwa:ToolPlatform)" />
7+
<x:Property Name="DoNotDownloadBuildType" Type="InArgument(x:Boolean)" />
8+
<x:Property Name="LogFilePerProject" Type="InArgument(x:Boolean)" />
9+
<x:Property Name="SourcesSubdirectory" Type="InArgument(x:String)" />
10+
<x:Property Name="BinariesSubdirectory" Type="InArgument(x:String)" />
11+
<x:Property Name="TestResultsSubdirectory" Type="InArgument(x:String)" />
12+
<x:Property Name="RecursionType" Type="InArgument(mtvc:RecursionType)" />
13+
<x:Property Name="Verbosity" Type="InArgument(mtbw:BuildVerbosity)" />
14+
<x:Property Name="Metadata" Type="mtbw:ProcessParameterMetadataCollection" />
15+
<x:Property Name="SupportedReasons" Type="mtbc:BuildReason" />
16+
</x:Members>
17+
<this:Process.ConfigurationFolderPath>
18+
<InArgument x:TypeArguments="x:String" />
19+
</this:Process.ConfigurationFolderPath>
20+
<this:Process.AgentSettings>[New Microsoft.TeamFoundation.Build.Workflow.Activities.AgentSettings() With {.MaxWaitTime = New System.TimeSpan(4, 0, 0), .MaxExecutionTime = New System.TimeSpan(0, 0, 0), .TagComparison = Microsoft.TeamFoundation.Build.Workflow.Activities.TagComparison.MatchExactly }]</this:Process.AgentSettings>
21+
<this:Process.MSBuildArguments>
22+
<InArgument x:TypeArguments="x:String" />
23+
</this:Process.MSBuildArguments>
24+
<this:Process.MSBuildPlatform>[Microsoft.TeamFoundation.Build.Workflow.Activities.ToolPlatform.Auto]</this:Process.MSBuildPlatform>
25+
<this:Process.DoNotDownloadBuildType>[False]</this:Process.DoNotDownloadBuildType>
26+
<this:Process.LogFilePerProject>[False]</this:Process.LogFilePerProject>
27+
<this:Process.SourcesSubdirectory>
28+
<InArgument x:TypeArguments="x:String" />
29+
</this:Process.SourcesSubdirectory>
30+
<this:Process.BinariesSubdirectory>
31+
<InArgument x:TypeArguments="x:String" />
32+
</this:Process.BinariesSubdirectory>
33+
<this:Process.TestResultsSubdirectory>
34+
<InArgument x:TypeArguments="x:String" />
35+
</this:Process.TestResultsSubdirectory>
36+
<this:Process.RecursionType>[Microsoft.TeamFoundation.VersionControl.Client.RecursionType.OneLevel]</this:Process.RecursionType>
37+
<this:Process.Verbosity>[Microsoft.TeamFoundation.Build.Workflow.BuildVerbosity.Normal]</this:Process.Verbosity>
38+
<this:Process.Metadata>
39+
<mtbw:ProcessParameterMetadataCollection />
40+
</this:Process.Metadata>
41+
<this:Process.SupportedReasons>All</this:Process.SupportedReasons>
42+
<mva:VisualBasic.Settings>Assembly references and imported namespaces serialized as XML namespaces</mva:VisualBasic.Settings>
43+
<Sequence mtbwt:BuildTrackingParticipant.Importance="None">
44+
<Sequence.Variables>
45+
<Variable x:TypeArguments="mtbc:IBuildDetail" Name="BuildDetail" />
46+
</Sequence.Variables>
47+
<mtbwa:GetBuildDetail DisplayName="Get the Build" Result="[BuildDetail]" />
48+
<mtbwa:InvokeForReason DisplayName="Update Build Number for Triggered Builds" Reason="Triggered">
49+
<mtbwa:UpdateBuildNumber BuildNumberFormat="[&quot;$(BuildDefinitionName)_$(Date:yyyyMMdd)$(Rev:.r)&quot;]" DisplayName="Update Build Number" />
50+
</mtbwa:InvokeForReason>
51+
<mtbwa:AgentScope DisplayName="Run On Agent" MaxExecutionTime="[AgentSettings.MaxExecutionTime]" MaxWaitTime="[AgentSettings.MaxWaitTime]" ReservationSpec="[AgentSettings.GetAgentReservationSpec()]">
52+
<mtbwa:AgentScope.Variables>
53+
<Variable x:TypeArguments="x:String" Name="buildDirectory" />
54+
</mtbwa:AgentScope.Variables>
55+
<mtbwa:GetBuildDirectory DisplayName="Get the Build Directory" Result="[buildDirectory]" />
56+
<If Condition="[Not String.IsNullOrEmpty(ConfigurationFolderPath)]" DisplayName="If Not String.IsNullOrEmpty(ConfigurationFolderPath)">
57+
<If.Then>
58+
<mtbwa:TfsBuild BinariesSubdirectory="[BinariesSubdirectory]" BuildDirectory="[buildDirectory]" CommandLineArguments="[MSBuildArguments]" ConfigurationFolderPath="[ConfigurationFolderPath]" DisplayName="Run TfsBuild for Configuration Folder" DoNotDownloadBuildType="[DoNotDownloadBuildType]" LogFilePerProject="[LogFilePerProject]" RecursionType="[RecursionType]" SourcesSubdirectory="[SourcesSubdirectory]" TestResultsSubdirectory="[TestResultsSubdirectory]" ToolPlatform="[MSBuildPlatform]" Verbosity="[Verbosity]" />
59+
</If.Then>
60+
</If>
61+
<If Condition="[BuildDetail.CompilationStatus = Microsoft.TeamFoundation.Build.Client.BuildPhaseStatus.Unknown]" DisplayName="If CompilationStatus = Unknown">
62+
<If.Then>
63+
<mtbwa:SetBuildProperties CompilationStatus="[Microsoft.TeamFoundation.Build.Client.BuildPhaseStatus.Succeeded]" DisplayName="Set CompilationStatus to Succeeded" PropertiesToSet="CompilationStatus" />
64+
</If.Then>
65+
</If>
66+
<If Condition="[BuildDetail.TestStatus = Microsoft.TeamFoundation.Build.Client.BuildPhaseStatus.Unknown]" DisplayName="If TestStatus = Unknown">
67+
<If.Then>
68+
<mtbwa:SetBuildProperties DisplayName="Set TestStatus to Succeeded" PropertiesToSet="TestStatus" TestStatus="[Microsoft.TeamFoundation.Build.Client.BuildPhaseStatus.Succeeded]" />
69+
</If.Then>
70+
</If>
71+
</mtbwa:AgentScope>
72+
<mtbwa:InvokeForReason Reason="CheckInShelveset">
73+
<mtbwa:CheckInGatedChanges DisplayName="Check In Gated Changes" />
74+
</mtbwa:InvokeForReason>
75+
</Sequence>
76+
</Activity>

Excel.Test.20.testsettings

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<TestSettings name="Excel.Test.20" id="4e039918-ace4-4331-ba1e-e349ab13b817" xmlns="http://microsoft.com/schemas/VisualStudio/TeamTest/2010">
3+
<Description>These are default test settings for a local test run.</Description>
4+
<Deployment>
5+
<DeploymentItem filename="Excel.Tests\log4net.config" />
6+
<DeploymentItem filename="Excel.Tests.4.5\Resources\" />
7+
</Deployment>
8+
<Execution>
9+
<TestTypeSpecific>
10+
<UnitTestRunConfig testTypeId="13cdc9d9-ddb5-4fa4-a97d-d965ccfc6d4b">
11+
<AssemblyResolution>
12+
<TestDirectory useLoadContext="true" />
13+
</AssemblyResolution>
14+
</UnitTestRunConfig>
15+
</TestTypeSpecific>
16+
<AgentRule name="Execution Agents">
17+
</AgentRule>
18+
</Execution>
19+
</TestSettings>

Excel.Test.4.0.sln

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 11.00
3+
# Visual Studio 2010
4+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Excel.4.0", "Excel\Excel.4.0.csproj", "{EEE7DE52-61FB-474C-8810-BB494164D4B3}"
5+
EndProject
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Excel.Tests.4.0", "Excel.Tests\Excel.Tests.4.0.csproj", "{7ACFD25F-D601-454C-A963-B2C1E46ED3FC}"
7+
EndProject
8+
Global
9+
GlobalSection(TeamFoundationVersionControl) = preSolution
10+
SccNumberOfProjects = 3
11+
SccEnterpriseProvider = {4CA58AB2-18FA-4F8D-95D4-32DDF27D184C}
12+
SccTeamFoundationServer = https://tfs.codeplex.com/tfs/tfs08
13+
SccProjectUniqueName0 = Excel\\Excel.4.0.csproj
14+
SccProjectName0 = Excel
15+
SccLocalPath0 = Excel
16+
SccProjectUniqueName1 = Excel.Tests\\Excel.Tests.4.0.csproj
17+
SccProjectName1 = Excel.Tests
18+
SccLocalPath1 = Excel.Tests
19+
SccLocalPath2 = .
20+
EndGlobalSection
21+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
22+
Debug|Any CPU = Debug|Any CPU
23+
MSTEST_DEBUG|Any CPU = MSTEST_DEBUG|Any CPU
24+
MSTEST_RELEASE|Any CPU = MSTEST_RELEASE|Any CPU
25+
NUNIT_DEBUG|Any CPU = NUNIT_DEBUG|Any CPU
26+
NUNIT_RELEASE|Any CPU = NUNIT_RELEASE|Any CPU
27+
Release|Any CPU = Release|Any CPU
28+
EndGlobalSection
29+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
30+
{EEE7DE52-61FB-474C-8810-BB494164D4B3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
31+
{EEE7DE52-61FB-474C-8810-BB494164D4B3}.Debug|Any CPU.Build.0 = Debug|Any CPU
32+
{EEE7DE52-61FB-474C-8810-BB494164D4B3}.MSTEST_DEBUG|Any CPU.ActiveCfg = MSTEST_DEBUG|Any CPU
33+
{EEE7DE52-61FB-474C-8810-BB494164D4B3}.MSTEST_DEBUG|Any CPU.Build.0 = MSTEST_DEBUG|Any CPU
34+
{EEE7DE52-61FB-474C-8810-BB494164D4B3}.MSTEST_RELEASE|Any CPU.ActiveCfg = MSTEST_RELEASE|Any CPU
35+
{EEE7DE52-61FB-474C-8810-BB494164D4B3}.MSTEST_RELEASE|Any CPU.Build.0 = MSTEST_RELEASE|Any CPU
36+
{EEE7DE52-61FB-474C-8810-BB494164D4B3}.NUNIT_DEBUG|Any CPU.ActiveCfg = NUNIT_DEBUG|Any CPU
37+
{EEE7DE52-61FB-474C-8810-BB494164D4B3}.NUNIT_DEBUG|Any CPU.Build.0 = NUNIT_DEBUG|Any CPU
38+
{EEE7DE52-61FB-474C-8810-BB494164D4B3}.NUNIT_RELEASE|Any CPU.ActiveCfg = NUNIT_RELEASE|Any CPU
39+
{EEE7DE52-61FB-474C-8810-BB494164D4B3}.NUNIT_RELEASE|Any CPU.Build.0 = NUNIT_RELEASE|Any CPU
40+
{EEE7DE52-61FB-474C-8810-BB494164D4B3}.Release|Any CPU.ActiveCfg = Release|Any CPU
41+
{EEE7DE52-61FB-474C-8810-BB494164D4B3}.Release|Any CPU.Build.0 = Release|Any CPU
42+
{7ACFD25F-D601-454C-A963-B2C1E46ED3FC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
43+
{7ACFD25F-D601-454C-A963-B2C1E46ED3FC}.Debug|Any CPU.Build.0 = Debug|Any CPU
44+
{7ACFD25F-D601-454C-A963-B2C1E46ED3FC}.MSTEST_DEBUG|Any CPU.ActiveCfg = Release|Any CPU
45+
{7ACFD25F-D601-454C-A963-B2C1E46ED3FC}.MSTEST_DEBUG|Any CPU.Build.0 = Release|Any CPU
46+
{7ACFD25F-D601-454C-A963-B2C1E46ED3FC}.MSTEST_RELEASE|Any CPU.ActiveCfg = Release|Any CPU
47+
{7ACFD25F-D601-454C-A963-B2C1E46ED3FC}.MSTEST_RELEASE|Any CPU.Build.0 = Release|Any CPU
48+
{7ACFD25F-D601-454C-A963-B2C1E46ED3FC}.NUNIT_DEBUG|Any CPU.ActiveCfg = Release|Any CPU
49+
{7ACFD25F-D601-454C-A963-B2C1E46ED3FC}.NUNIT_DEBUG|Any CPU.Build.0 = Release|Any CPU
50+
{7ACFD25F-D601-454C-A963-B2C1E46ED3FC}.NUNIT_RELEASE|Any CPU.ActiveCfg = Release|Any CPU
51+
{7ACFD25F-D601-454C-A963-B2C1E46ED3FC}.NUNIT_RELEASE|Any CPU.Build.0 = Release|Any CPU
52+
{7ACFD25F-D601-454C-A963-B2C1E46ED3FC}.Release|Any CPU.ActiveCfg = Release|Any CPU
53+
{7ACFD25F-D601-454C-A963-B2C1E46ED3FC}.Release|Any CPU.Build.0 = Release|Any CPU
54+
EndGlobalSection
55+
GlobalSection(SolutionProperties) = preSolution
56+
HideSolutionNode = FALSE
57+
EndGlobalSection
58+
EndGlobal

Excel.Test.4.5.sln

+120
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 2012
4+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Excel", "Excel\Excel.csproj", "{4CB0690E-3E7A-497C-9116-D52024F63195}"
5+
EndProject
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Excel.4.5", "Excel\Excel.4.5.csproj", "{D1905BBD-5F3B-4112-90BD-2D97C8B539C9}"
7+
EndProject
8+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{537D3BEA-4A18-4381-A955-DF762D21E100}"
9+
EndProject
10+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Excel.Tests.4.5", "Excel.Tests.4.5\Excel.Tests.4.5.csproj", "{7E59CFF5-9A01-4DBC-A6E0-130C60F8EE18}"
11+
EndProject
12+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestApp", "TestApp\TestApp.csproj", "{B2975726-9F21-4054-B2C6-3E67DD2DD975}"
13+
EndProject
14+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Excel.Tests", "Excel.Tests\Excel.Tests.csproj", "{7ACFD25F-D601-454C-A963-B2C1E46ED3FC}"
15+
EndProject
16+
Global
17+
GlobalSection(TeamFoundationVersionControl) = preSolution
18+
SccNumberOfProjects = 5
19+
SccEnterpriseProvider = {4CA58AB2-18FA-4F8D-95D4-32DDF27D184C}
20+
SccTeamFoundationServer = https://tfs.codeplex.com/tfs/tfs08
21+
SccProjectUniqueName0 = Excel\\Excel.csproj
22+
SccProjectName0 = Excel
23+
SccAuxPath0 = https://tfs.codeplex.com/tfs/tfs08
24+
SccLocalPath0 = Excel
25+
SccProvider0 = {4CA58AB2-18FA-4F8D-95D4-32DDF27D184C}
26+
SccProjectUniqueName1 = Excel\\Excel.4.5.csproj
27+
SccProjectName1 = Excel
28+
SccAuxPath1 = https://tfs.codeplex.com/tfs/tfs08
29+
SccLocalPath1 = Excel
30+
SccProvider1 = {4CA58AB2-18FA-4F8D-95D4-32DDF27D184C}
31+
SccProjectUniqueName2 = Excel.Tests.4.5\\Excel.Tests.4.5.csproj
32+
SccProjectName2 = Excel.Tests.4.5
33+
SccAuxPath2 = https://tfs.codeplex.com/tfs/tfs08
34+
SccLocalPath2 = Excel.Tests.4.5
35+
SccProvider2 = {4CA58AB2-18FA-4F8D-95D4-32DDF27D184C}
36+
SccProjectUniqueName3 = TestApp\\TestApp.csproj
37+
SccProjectName3 = TestApp
38+
SccAuxPath3 = https://tfs.codeplex.com/tfs/tfs08
39+
SccLocalPath3 = TestApp
40+
SccProvider3 = {4CA58AB2-18FA-4F8D-95D4-32DDF27D184C}
41+
SccProjectUniqueName4 = Excel.Tests\\Excel.Tests.csproj
42+
SccProjectName4 = Excel.Tests
43+
SccAuxPath4 = https://tfs.codeplex.com/tfs/tfs08
44+
SccLocalPath4 = Excel.Tests
45+
SccProvider4 = {4CA58AB2-18FA-4F8D-95D4-32DDF27D184C}
46+
EndGlobalSection
47+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
48+
Debug|Any CPU = Debug|Any CPU
49+
MSTEST_DEBUG|Any CPU = MSTEST_DEBUG|Any CPU
50+
MSTEST_RELEASE|Any CPU = MSTEST_RELEASE|Any CPU
51+
NUNIT_DEBUG|Any CPU = NUNIT_DEBUG|Any CPU
52+
NUNIT_RELEASE|Any CPU = NUNIT_RELEASE|Any CPU
53+
Release|Any CPU = Release|Any CPU
54+
EndGlobalSection
55+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
56+
{4CB0690E-3E7A-497C-9116-D52024F63195}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
57+
{4CB0690E-3E7A-497C-9116-D52024F63195}.Debug|Any CPU.Build.0 = Debug|Any CPU
58+
{4CB0690E-3E7A-497C-9116-D52024F63195}.MSTEST_DEBUG|Any CPU.ActiveCfg = MSTEST_DEBUG|Any CPU
59+
{4CB0690E-3E7A-497C-9116-D52024F63195}.MSTEST_DEBUG|Any CPU.Build.0 = MSTEST_DEBUG|Any CPU
60+
{4CB0690E-3E7A-497C-9116-D52024F63195}.MSTEST_RELEASE|Any CPU.ActiveCfg = MSTEST_RELEASE|Any CPU
61+
{4CB0690E-3E7A-497C-9116-D52024F63195}.MSTEST_RELEASE|Any CPU.Build.0 = MSTEST_RELEASE|Any CPU
62+
{4CB0690E-3E7A-497C-9116-D52024F63195}.NUNIT_DEBUG|Any CPU.ActiveCfg = NUNIT_DEBUG|Any CPU
63+
{4CB0690E-3E7A-497C-9116-D52024F63195}.NUNIT_DEBUG|Any CPU.Build.0 = NUNIT_DEBUG|Any CPU
64+
{4CB0690E-3E7A-497C-9116-D52024F63195}.NUNIT_RELEASE|Any CPU.ActiveCfg = NUNIT_RELEASE|Any CPU
65+
{4CB0690E-3E7A-497C-9116-D52024F63195}.NUNIT_RELEASE|Any CPU.Build.0 = NUNIT_RELEASE|Any CPU
66+
{4CB0690E-3E7A-497C-9116-D52024F63195}.Release|Any CPU.ActiveCfg = Release|Any CPU
67+
{4CB0690E-3E7A-497C-9116-D52024F63195}.Release|Any CPU.Build.0 = Release|Any CPU
68+
{D1905BBD-5F3B-4112-90BD-2D97C8B539C9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
69+
{D1905BBD-5F3B-4112-90BD-2D97C8B539C9}.Debug|Any CPU.Build.0 = Debug|Any CPU
70+
{D1905BBD-5F3B-4112-90BD-2D97C8B539C9}.MSTEST_DEBUG|Any CPU.ActiveCfg = Release|Any CPU
71+
{D1905BBD-5F3B-4112-90BD-2D97C8B539C9}.MSTEST_DEBUG|Any CPU.Build.0 = Release|Any CPU
72+
{D1905BBD-5F3B-4112-90BD-2D97C8B539C9}.MSTEST_RELEASE|Any CPU.ActiveCfg = Release|Any CPU
73+
{D1905BBD-5F3B-4112-90BD-2D97C8B539C9}.MSTEST_RELEASE|Any CPU.Build.0 = Release|Any CPU
74+
{D1905BBD-5F3B-4112-90BD-2D97C8B539C9}.NUNIT_DEBUG|Any CPU.ActiveCfg = Release|Any CPU
75+
{D1905BBD-5F3B-4112-90BD-2D97C8B539C9}.NUNIT_DEBUG|Any CPU.Build.0 = Release|Any CPU
76+
{D1905BBD-5F3B-4112-90BD-2D97C8B539C9}.NUNIT_RELEASE|Any CPU.ActiveCfg = Release|Any CPU
77+
{D1905BBD-5F3B-4112-90BD-2D97C8B539C9}.NUNIT_RELEASE|Any CPU.Build.0 = Release|Any CPU
78+
{D1905BBD-5F3B-4112-90BD-2D97C8B539C9}.Release|Any CPU.ActiveCfg = Release|Any CPU
79+
{D1905BBD-5F3B-4112-90BD-2D97C8B539C9}.Release|Any CPU.Build.0 = Release|Any CPU
80+
{7E59CFF5-9A01-4DBC-A6E0-130C60F8EE18}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
81+
{7E59CFF5-9A01-4DBC-A6E0-130C60F8EE18}.Debug|Any CPU.Build.0 = Debug|Any CPU
82+
{7E59CFF5-9A01-4DBC-A6E0-130C60F8EE18}.MSTEST_DEBUG|Any CPU.ActiveCfg = Release|Any CPU
83+
{7E59CFF5-9A01-4DBC-A6E0-130C60F8EE18}.MSTEST_DEBUG|Any CPU.Build.0 = Release|Any CPU
84+
{7E59CFF5-9A01-4DBC-A6E0-130C60F8EE18}.MSTEST_RELEASE|Any CPU.ActiveCfg = Release|Any CPU
85+
{7E59CFF5-9A01-4DBC-A6E0-130C60F8EE18}.MSTEST_RELEASE|Any CPU.Build.0 = Release|Any CPU
86+
{7E59CFF5-9A01-4DBC-A6E0-130C60F8EE18}.NUNIT_DEBUG|Any CPU.ActiveCfg = Release|Any CPU
87+
{7E59CFF5-9A01-4DBC-A6E0-130C60F8EE18}.NUNIT_DEBUG|Any CPU.Build.0 = Release|Any CPU
88+
{7E59CFF5-9A01-4DBC-A6E0-130C60F8EE18}.NUNIT_RELEASE|Any CPU.ActiveCfg = Release|Any CPU
89+
{7E59CFF5-9A01-4DBC-A6E0-130C60F8EE18}.NUNIT_RELEASE|Any CPU.Build.0 = Release|Any CPU
90+
{7E59CFF5-9A01-4DBC-A6E0-130C60F8EE18}.Release|Any CPU.ActiveCfg = Release|Any CPU
91+
{7E59CFF5-9A01-4DBC-A6E0-130C60F8EE18}.Release|Any CPU.Build.0 = Release|Any CPU
92+
{B2975726-9F21-4054-B2C6-3E67DD2DD975}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
93+
{B2975726-9F21-4054-B2C6-3E67DD2DD975}.Debug|Any CPU.Build.0 = Debug|Any CPU
94+
{B2975726-9F21-4054-B2C6-3E67DD2DD975}.MSTEST_DEBUG|Any CPU.ActiveCfg = Release|Any CPU
95+
{B2975726-9F21-4054-B2C6-3E67DD2DD975}.MSTEST_DEBUG|Any CPU.Build.0 = Release|Any CPU
96+
{B2975726-9F21-4054-B2C6-3E67DD2DD975}.MSTEST_RELEASE|Any CPU.ActiveCfg = Release|Any CPU
97+
{B2975726-9F21-4054-B2C6-3E67DD2DD975}.MSTEST_RELEASE|Any CPU.Build.0 = Release|Any CPU
98+
{B2975726-9F21-4054-B2C6-3E67DD2DD975}.NUNIT_DEBUG|Any CPU.ActiveCfg = Release|Any CPU
99+
{B2975726-9F21-4054-B2C6-3E67DD2DD975}.NUNIT_DEBUG|Any CPU.Build.0 = Release|Any CPU
100+
{B2975726-9F21-4054-B2C6-3E67DD2DD975}.NUNIT_RELEASE|Any CPU.ActiveCfg = Release|Any CPU
101+
{B2975726-9F21-4054-B2C6-3E67DD2DD975}.NUNIT_RELEASE|Any CPU.Build.0 = Release|Any CPU
102+
{B2975726-9F21-4054-B2C6-3E67DD2DD975}.Release|Any CPU.ActiveCfg = Release|Any CPU
103+
{B2975726-9F21-4054-B2C6-3E67DD2DD975}.Release|Any CPU.Build.0 = Release|Any CPU
104+
{7ACFD25F-D601-454C-A963-B2C1E46ED3FC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
105+
{7ACFD25F-D601-454C-A963-B2C1E46ED3FC}.Debug|Any CPU.Build.0 = Debug|Any CPU
106+
{7ACFD25F-D601-454C-A963-B2C1E46ED3FC}.MSTEST_DEBUG|Any CPU.ActiveCfg = Release|Any CPU
107+
{7ACFD25F-D601-454C-A963-B2C1E46ED3FC}.MSTEST_DEBUG|Any CPU.Build.0 = Release|Any CPU
108+
{7ACFD25F-D601-454C-A963-B2C1E46ED3FC}.MSTEST_RELEASE|Any CPU.ActiveCfg = Release|Any CPU
109+
{7ACFD25F-D601-454C-A963-B2C1E46ED3FC}.MSTEST_RELEASE|Any CPU.Build.0 = Release|Any CPU
110+
{7ACFD25F-D601-454C-A963-B2C1E46ED3FC}.NUNIT_DEBUG|Any CPU.ActiveCfg = Release|Any CPU
111+
{7ACFD25F-D601-454C-A963-B2C1E46ED3FC}.NUNIT_DEBUG|Any CPU.Build.0 = Release|Any CPU
112+
{7ACFD25F-D601-454C-A963-B2C1E46ED3FC}.NUNIT_RELEASE|Any CPU.ActiveCfg = Release|Any CPU
113+
{7ACFD25F-D601-454C-A963-B2C1E46ED3FC}.NUNIT_RELEASE|Any CPU.Build.0 = Release|Any CPU
114+
{7ACFD25F-D601-454C-A963-B2C1E46ED3FC}.Release|Any CPU.ActiveCfg = Release|Any CPU
115+
{7ACFD25F-D601-454C-A963-B2C1E46ED3FC}.Release|Any CPU.Build.0 = Release|Any CPU
116+
EndGlobalSection
117+
GlobalSection(SolutionProperties) = preSolution
118+
HideSolutionNode = FALSE
119+
EndGlobalSection
120+
EndGlobal

0 commit comments

Comments
 (0)