Skip to content

Commit 3862995

Browse files
committed
Normalised line endings
1 parent a011781 commit 3862995

File tree

120 files changed

+3713
-3713
lines changed

Some content is hidden

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

120 files changed

+3713
-3713
lines changed

.nuget/packages.config

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<packages>
3-
<package id="NuGet.CommandLine" version="2.6.1" />
4-
<package id="NUnit.Runners" version="2.6.2" />
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<packages>
3+
<package id="NuGet.CommandLine" version="2.6.1" />
4+
<package id="NUnit.Runners" version="2.6.2" />
55
</packages>

Build.cmd

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
@ECHO OFF
2-
3-
SET msbuild="%windir%\Microsoft.NET\Framework\v4.0.30319\msbuild.exe"
4-
5-
%msbuild% ConventionTests.proj
6-
7-
IF NOT ERRORLEVEL 0 EXIT /B %ERRORLEVEL%
8-
1+
@ECHO OFF
2+
3+
SET msbuild="%windir%\Microsoft.NET\Framework\v4.0.30319\msbuild.exe"
4+
5+
%msbuild% ConventionTests.proj
6+
7+
IF NOT ERRORLEVEL 0 EXIT /B %ERRORLEVEL%
8+
99
pause

ConventionTests.ncrunchsolution

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
<SolutionConfiguration>
2-
<FileVersion>1</FileVersion>
3-
<AutoEnableOnStartup>True</AutoEnableOnStartup>
4-
<AllowParallelTestExecution>false</AllowParallelTestExecution>
5-
<AllowTestsToRunInParallelWithThemselves>true</AllowTestsToRunInParallelWithThemselves>
6-
<FrameworkUtilisationTypeForNUnit>UseDynamicAnalysis</FrameworkUtilisationTypeForNUnit>
7-
<FrameworkUtilisationTypeForGallio>UseStaticAnalysis</FrameworkUtilisationTypeForGallio>
8-
<FrameworkUtilisationTypeForMSpec>UseStaticAnalysis</FrameworkUtilisationTypeForMSpec>
9-
<FrameworkUtilisationTypeForMSTest>UseStaticAnalysis</FrameworkUtilisationTypeForMSTest>
10-
<MetricsExclusionList>
11-
</MetricsExclusionList>
1+
<SolutionConfiguration>
2+
<FileVersion>1</FileVersion>
3+
<AutoEnableOnStartup>True</AutoEnableOnStartup>
4+
<AllowParallelTestExecution>false</AllowParallelTestExecution>
5+
<AllowTestsToRunInParallelWithThemselves>true</AllowTestsToRunInParallelWithThemselves>
6+
<FrameworkUtilisationTypeForNUnit>UseDynamicAnalysis</FrameworkUtilisationTypeForNUnit>
7+
<FrameworkUtilisationTypeForGallio>UseStaticAnalysis</FrameworkUtilisationTypeForGallio>
8+
<FrameworkUtilisationTypeForMSpec>UseStaticAnalysis</FrameworkUtilisationTypeForMSpec>
9+
<FrameworkUtilisationTypeForMSTest>UseStaticAnalysis</FrameworkUtilisationTypeForMSTest>
10+
<MetricsExclusionList>
11+
</MetricsExclusionList>
1212
</SolutionConfiguration>

ConventionTests.proj

