Skip to content
This repository has been archived by the owner on Apr 16, 2020. It is now read-only.

Commit

Permalink
only msbuild core for 2.0 (#163)
Browse files Browse the repository at this point in the history
* 2.0 is msbuild core only, not msbuild full framework

* able to open up in Visual Studio 2017 without error

* synced up CI changes for SourceLinkTest

* try b408
  • Loading branch information
ctaggart authored Mar 9, 2017
1 parent 8ce5198 commit 72d9d39
Show file tree
Hide file tree
Showing 13 changed files with 138 additions and 119 deletions.
35 changes: 35 additions & 0 deletions SourceLink.Create.GitHub/SourceLink.Create.GitHub.Core.targets
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<Project>
<UsingTask TaskName="SourceLink.Create.GitHub.CreateTask" AssemblyFile="SourceLink.Create.GitHub.dll" />

<PropertyGroup>
<!-- enable only in CI environments by default -->
<!-- enable on AppVeyor and Travis CI, detect CI environment variable -->
<SourceLinkCreate Condition="'$(SourceLinkCreate)' == ''">$(CI)</SourceLinkCreate>
<!-- enable on Jenkins and TeamCity, detect BUILD_NUMBER environment variable -->
<SourceLinkCreate Condition="'$(SourceLinkCreate)' == '' and '$(BUILD_NUMBER)' != ''">true</SourceLinkCreate>
<CompileDependsOn Condition="'$(SourceLinkCreate)' == 'true' and ($(DebugType) == 'portable' or $(DebugType) == 'embedded')">SourceLinkCreate;$(CompileDependsOn)</CompileDependsOn>
<SourceLinkRepo Condition="'$(SourceLinkRepo)' == ''">$(MSBuildProjectDirectory)</SourceLinkRepo>
<SourceLinkFile Condition="'$(SourceLinkFile)' == ''">$(SourceLink)</SourceLinkFile>
<SourceLinkFile Condition="'$(SourceLinkFile)' == ''">$(BaseIntermediateOutputPath)sourcelink.json</SourceLinkFile>
<SourceLinkNotInGit Condition="'$(SourceLinkNotInGit)' == ''">embed</SourceLinkNotInGit>
<SourceLinkHashMismatch Condition="'$(SourceLinkHashMismatch)' == ''">embed</SourceLinkHashMismatch>
</PropertyGroup>

<ItemGroup>
<SourceLinkSources Condition="'@(SourceLinkSources)' == ''" Include="@(Compile)" Exclude="@(EmbeddedFiles)" />
</ItemGroup>

<Target Name="SourceLinkCreate">
<SourceLink.Create.GitHub.CreateTask
GitDirectory="$(SourceLinkGitDirectory)"
Url="$(SourceLinkUrl)"
File="$(SourceLinkFile)"
Sources="@(SourceLinkSources)"
NoAutoLF="$(SourceLinkNoAutoLF)"
EmbeddedFilesIn="@(EmbeddedFiles)">
<Output PropertyName="SourceLink" TaskParameter="SourceLink" />
<Output ItemName="EmbeddedFiles" TaskParameter="EmbeddedFiles" />
</SourceLink.Create.GitHub.CreateTask>
</Target>

</Project>
9 changes: 7 additions & 2 deletions SourceLink.Create.GitHub/SourceLink.Create.GitHub.csproj
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard1.6</TargetFramework>
<TargetFramework>netstandard1.4</TargetFramework>
<DebugType>embedded</DebugType>
<!-- https://github.com/NuGet/Home/wiki/Adding-nuget-pack-as-a-msbuild-target -->
<IncludeBuildOutput>false</IncludeBuildOutput>
<!--<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>-->

<Authors>Cameron Taggart</Authors>
<PackageLicenseUrl>https://opensource.org/licenses/MIT</PackageLicenseUrl>
Expand All @@ -27,6 +28,10 @@
<Pack>true</Pack>
<PackagePath>build</PackagePath>
</Content>
<Content Include="SourceLink.Create.GitHub.Core.targets">
<Pack>true</Pack>
<PackagePath>build</PackagePath>
</Content>
<Content Include="$(OutputPath)SourceLink.Create.GitHub.dll">
<Pack>true</Pack>
<PackagePath>build</PackagePath>
Expand All @@ -37,5 +42,5 @@
</Content>
</ItemGroup>

<!--<Import Project="$(MSBuildThisFileDirectory)../SourceLink.props" />-->
<!--<Import Project="../SourceLink.props" />-->
</Project>
34 changes: 2 additions & 32 deletions SourceLink.Create.GitHub/SourceLink.Create.GitHub.targets
Original file line number Diff line number Diff line change
@@ -1,33 +1,3 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

<UsingTask TaskName="SourceLink.Create.GitHub.CreateTask" AssemblyFile="SourceLink.Create.GitHub.dll" />

<PropertyGroup>
<!-- enable only in CI environments by default -->
<SourceLinkCreate Condition="'$(SourceLinkCreate)' == ''">$(CI)</SourceLinkCreate>
<CompileDependsOn Condition="'$(SourceLinkCreate)' == 'true' and ($(DebugType) == 'portable' or $(DebugType) == 'embedded')">SourceLinkCreate;$(CompileDependsOn)</CompileDependsOn>
<SourceLinkRepo Condition="'$(SourceLinkRepo)' == ''">$(MSBuildProjectDirectory)</SourceLinkRepo>
<SourceLinkFile Condition="'$(SourceLinkFile)' == ''">$(SourceLink)</SourceLinkFile>
<SourceLinkFile Condition="'$(SourceLinkFile)' == ''">$(BaseIntermediateOutputPath)sourcelink.json</SourceLinkFile>
<SourceLinkNotInGit Condition="'$(SourceLinkNotInGit)' == ''">embed</SourceLinkNotInGit>
<SourceLinkHashMismatch Condition="'$(SourceLinkHashMismatch)' == ''">embed</SourceLinkHashMismatch>
</PropertyGroup>

<ItemGroup>
<SourceLinkSources Condition="'@(SourceLinkSources)' == ''" Include="@(Compile)" Exclude="@(EmbeddedFiles)" />
</ItemGroup>

<Target Name="SourceLinkCreate">
<SourceLink.Create.GitHub.CreateTask
GitDirectory="$(SourceLinkGitDirectory)"
Url="$(SourceLinkUrl)"
File="$(SourceLinkFile)"
Sources="@(SourceLinkSources)"
NoAutoLF="$(SourceLinkNoAutoLF)"
EmbeddedFilesIn="@(EmbeddedFiles)">
<Output PropertyName="SourceLink" TaskParameter="SourceLink" />
<Output ItemName="EmbeddedFiles" TaskParameter="EmbeddedFiles" />
</SourceLink.Create.GitHub.CreateTask>
</Target>

<Project>
<Import Condition="'$(MSBuildRuntimeType)' == 'Core'" Project="SourceLink.Create.GitHub.Core.targets" />
</Project>
19 changes: 19 additions & 0 deletions SourceLink.Test/SourceLink.Test.Core.targets
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<Project>
<UsingTask TaskName="SourceLink.Test.TestTask" AssemblyFile="SourceLink.Test.dll" />

<PropertyGroup>
<!-- enable only in CI environments by default -->
<!-- enable on AppVeyor and Travis CI, detect CI environment variable -->
<SourceLinkTest Condition="'$(SourceLinkTest)' == ''">$(CI)</SourceLinkTest>
<!-- enable on Jenkins and TeamCity, detect BUILD_NUMBER environment variable -->
<SourceLinkTest Condition="'$(SourceLinkTest)' == '' and '$(BUILD_NUMBER)' != ''">true</SourceLinkTest>
<CompileDependsOn Condition="'$(SourceLinkTest)' == 'true' and ($(DebugType) == 'portable' or $(DebugType) == 'embedded')">$(CompileDependsOn);SourceLinkTest</CompileDependsOn>
<SourceLinkPdb Condition="'$(SourceLinkPdb)' == ''">$(PdbFile)</SourceLinkPdb>
<SourceLinkPdb Condition="'$(SourceLinkPdb)' == '' and $(DebugType) == 'portable'">$(IntermediateOutputPath)$(TargetName).pdb</SourceLinkPdb>
<SourceLinkPdb Condition="'$(SourceLinkPdb)' == '' and $(DebugType) == 'embedded'">$(IntermediateOutputPath)$(TargetName).dll</SourceLinkPdb>
</PropertyGroup>

<Target Name="SourceLinkTest">
<SourceLink.Test.TestTask Pdb="$(SourceLinkPdb)" />
</Target>
</Project>
9 changes: 7 additions & 2 deletions SourceLink.Test/SourceLink.Test.csproj
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard1.6</TargetFramework>
<TargetFramework>netstandard1.4</TargetFramework>
<DebugType>embedded</DebugType>
<!-- https://github.com/NuGet/Home/wiki/Adding-nuget-pack-as-a-msbuild-target -->
<IncludeBuildOutput>false</IncludeBuildOutput>
<!--<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>-->

<Authors>Cameron Taggart</Authors>
<PackageLicenseUrl>https://opensource.org/licenses/MIT</PackageLicenseUrl>
Expand All @@ -27,6 +28,10 @@
<Pack>true</Pack>
<PackagePath>build</PackagePath>
</Content>
<Content Include="SourceLink.Test.Core.targets">
<Pack>true</Pack>
<PackagePath>build</PackagePath>
</Content>
<Content Include="$(OutputPath)SourceLink.Test.dll">
<Pack>true</Pack>
<PackagePath>build</PackagePath>
Expand All @@ -40,5 +45,5 @@
<Compile Include="..\SourceLink.Create.GitHub\Process.cs" Link="Process.cs" />
</ItemGroup>

<!--<Import Project="$(MSBuildThisFileDirectory)../SourceLink.props" />-->
<!--<Import Project="../SourceLink.props" />-->
</Project>
18 changes: 2 additions & 16 deletions SourceLink.Test/SourceLink.Test.targets
Original file line number Diff line number Diff line change
@@ -1,17 +1,3 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

<UsingTask TaskName="SourceLink.Test.TestTask" AssemblyFile="SourceLink.Test.dll" />

<PropertyGroup>
<!-- enable only in CI environments by default -->
<SourceLinkTest Condition="'$(SourceLinkTest)' == ''">$(CI)</SourceLinkTest>
<CompileDependsOn Condition="'$(SourceLinkTest)' == 'true' and ($(DebugType) == 'portable' or $(DebugType) == 'embedded')">$(CompileDependsOn);SourceLinkTest</CompileDependsOn>
<SourceLinkPdb Condition="'$(SourceLinkPdb)' == ''">$(PdbFile)</SourceLinkPdb>
<SourceLinkPdb Condition="'$(SourceLinkPdb)' == '' and $(DebugType) == 'portable'">$(IntermediateOutputPath)$(TargetName).pdb</SourceLinkPdb>
<SourceLinkPdb Condition="'$(SourceLinkPdb)' == '' and $(DebugType) == 'embedded'">$(IntermediateOutputPath)$(TargetName).dll</SourceLinkPdb>
</PropertyGroup>

<Target Name="SourceLinkTest">
<SourceLink.Test.TestTask Pdb="$(SourceLinkPdb)" />
</Target>
<Project>
<Import Condition="'$(MSBuildRuntimeType)' == 'Core'" Project="SourceLink.Test.Core.targets" />
</Project>
8 changes: 4 additions & 4 deletions SourceLink.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<SourceLinkTest>true</SourceLinkTest>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SourceLink.Create.GitHub" Version="[2.0.0-b400]" PrivateAssets="all" />
<PackageReference Include="SourceLink.Test" Version="[2.0.0-b400]" PrivateAssets="all" />
<DotNetCliToolReference Include="dotnet-sourcelink-git" Version="[2.0.0-b400]" />
<DotNetCliToolReference Include="dotnet-sourcelink" Version="[2.0.0-b400]" />
<PackageReference Include="SourceLink.Create.GitHub" Version="[2.0.1-b408]" PrivateAssets="all" />
<PackageReference Include="SourceLink.Test" Version="[2.0.1-b408]" PrivateAssets="all" />
<DotNetCliToolReference Include="dotnet-sourcelink-git" Version="[2.0.1-b408]" />
<DotNetCliToolReference Include="dotnet-sourcelink" Version="[2.0.1-b408]" />
</ItemGroup>
</Project>
92 changes: 46 additions & 46 deletions SourceLink.sln
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26206.0
VisualStudioVersion = 15.0.26228.4
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{876D3926-2BE5-40B4-B9D4-1218875A3870}"
ProjectSection(SolutionItems) = preProject
Expand All @@ -11,15 +11,15 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
README.md = README.md
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dotnet-sourcelink", "dotnet-sourcelink\dotnet-sourcelink.csproj", "{68D40DAC-77EF-426A-979D-1CC4723CB2A1}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dotnet-sourcelink", "dotnet-sourcelink\dotnet-sourcelink.csproj", "{68D40DAC-77EF-426A-979D-1CC4723CB2A1}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SourceLink.Create.GitHub", "SourceLink.Create.GitHub\SourceLink.Create.GitHub.csproj", "{5CEE8EC8-7A54-4860-8B5D-29F89D7F7F4C}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SourceLink.Create.GitHub", "SourceLink.Create.GitHub\SourceLink.Create.GitHub.csproj", "{5CEE8EC8-7A54-4860-8B5D-29F89D7F7F4C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dotnet-sourcelink-git", "dotnet-sourcelink-git\dotnet-sourcelink-git.csproj", "{87BCE13E-47FF-43A4-ADF4-F645FD4966AD}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dotnet-sourcelink-git", "dotnet-sourcelink-git\dotnet-sourcelink-git.csproj", "{87BCE13E-47FF-43A4-ADF4-F645FD4966AD}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tests", "Tests\Tests.csproj", "{13B28F5D-43CA-4243-A932-3352BB788216}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tests", "Tests\Tests.csproj", "{13B28F5D-43CA-4243-A932-3352BB788216}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SourceLink.Test", "SourceLink.Test\SourceLink.Test.csproj", "{76A52AA7-0433-4B6C-831C-2C2CEB371082}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SourceLink.Test", "SourceLink.Test\SourceLink.Test.csproj", "{76A52AA7-0433-4B6C-831C-2C2CEB371082}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -33,64 +33,64 @@ Global
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{68D40DAC-77EF-426A-979D-1CC4723CB2A1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{68D40DAC-77EF-426A-979D-1CC4723CB2A1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{68D40DAC-77EF-426A-979D-1CC4723CB2A1}.Debug|x64.ActiveCfg = Debug|x64
{68D40DAC-77EF-426A-979D-1CC4723CB2A1}.Debug|x64.Build.0 = Debug|x64
{68D40DAC-77EF-426A-979D-1CC4723CB2A1}.Debug|x86.ActiveCfg = Debug|x86
{68D40DAC-77EF-426A-979D-1CC4723CB2A1}.Debug|x86.Build.0 = Debug|x86
{68D40DAC-77EF-426A-979D-1CC4723CB2A1}.Debug|x64.ActiveCfg = Debug|Any CPU
{68D40DAC-77EF-426A-979D-1CC4723CB2A1}.Debug|x64.Build.0 = Debug|Any CPU
{68D40DAC-77EF-426A-979D-1CC4723CB2A1}.Debug|x86.ActiveCfg = Debug|Any CPU
{68D40DAC-77EF-426A-979D-1CC4723CB2A1}.Debug|x86.Build.0 = Debug|Any CPU
{68D40DAC-77EF-426A-979D-1CC4723CB2A1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{68D40DAC-77EF-426A-979D-1CC4723CB2A1}.Release|Any CPU.Build.0 = Release|Any CPU
{68D40DAC-77EF-426A-979D-1CC4723CB2A1}.Release|x64.ActiveCfg = Release|x64
{68D40DAC-77EF-426A-979D-1CC4723CB2A1}.Release|x64.Build.0 = Release|x64
{68D40DAC-77EF-426A-979D-1CC4723CB2A1}.Release|x86.ActiveCfg = Release|x86
{68D40DAC-77EF-426A-979D-1CC4723CB2A1}.Release|x86.Build.0 = Release|x86
{68D40DAC-77EF-426A-979D-1CC4723CB2A1}.Release|x64.ActiveCfg = Release|Any CPU
{68D40DAC-77EF-426A-979D-1CC4723CB2A1}.Release|x64.Build.0 = Release|Any CPU
{68D40DAC-77EF-426A-979D-1CC4723CB2A1}.Release|x86.ActiveCfg = Release|Any CPU
{68D40DAC-77EF-426A-979D-1CC4723CB2A1}.Release|x86.Build.0 = Release|Any CPU
{5CEE8EC8-7A54-4860-8B5D-29F89D7F7F4C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5CEE8EC8-7A54-4860-8B5D-29F89D7F7F4C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5CEE8EC8-7A54-4860-8B5D-29F89D7F7F4C}.Debug|x64.ActiveCfg = Debug|x64
{5CEE8EC8-7A54-4860-8B5D-29F89D7F7F4C}.Debug|x64.Build.0 = Debug|x64
{5CEE8EC8-7A54-4860-8B5D-29F89D7F7F4C}.Debug|x86.ActiveCfg = Debug|x86
{5CEE8EC8-7A54-4860-8B5D-29F89D7F7F4C}.Debug|x86.Build.0 = Debug|x86
{5CEE8EC8-7A54-4860-8B5D-29F89D7F7F4C}.Debug|x64.ActiveCfg = Debug|Any CPU
{5CEE8EC8-7A54-4860-8B5D-29F89D7F7F4C}.Debug|x64.Build.0 = Debug|Any CPU
{5CEE8EC8-7A54-4860-8B5D-29F89D7F7F4C}.Debug|x86.ActiveCfg = Debug|Any CPU
{5CEE8EC8-7A54-4860-8B5D-29F89D7F7F4C}.Debug|x86.Build.0 = Debug|Any CPU
{5CEE8EC8-7A54-4860-8B5D-29F89D7F7F4C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5CEE8EC8-7A54-4860-8B5D-29F89D7F7F4C}.Release|Any CPU.Build.0 = Release|Any CPU
{5CEE8EC8-7A54-4860-8B5D-29F89D7F7F4C}.Release|x64.ActiveCfg = Release|x64
{5CEE8EC8-7A54-4860-8B5D-29F89D7F7F4C}.Release|x64.Build.0 = Release|x64
{5CEE8EC8-7A54-4860-8B5D-29F89D7F7F4C}.Release|x86.ActiveCfg = Release|x86
{5CEE8EC8-7A54-4860-8B5D-29F89D7F7F4C}.Release|x86.Build.0 = Release|x86
{5CEE8EC8-7A54-4860-8B5D-29F89D7F7F4C}.Release|x64.ActiveCfg = Release|Any CPU
{5CEE8EC8-7A54-4860-8B5D-29F89D7F7F4C}.Release|x64.Build.0 = Release|Any CPU
{5CEE8EC8-7A54-4860-8B5D-29F89D7F7F4C}.Release|x86.ActiveCfg = Release|Any CPU
{5CEE8EC8-7A54-4860-8B5D-29F89D7F7F4C}.Release|x86.Build.0 = Release|Any CPU
{87BCE13E-47FF-43A4-ADF4-F645FD4966AD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{87BCE13E-47FF-43A4-ADF4-F645FD4966AD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{87BCE13E-47FF-43A4-ADF4-F645FD4966AD}.Debug|x64.ActiveCfg = Debug|x64
{87BCE13E-47FF-43A4-ADF4-F645FD4966AD}.Debug|x64.Build.0 = Debug|x64
{87BCE13E-47FF-43A4-ADF4-F645FD4966AD}.Debug|x86.ActiveCfg = Debug|x86
{87BCE13E-47FF-43A4-ADF4-F645FD4966AD}.Debug|x86.Build.0 = Debug|x86
{87BCE13E-47FF-43A4-ADF4-F645FD4966AD}.Debug|x64.ActiveCfg = Debug|Any CPU
{87BCE13E-47FF-43A4-ADF4-F645FD4966AD}.Debug|x64.Build.0 = Debug|Any CPU
{87BCE13E-47FF-43A4-ADF4-F645FD4966AD}.Debug|x86.ActiveCfg = Debug|Any CPU
{87BCE13E-47FF-43A4-ADF4-F645FD4966AD}.Debug|x86.Build.0 = Debug|Any CPU
{87BCE13E-47FF-43A4-ADF4-F645FD4966AD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{87BCE13E-47FF-43A4-ADF4-F645FD4966AD}.Release|Any CPU.Build.0 = Release|Any CPU
{87BCE13E-47FF-43A4-ADF4-F645FD4966AD}.Release|x64.ActiveCfg = Release|x64
{87BCE13E-47FF-43A4-ADF4-F645FD4966AD}.Release|x64.Build.0 = Release|x64
{87BCE13E-47FF-43A4-ADF4-F645FD4966AD}.Release|x86.ActiveCfg = Release|x86
{87BCE13E-47FF-43A4-ADF4-F645FD4966AD}.Release|x86.Build.0 = Release|x86
{87BCE13E-47FF-43A4-ADF4-F645FD4966AD}.Release|x64.ActiveCfg = Release|Any CPU
{87BCE13E-47FF-43A4-ADF4-F645FD4966AD}.Release|x64.Build.0 = Release|Any CPU
{87BCE13E-47FF-43A4-ADF4-F645FD4966AD}.Release|x86.ActiveCfg = Release|Any CPU
{87BCE13E-47FF-43A4-ADF4-F645FD4966AD}.Release|x86.Build.0 = Release|Any CPU
{13B28F5D-43CA-4243-A932-3352BB788216}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{13B28F5D-43CA-4243-A932-3352BB788216}.Debug|Any CPU.Build.0 = Debug|Any CPU
{13B28F5D-43CA-4243-A932-3352BB788216}.Debug|x64.ActiveCfg = Debug|x64
{13B28F5D-43CA-4243-A932-3352BB788216}.Debug|x64.Build.0 = Debug|x64
{13B28F5D-43CA-4243-A932-3352BB788216}.Debug|x86.ActiveCfg = Debug|x86
{13B28F5D-43CA-4243-A932-3352BB788216}.Debug|x86.Build.0 = Debug|x86
{13B28F5D-43CA-4243-A932-3352BB788216}.Debug|x64.ActiveCfg = Debug|Any CPU
{13B28F5D-43CA-4243-A932-3352BB788216}.Debug|x64.Build.0 = Debug|Any CPU
{13B28F5D-43CA-4243-A932-3352BB788216}.Debug|x86.ActiveCfg = Debug|Any CPU
{13B28F5D-43CA-4243-A932-3352BB788216}.Debug|x86.Build.0 = Debug|Any CPU
{13B28F5D-43CA-4243-A932-3352BB788216}.Release|Any CPU.ActiveCfg = Release|Any CPU
{13B28F5D-43CA-4243-A932-3352BB788216}.Release|Any CPU.Build.0 = Release|Any CPU
{13B28F5D-43CA-4243-A932-3352BB788216}.Release|x64.ActiveCfg = Release|x64
{13B28F5D-43CA-4243-A932-3352BB788216}.Release|x64.Build.0 = Release|x64
{13B28F5D-43CA-4243-A932-3352BB788216}.Release|x86.ActiveCfg = Release|x86
{13B28F5D-43CA-4243-A932-3352BB788216}.Release|x86.Build.0 = Release|x86
{13B28F5D-43CA-4243-A932-3352BB788216}.Release|x64.ActiveCfg = Release|Any CPU
{13B28F5D-43CA-4243-A932-3352BB788216}.Release|x64.Build.0 = Release|Any CPU
{13B28F5D-43CA-4243-A932-3352BB788216}.Release|x86.ActiveCfg = Release|Any CPU
{13B28F5D-43CA-4243-A932-3352BB788216}.Release|x86.Build.0 = Release|Any CPU
{76A52AA7-0433-4B6C-831C-2C2CEB371082}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{76A52AA7-0433-4B6C-831C-2C2CEB371082}.Debug|Any CPU.Build.0 = Debug|Any CPU
{76A52AA7-0433-4B6C-831C-2C2CEB371082}.Debug|x64.ActiveCfg = Debug|x64
{76A52AA7-0433-4B6C-831C-2C2CEB371082}.Debug|x64.Build.0 = Debug|x64
{76A52AA7-0433-4B6C-831C-2C2CEB371082}.Debug|x86.ActiveCfg = Debug|x86
{76A52AA7-0433-4B6C-831C-2C2CEB371082}.Debug|x86.Build.0 = Debug|x86
{76A52AA7-0433-4B6C-831C-2C2CEB371082}.Debug|x64.ActiveCfg = Debug|Any CPU
{76A52AA7-0433-4B6C-831C-2C2CEB371082}.Debug|x64.Build.0 = Debug|Any CPU
{76A52AA7-0433-4B6C-831C-2C2CEB371082}.Debug|x86.ActiveCfg = Debug|Any CPU
{76A52AA7-0433-4B6C-831C-2C2CEB371082}.Debug|x86.Build.0 = Debug|Any CPU
{76A52AA7-0433-4B6C-831C-2C2CEB371082}.Release|Any CPU.ActiveCfg = Release|Any CPU
{76A52AA7-0433-4B6C-831C-2C2CEB371082}.Release|Any CPU.Build.0 = Release|Any CPU
{76A52AA7-0433-4B6C-831C-2C2CEB371082}.Release|x64.ActiveCfg = Release|x64
{76A52AA7-0433-4B6C-831C-2C2CEB371082}.Release|x64.Build.0 = Release|x64
{76A52AA7-0433-4B6C-831C-2C2CEB371082}.Release|x86.ActiveCfg = Release|x86
{76A52AA7-0433-4B6C-831C-2C2CEB371082}.Release|x86.Build.0 = Release|x86
{76A52AA7-0433-4B6C-831C-2C2CEB371082}.Release|x64.ActiveCfg = Release|Any CPU
{76A52AA7-0433-4B6C-831C-2C2CEB371082}.Release|x64.Build.0 = Release|Any CPU
{76A52AA7-0433-4B6C-831C-2C2CEB371082}.Release|x86.ActiveCfg = Release|Any CPU
{76A52AA7-0433-4B6C-831C-2C2CEB371082}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
Loading

0 comments on commit 72d9d39

Please sign in to comment.