Lines changed: 58 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,58 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project DefaultTargets="Test" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<PropertyGroup>
4-
<Root>$(MSBuildProjectDirectory)\</Root>
5-
<BuildPlatform Condition="$(BuildPlatform) == ''">Any CPU</BuildPlatform>
6-
<Configuration Condition="$(Configuration) == ''">Debug</Configuration>
7-
<MSBuildCommunityTasksPath>$(Root)tools\MSBuildCommunityTasks</MSBuildCommunityTasksPath>
8-
<NUnitHome>$(MSBuildProjectDirectory)\packages\NUnit.Runners.2.6.2\tools\</NUnitHome>
9-
<NUnitConsole>$(NUnitHome)nunit-console.exe</NUnitConsole>
10-
</PropertyGroup>
11-
<ItemGroup>
12-
<NuGet Include="$(Root)packages\NuGet.CommandLine.*\tools\NuGet.exe" />
13-
</ItemGroup>
14-
15-
<Target Name="Cleanup">
16-
<Error Condition="$(Root) == ''" Text="Root variable must be defined" />
17-
<Error Condition="$(NUnitConsole) == ''" Text="Cannot find nUnit runner (have you upgraded NUnit.Runners?)" />
18-
<Error Condition="@(NuGet) == ''" Text="Cannot find NuGet command line tool" />
19-
20-
<!-- Diagnostics -->
21-
<Message Text="Diagnostics:"/>
22-
<Message Text="Project root: $(Root)" />
23-
<Message Text="Drop path: build\Artifacts" />
24-
25-
<!-- Clean up -->
26-
<ItemGroup>
27-
<FilesToDelete Include="$(Root)**\bin\**\*.*" />
28-
<FilesToDelete Include="$(Root)**\obj\**\*.*" />
29-
<FilesToDelete Include="$(Root)build\Artifacts\**\*.*" />
30-
</ItemGroup>
31-
<Delete Files="@(FilesToDelete)" ContinueOnError="true" />
32-
<Delete Files="$(Root)build\Artifacts" />
33-
</Target>
34-
35-
<Target Name="Build" DependsOnTargets="Cleanup">
36-
<MSBuild Projects="$(Root)ConventionTests.sln" Properties="Configuration=$(Configuration);Platform=$(BuildPlatform)" />
37-
</Target>
38-
39-
<Target Name="Test" DependsOnTargets="Build">
40-
<ItemGroup>
41-
<NUnitAddinFiles Include="$(teamcity_dotnet_nunitaddin)-2.6.2.*" />
42-
</ItemGroup>
43-
<!--Copy nUnit teamcity into addins directory if we find addins-->
44-
<MakeDir Directories="$(NUnitHome)addins" />
45-
<Copy SourceFiles="@(NUnitAddinFiles)" DestinationFolder="$(NUnitHome)addins" />
46-
47-
<Exec Command="$(NUnitConsole) $(Root)TestStack.ConventionTests.Tests\bin\$(Configuration)\TestStack.ConventionTests.Tests.dll /nologo /noshadow" />
48-
</Target>
49-
50-
<Target Name="Publish">
51-
<PropertyGroup>
52-
<Version Condition="'$(Version)' == ''">0.0.0.0</Version>
53-
</PropertyGroup>
54-
<MakeDir Directories="$(Root)build\Artifacts" />
55-
<Exec Command="@(NuGet) pack $(Root)TestStack.ConventionTests\TestStack.ConventionTests.nuspec -Version $(Version) -OutputDir $(Root)build\Artifacts -BasePath $(Root)TestStack.ConventionTests\bin\$(Configuration)" />
56-
<Exec Command="@(NuGet) pack $(Root)TestStack.ConventionTests.Autofac\TestStack.ConventionTests.Autofac.nuspec -Version $(Version) -OutputDir $(Root)build\Artifacts -BasePath $(Root)TestStack.ConventionTests.Autofac\bin\$(Configuration)" />
57-
</Target>
58-
</Project>
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Test" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<Root>$(MSBuildProjectDirectory)\</Root>
5+
<BuildPlatform Condition="$(BuildPlatform) == ''">Any CPU</BuildPlatform>
6+
<Configuration Condition="$(Configuration) == ''">Debug</Configuration>
7+
<MSBuildCommunityTasksPath>$(Root)tools\MSBuildCommunityTasks</MSBuildCommunityTasksPath>
8+
<NUnitHome>$(MSBuildProjectDirectory)\packages\NUnit.Runners.2.6.2\tools\</NUnitHome>
9+
<NUnitConsole>$(NUnitHome)nunit-console.exe</NUnitConsole>
10+
</PropertyGroup>
11+
<ItemGroup>
12+
<NuGet Include="$(Root)packages\NuGet.CommandLine.*\tools\NuGet.exe" />
13+
</ItemGroup>
14+
15+
<Target Name="Cleanup">
16+
<Error Condition="$(Root) == ''" Text="Root variable must be defined" />
17+
<Error Condition="$(NUnitConsole) == ''" Text="Cannot find nUnit runner (have you upgraded NUnit.Runners?)" />
18+
<Error Condition="@(NuGet) == ''" Text="Cannot find NuGet command line tool" />
19+
20+
<!-- Diagnostics -->
21+
<Message Text="Diagnostics:"/>
22+
<Message Text="Project root: $(Root)" />
23+
<Message Text="Drop path: build\Artifacts" />
24+
25+
<!-- Clean up -->
26+
<ItemGroup>
27+
<FilesToDelete Include="$(Root)**\bin\**\*.*" />
28+
<FilesToDelete Include="$(Root)**\obj\**\*.*" />
29+
<FilesToDelete Include="$(Root)build\Artifacts\**\*.*" />
30+
</ItemGroup>
31+
<Delete Files="@(FilesToDelete)" ContinueOnError="true" />
32+
<Delete Files="$(Root)build\Artifacts" />
33+
</Target>
34+
35+
<Target Name="Build" DependsOnTargets="Cleanup">
36+
<MSBuild Projects="$(Root)ConventionTests.sln" Properties="Configuration=$(Configuration);Platform=$(BuildPlatform)" />
37+
</Target>
38+
39+
<Target Name="Test" DependsOnTargets="Build">
40+
<ItemGroup>
41+
<NUnitAddinFiles Include="$(teamcity_dotnet_nunitaddin)-2.6.2.*" />
42+
</ItemGroup>
43+
<!--Copy nUnit teamcity into addins directory if we find addins-->
44+
<MakeDir Directories="$(NUnitHome)addins" />
45+
<Copy SourceFiles="@(NUnitAddinFiles)" DestinationFolder="$(NUnitHome)addins" />
46+
47+
<Exec Command="$(NUnitConsole) $(Root)TestStack.ConventionTests.Tests\bin\$(Configuration)\TestStack.ConventionTests.Tests.dll /nologo /noshadow" />
48+
</Target>
49+
50+
<Target Name="Publish">
51+
<PropertyGroup>
52+
<Version Condition="'$(Version)' == ''">0.0.0.0</Version>
53+
</PropertyGroup>
54+
<MakeDir Directories="$(Root)build\Artifacts" />
55+
<Exec Command="@(NuGet) pack $(Root)TestStack.ConventionTests\TestStack.ConventionTests.nuspec -Version $(Version) -OutputDir $(Root)build\Artifacts -BasePath $(Root)TestStack.ConventionTests\bin\$(Configuration)" />
56+
<Exec Command="@(NuGet) pack $(Root)TestStack.ConventionTests.Autofac\TestStack.ConventionTests.Autofac.nuspec -Version $(Version) -OutputDir $(Root)build\Artifacts -BasePath $(Root)TestStack.ConventionTests.Autofac\bin\$(Configuration)" />
57+
</Target>
58+
</Project>

ConventionTests.sln

Lines changed: 70 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -1,70 +1,70 @@
1-
2-
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 2013
4-
VisualStudioVersion = 12.0.20827.3
5-
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{AF9054EE-FE89-47A4-9156-BE54A837F2F7}"
7-
ProjectSection(SolutionItems) = preProject
8-
Build.cmd = Build.cmd
9-
ConventionTests.proj = ConventionTests.proj
10-
README.md = README.md
11-
EndProjectSection
12-
EndProject
13-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestStack.ConventionTests", "TestStack.ConventionTests\TestStack.ConventionTests.csproj", "{955B0236-089F-434D-BA02-63A1E24C2B7C}"
14-
EndProject
15-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestStack.ConventionTests.Tests", "TestStack.ConventionTests.Tests\TestStack.ConventionTests.Tests.csproj", "{FEFF8305-A192-4CEA-A373-6CF2F365A9E5}"
16-
EndProject
17-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{35B8E1F6-8E97-40A6-91E3-CB765328424F}"
18-
ProjectSection(SolutionItems) = preProject
19-
.nuget\packages.config = .nuget\packages.config
20-
EndProjectSection
21-
EndProject
22-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestAssembly", "TestAssembly\TestAssembly.csproj", "{D5A0D078-C660-4654-8A14-DDC816BEBC54}"
23-
EndProject
24-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Samples", "Samples", "{E971721A-1271-4359-8F76-9FF17C29582B}"
25-
EndProject
26-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestStack.ConventionTests.Autofac", "TestStack.ConventionTests.Autofac\TestStack.ConventionTests.Autofac.csproj", "{A747FD64-5338-4572-879D-A9DEB00EBD56}"
27-
EndProject
28-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SampleApp", "Samples\SampleApp\SampleApp.csproj", "{56467A5A-7DD6-45B3-A84C-144A3C5D0C7A}"
29-
EndProject
30-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SampleApp.Tests", "Samples\SampleApp.Tests\SampleApp.Tests.csproj", "{8FEF48A8-6FF5-4B65-B84A-6690D735C703}"
31-
EndProject
32-
Global
33-
GlobalSection(SolutionConfigurationPlatforms) = preSolution
34-
Debug|Any CPU = Debug|Any CPU
35-
Release|Any CPU = Release|Any CPU
36-
EndGlobalSection
37-
GlobalSection(ProjectConfigurationPlatforms) = postSolution
38-
{955B0236-089F-434D-BA02-63A1E24C2B7C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
39-
{955B0236-089F-434D-BA02-63A1E24C2B7C}.Debug|Any CPU.Build.0 = Debug|Any CPU
40-
{955B0236-089F-434D-BA02-63A1E24C2B7C}.Release|Any CPU.ActiveCfg = Release|Any CPU
41-
{955B0236-089F-434D-BA02-63A1E24C2B7C}.Release|Any CPU.Build.0 = Release|Any CPU
42-
{FEFF8305-A192-4CEA-A373-6CF2F365A9E5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
43-
{FEFF8305-A192-4CEA-A373-6CF2F365A9E5}.Debug|Any CPU.Build.0 = Debug|Any CPU
44-
{FEFF8305-A192-4CEA-A373-6CF2F365A9E5}.Release|Any CPU.ActiveCfg = Release|Any CPU
45-
{FEFF8305-A192-4CEA-A373-6CF2F365A9E5}.Release|Any CPU.Build.0 = Release|Any CPU
46-
{D5A0D078-C660-4654-8A14-DDC816BEBC54}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
47-
{D5A0D078-C660-4654-8A14-DDC816BEBC54}.Debug|Any CPU.Build.0 = Debug|Any CPU
48-
{D5A0D078-C660-4654-8A14-DDC816BEBC54}.Release|Any CPU.ActiveCfg = Release|Any CPU
49-
{D5A0D078-C660-4654-8A14-DDC816BEBC54}.Release|Any CPU.Build.0 = Release|Any CPU
50-
{A747FD64-5338-4572-879D-A9DEB00EBD56}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
51-
{A747FD64-5338-4572-879D-A9DEB00EBD56}.Debug|Any CPU.Build.0 = Debug|Any CPU
52-
{A747FD64-5338-4572-879D-A9DEB00EBD56}.Release|Any CPU.ActiveCfg = Release|Any CPU
53-
{A747FD64-5338-4572-879D-A9DEB00EBD56}.Release|Any CPU.Build.0 = Release|Any CPU
54-
{56467A5A-7DD6-45B3-A84C-144A3C5D0C7A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
55-
{56467A5A-7DD6-45B3-A84C-144A3C5D0C7A}.Debug|Any CPU.Build.0 = Debug|Any CPU
56-
{56467A5A-7DD6-45B3-A84C-144A3C5D0C7A}.Release|Any CPU.ActiveCfg = Release|Any CPU
57-
{56467A5A-7DD6-45B3-A84C-144A3C5D0C7A}.Release|Any CPU.Build.0 = Release|Any CPU
58-
{8FEF48A8-6FF5-4B65-B84A-6690D735C703}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
59-
{8FEF48A8-6FF5-4B65-B84A-6690D735C703}.Debug|Any CPU.Build.0 = Debug|Any CPU
60-
{8FEF48A8-6FF5-4B65-B84A-6690D735C703}.Release|Any CPU.ActiveCfg = Release|Any CPU
61-
{8FEF48A8-6FF5-4B65-B84A-6690D735C703}.Release|Any CPU.Build.0 = Release|Any CPU
62-
EndGlobalSection
63-
GlobalSection(SolutionProperties) = preSolution
64-
HideSolutionNode = FALSE
65-
EndGlobalSection
66-
GlobalSection(NestedProjects) = preSolution
67-
{56467A5A-7DD6-45B3-A84C-144A3C5D0C7A} = {E971721A-1271-4359-8F76-9FF17C29582B}
68-
{8FEF48A8-6FF5-4B65-B84A-6690D735C703} = {E971721A-1271-4359-8F76-9FF17C29582B}
69-
EndGlobalSection
70-
EndGlobal
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 2013
4+
VisualStudioVersion = 12.0.20827.3
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{AF9054EE-FE89-47A4-9156-BE54A837F2F7}"
7+
ProjectSection(SolutionItems) = preProject
8+
Build.cmd = Build.cmd
9+
ConventionTests.proj = ConventionTests.proj
10+
README.md = README.md
11+
EndProjectSection
12+
EndProject
13+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestStack.ConventionTests", "TestStack.ConventionTests\TestStack.ConventionTests.csproj", "{955B0236-089F-434D-BA02-63A1E24C2B7C}"
14+
EndProject
15+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestStack.ConventionTests.Tests", "TestStack.ConventionTests.Tests\TestStack.ConventionTests.Tests.csproj", "{FEFF8305-A192-4CEA-A373-6CF2F365A9E5}"
16+
EndProject
17+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{35B8E1F6-8E97-40A6-91E3-CB765328424F}"
18+
ProjectSection(SolutionItems) = preProject
19+
.nuget\packages.config = .nuget\packages.config
20+
EndProjectSection
21+
EndProject
22+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestAssembly", "TestAssembly\TestAssembly.csproj", "{D5A0D078-C660-4654-8A14-DDC816BEBC54}"
23+
EndProject
24+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Samples", "Samples", "{E971721A-1271-4359-8F76-9FF17C29582B}"
25+
EndProject
26+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestStack.ConventionTests.Autofac", "TestStack.ConventionTests.Autofac\TestStack.ConventionTests.Autofac.csproj", "{A747FD64-5338-4572-879D-A9DEB00EBD56}"
27+
EndProject
28+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SampleApp", "Samples\SampleApp\SampleApp.csproj", "{56467A5A-7DD6-45B3-A84C-144A3C5D0C7A}"
29+
EndProject
30+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SampleApp.Tests", "Samples\SampleApp.Tests\SampleApp.Tests.csproj", "{8FEF48A8-6FF5-4B65-B84A-6690D735C703}"
31+
EndProject
32+
Global
33+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
34+
Debug|Any CPU = Debug|Any CPU
35+
Release|Any CPU = Release|Any CPU
36+
EndGlobalSection
37+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
38+
{955B0236-089F-434D-BA02-63A1E24C2B7C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
39+
{955B0236-089F-434D-BA02-63A1E24C2B7C}.Debug|Any CPU.Build.0 = Debug|Any CPU
40+
{955B0236-089F-434D-BA02-63A1E24C2B7C}.Release|Any CPU.ActiveCfg = Release|Any CPU
41+
{955B0236-089F-434D-BA02-63A1E24C2B7C}.Release|Any CPU.Build.0 = Release|Any CPU
42+
{FEFF8305-A192-4CEA-A373-6CF2F365A9E5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
43+
{FEFF8305-A192-4CEA-A373-6CF2F365A9E5}.Debug|Any CPU.Build.0 = Debug|Any CPU
44+
{FEFF8305-A192-4CEA-A373-6CF2F365A9E5}.Release|Any CPU.ActiveCfg = Release|Any CPU
45+
{FEFF8305-A192-4CEA-A373-6CF2F365A9E5}.Release|Any CPU.Build.0 = Release|Any CPU
46+
{D5A0D078-C660-4654-8A14-DDC816BEBC54}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
47+
{D5A0D078-C660-4654-8A14-DDC816BEBC54}.Debug|Any CPU.Build.0 = Debug|Any CPU
48+
{D5A0D078-C660-4654-8A14-DDC816BEBC54}.Release|Any CPU.ActiveCfg = Release|Any CPU
49+
{D5A0D078-C660-4654-8A14-DDC816BEBC54}.Release|Any CPU.Build.0 = Release|Any CPU
50+
{A747FD64-5338-4572-879D-A9DEB00EBD56}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
51+
{A747FD64-5338-4572-879D-A9DEB00EBD56}.Debug|Any CPU.Build.0 = Debug|Any CPU
52+
{A747FD64-5338-4572-879D-A9DEB00EBD56}.Release|Any CPU.ActiveCfg = Release|Any CPU
53+
{A747FD64-5338-4572-879D-A9DEB00EBD56}.Release|Any CPU.Build.0 = Release|Any CPU
54+
{56467A5A-7DD6-45B3-A84C-144A3C5D0C7A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
55+
{56467A5A-7DD6-45B3-A84C-144A3C5D0C7A}.Debug|Any CPU.Build.0 = Debug|Any CPU
56+
{56467A5A-7DD6-45B3-A84C-144A3C5D0C7A}.Release|Any CPU.ActiveCfg = Release|Any CPU
57+
{56467A5A-7DD6-45B3-A84C-144A3C5D0C7A}.Release|Any CPU.Build.0 = Release|Any CPU
58+
{8FEF48A8-6FF5-4B65-B84A-6690D735C703}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
59+
{8FEF48A8-6FF5-4B65-B84A-6690D735C703}.Debug|Any CPU.Build.0 = Debug|Any CPU
60+
{8FEF48A8-6FF5-4B65-B84A-6690D735C703}.Release|Any CPU.ActiveCfg = Release|Any CPU
61+
{8FEF48A8-6FF5-4B65-B84A-6690D735C703}.Release|Any CPU.Build.0 = Release|Any CPU
62+
EndGlobalSection
63+
GlobalSection(SolutionProperties) = preSolution
64+
HideSolutionNode = FALSE
65+
EndGlobalSection
66+
GlobalSection(NestedProjects) = preSolution
67+
{56467A5A-7DD6-45B3-A84C-144A3C5D0C7A} = {E971721A-1271-4359-8F76-9FF17C29582B}
68+
{8FEF48A8-6FF5-4B65-B84A-6690D735C703} = {E971721A-1271-4359-8F76-9FF17C29582B}
69+
EndGlobalSection
70+
EndGlobal

0 commit comments

Comments
 (0)