Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace sarif-sdk submodule with Nuget package #1023

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/dotnet-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ jobs:
run: dotnet tool install -g dotnet-format

- name: dotnet format
run: dotnet-format --folder --check --exclude .\src\sarif-sdk\
run: dotnet-format --folder --check
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

3 changes: 0 additions & 3 deletions BuildAndTest.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ echo public const string Version = AssemblyVersion + Prerelease;
echo } >> %VERSION_CONSTANTS%
echo } >> %VERSION_CONSTANTS%

::Download Submodules
if not exist %~dp0src\sarif-sdk\src\Sarif.Sdk.sln (git submodule update --init --recursive)

::Restore packages
echo Restoring packages...
Expand Down Expand Up @@ -78,7 +76,6 @@ call BuildPackages.cmd || goto :ExitFailed

echo dotnet-format
dotnet tool update --global dotnet-format --version 4.1.131201
dotnet-format --folder --exclude .\src\sarif-sdk\

::Update BinSkimRules.md to cover any xml changes
echo Exporting any BinSkim rules
Expand Down
4 changes: 0 additions & 4 deletions BuildAndTest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ if [[ "$(uname)" == "Linux" || "$(uname)" == "Darwin" ]]; then
sed 's#\\#/#g' src/BinSkim.sln > src/BinSkimUnix.sln
fi

if [ ! -f src/sarif-sdk/src/Sarif.Sdk.sln ]; then
echo "Get submodule..."
git submodule update --init --recursive
fi

dotnet build src/BinSkimUnix.sln --configuration Release /p:Platform="x64"

Expand Down
1 change: 1 addition & 0 deletions ReleaseHistory.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
- NEW => new feature

## UNRELEASED
* NEW: Remove sarif-sdk submodule and use nuget package instead

## **v4.3.1** [NuGet Package](https://www.nuget.org/packages/Microsoft.CodeAnalysis.BinSkim/4.3.1)
* DEP: Update `msdia140.dll` from 14.40.33810.0 to 14.40.33812. [1000](https://github.com/microsoft/binskim/pull/1002)
Expand Down
2 changes: 0 additions & 2 deletions ado-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,6 @@ jobs:
script: "BuildAndTest.cmd"

- task: ComponentGovernanceComponentDetection@0
inputs:
ignoreDirectories: 'src\sarif-sdk'

- job: mac
pool:
Expand Down
9 changes: 9 additions & 0 deletions global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"sdk": {
"version": "8.0.111",
"rollForward": "latestPatch"
},
"msbuild-sdks": {
"Microsoft.Build.Traversal": "2.0.48"
}
}
29 changes: 9 additions & 20 deletions src/BinSkim.Driver/BinSkim.Driver.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory).., build.netcore.props))\build.netcore.props" />

<PropertyGroup>
<AssemblyName>BinSkim</AssemblyName>
<!-- Condition="'$(OS)'=='Windows_NT'" -->
Expand All @@ -10,7 +9,6 @@
<OutputType>Exe</OutputType>
<Platforms>x64</Platforms>
</PropertyGroup>

<PropertyGroup>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
Expand All @@ -19,61 +17,52 @@
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/Microsoft/binskim</RepositoryUrl>
</PropertyGroup>

<ItemGroup>
<Content Include="README.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>

<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.Collections.Immutable" Version="7.0.0" />
<PackageReference Include="System.Private.Uri" Version="4.3.2" />
<PackageReference Include="System.Reflection.Metadata" Version="7.0.2" />
<PackageReference Include="CommandLineParser" />
<PackageReference Include="Newtonsoft.Json" />
<PackageReference Include="System.Collections.Immutable" />
<PackageReference Include="System.Private.Uri" />
<PackageReference Include="System.Reflection.Metadata" />
<PackageReference Include="Sarif.Driver" />
</ItemGroup>

<ItemGroup>
<Reference Include="Dia2Lib">
<HintPath>..\..\refs\Dia2Lib.dll</HintPath>
<EmbedInteropTypes>False</EmbedInteropTypes>
</Reference>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\sarif-sdk\src\Sarif.Driver\Sarif.Driver.csproj" />
<ProjectReference Include="..\BinaryParsers\BinaryParsers.csproj" />
<ProjectReference Include="..\BinSkim.Rules\BinSkim.Rules.csproj" />
<ProjectReference Include="..\BinSkim.Sdk\BinSkim.Sdk.csproj" />
</ItemGroup>

<ItemGroup>
<Compile Update="DriverResources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>DriverResources.resx</DependentUpon>
</Compile>
</ItemGroup>

<ItemGroup>
<EmbeddedResource Update="DriverResources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>DriverResources.Designer.cs</LastGenOutput>
<CustomToolNamespace>Microsoft.CodeAnalysis.IL</CustomToolNamespace>
</EmbeddedResource>
</ItemGroup>

<ItemGroup>
<ItemGroup>
<MsDiaLibs Include="..\..\refs\x64\*" Condition="'$(RuntimeIdentifier)'==''" />
<!-- Note: Official Release builds on Windows should specify a RID. Build using the BuildAndTest.cmd script. -->
<!-- Note: Official Release builds on Windows should specify a RID. Build using the BuildAndTest.cmd script. -->
<MsDiaLibs Include="..\..\refs\x64\*" Condition="'$(RuntimeIdentifier)'=='win-x64'" />
<MsDiaLibs Include="..\..\refs\msdia140.dll.manifest" />

<!-- Required DLLs for Microsoft Visual C++ runtime. -->
<MsRuntime Include="..\..\refs\runtime\*" />
</ItemGroup>

<Target Name="CopyMsDiaLibs" AfterTargets="build">
<Copy SourceFiles="@(MsDiaLibs)" DestinationFolder="$(OutputPath)\" />
<Copy SourceFiles="@(MsRuntime)" DestinationFolder="$(OutputPath)\" />
Expand All @@ -82,4 +71,4 @@
<Copy SourceFiles="@(MsDiaLibs)" DestinationFolder="$(PublishDir)\" />
<Copy SourceFiles="@(MsRuntime)" DestinationFolder="$(PublishDir)\" />
</Target>
</Project>
</Project>
17 changes: 5 additions & 12 deletions src/BinSkim.Rules/BinSkim.Rules.csproj
Original file line number Diff line number Diff line change
@@ -1,46 +1,39 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory).., build.netcore.props))\build.netcore.props" />
<PropertyGroup>
<RootNamespace>Microsoft.CodeAnalysis.IL.Rules</RootNamespace>
<TargetFramework>$(NetStandardVersion)</TargetFramework>
<Platforms>x64</Platforms>
</PropertyGroup>

<ItemGroup>
<Reference Include="Dia2Lib">
<HintPath>..\..\refs\Dia2Lib.dll</HintPath>
<EmbedInteropTypes>False</EmbedInteropTypes>
</Reference>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.Collections.Immutable" Version="7.0.0" />
<PackageReference Include="System.Composition" Version="7.0.0" />
<PackageReference Include="Newtonsoft.Json" />
<PackageReference Include="System.Collections.Immutable" />
<PackageReference Include="System.Composition" />
<PackageReference Include="Sarif.Driver" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\sarif-sdk\src\Sarif.Driver\Sarif.Driver.csproj" />
<ProjectReference Include="..\BinaryParsers\BinaryParsers.csproj" />
<ProjectReference Include="..\BinSkim.Sdk\BinSkim.Sdk.csproj" />
</ItemGroup>

<ItemGroup>
<Compile Update="RuleResources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>RuleResources.resx</DependentUpon>
</Compile>
</ItemGroup>

<ItemGroup>
<EmbeddedResource Update="RuleResources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>RuleResources.Designer.cs</LastGenOutput>
<CustomToolNamespace>Microsoft.CodeAnalysis.IL.Rules</CustomToolNamespace>
</EmbeddedResource>
</ItemGroup>

</Project>
</Project>
18 changes: 6 additions & 12 deletions src/BinSkim.Sdk/BinSkim.Sdk.csproj
Original file line number Diff line number Diff line change
@@ -1,24 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory).., build.netcore.props))\build.netcore.props" />
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory).., build.netcore.props))\build.netcore.props" />
<PropertyGroup>
<RootNamespace>Microsoft.CodeAnalysis.IL.Sdk</RootNamespace>
<TargetFramework>$(NetStandardVersion)</TargetFramework>
<Platforms>x64</Platforms>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.21.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.Collections.Immutable" Version="7.0.0" />
<PackageReference Include="Microsoft.ApplicationInsights" />
<PackageReference Include="Newtonsoft.Json" />
<PackageReference Include="System.Collections.Immutable" />
<PackageReference Include="Sarif.Driver" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\BinaryParsers\BinaryParsers.csproj" />
<ProjectReference Include="..\sarif-sdk\src\Sarif.Driver\Sarif.Driver.csproj" />
</ItemGroup>

<ItemGroup>
<Compile Update="EnvironmentResources.Designer.cs">
<DesignTime>True</DesignTime>
Expand All @@ -31,7 +27,6 @@
<DependentUpon>SdkResources.resx</DependentUpon>
</Compile>
</ItemGroup>

<ItemGroup>
<EmbeddedResource Update="EnvironmentResources.resx">
<Generator>ResXFileCodeGenerator</Generator>
Expand All @@ -43,5 +38,4 @@
<CustomToolNamespace>Microsoft.CodeAnalysis.IL.Sdk</CustomToolNamespace>
</EmbeddedResource>
</ItemGroup>

</Project>
</Project>
3 changes: 2 additions & 1 deletion src/BinSkim.Sdk/Telemetry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ public void Dispose()
private static void ConfigureTelemetryContext(TelemetryContext context)
{
context.Session.Id = CreateRandomSessionId();
context.Component.Version = Assembly.GetCallingAssembly().GetCustomAttribute<AssemblyFileVersionAttribute>().Version;
AssemblyFileVersionAttribute? versionAttribute = Assembly.GetCallingAssembly().GetCustomAttribute<AssemblyFileVersionAttribute>();
context.Component.Version = versionAttribute?.Version ?? "Unknown";
context.Device.OperatingSystem = RuntimeInformation.OSDescription;
}

Expand Down
89 changes: 1 addition & 88 deletions src/BinSkim.sln
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Microsoft Visual Studio Solution File, Format Version 12.00
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.4.33205.214
MinimumVisualStudioVersion = 10.0.40219.1
Expand Down Expand Up @@ -42,24 +42,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Test.UnitTests.BinSkim.Rule
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Test.UnitTests.BinSkim.Driver", "Test.UnitTests.BinSkim.Driver\Test.UnitTests.BinSkim.Driver.csproj", "{B64DBE60-C7E6-48C1-BB7F-B12129DF98B2}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Sarif.Driver", "sarif-sdk\src\Sarif.Driver\Sarif.Driver.csproj", "{27C37565-AA27-4452-BABF-75DAF151A8F2}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "sarif-sdk", "sarif-sdk", "{E69E2009-ECED-4750-AA40-BFDD4FD13DAB}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Sarif", "sarif-sdk\src\Sarif\Sarif.csproj", "{C0DA9150-1651-457E-A700-A5CC389571A6}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Test.UnitTests.Sarif", "sarif-sdk\src\Test.UnitTests.Sarif\Test.UnitTests.Sarif.csproj", "{D976E333-3E50-41DD-B324-603B92237FC6}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Test.UnitTests.Sarif.Driver", "sarif-sdk\src\Test.UnitTests.Sarif.Driver\Test.UnitTests.Sarif.Driver.csproj", "{F8B27B8D-9DEE-4950-9257-83B8CD3714FE}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Test.Utilities.Sarif", "sarif-sdk\src\Test.Utilities.Sarif\Test.Utilities.Sarif.csproj", "{33EE1C90-2A26-428C-8006-B585E07AB620}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Sarif.Converters", "sarif-sdk\src\Sarif.Converters\Sarif.Converters.csproj", "{0C7A9CC9-991F-4971-8C82-9C8DDE66C3EB}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Test.UnitTests.Sarif.Converters", "sarif-sdk\src\Test.UnitTests.Sarif.Converters\Test.UnitTests.Sarif.Converters.csproj", "{E29D948B-BF8D-41D3-9924-01E994602D8A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Test.ConcurrencyTests", "Test.ConcurrencyTests\Test.ConcurrencyTests.csproj", "{27A04162-2037-41FB-AD76-E179451BB627}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -140,79 +122,10 @@ Global
{B64DBE60-C7E6-48C1-BB7F-B12129DF98B2}.Release|Any CPU.Build.0 = Release|x64
{B64DBE60-C7E6-48C1-BB7F-B12129DF98B2}.Release|x64.ActiveCfg = Release|x64
{B64DBE60-C7E6-48C1-BB7F-B12129DF98B2}.Release|x64.Build.0 = Release|x64
{27C37565-AA27-4452-BABF-75DAF151A8F2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{27C37565-AA27-4452-BABF-75DAF151A8F2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{27C37565-AA27-4452-BABF-75DAF151A8F2}.Debug|x64.ActiveCfg = Debug|Any CPU
{27C37565-AA27-4452-BABF-75DAF151A8F2}.Debug|x64.Build.0 = Debug|Any CPU
{27C37565-AA27-4452-BABF-75DAF151A8F2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{27C37565-AA27-4452-BABF-75DAF151A8F2}.Release|Any CPU.Build.0 = Release|Any CPU
{27C37565-AA27-4452-BABF-75DAF151A8F2}.Release|x64.ActiveCfg = Release|Any CPU
{27C37565-AA27-4452-BABF-75DAF151A8F2}.Release|x64.Build.0 = Release|Any CPU
{C0DA9150-1651-457E-A700-A5CC389571A6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C0DA9150-1651-457E-A700-A5CC389571A6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C0DA9150-1651-457E-A700-A5CC389571A6}.Debug|x64.ActiveCfg = Debug|Any CPU
{C0DA9150-1651-457E-A700-A5CC389571A6}.Debug|x64.Build.0 = Debug|Any CPU
{C0DA9150-1651-457E-A700-A5CC389571A6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C0DA9150-1651-457E-A700-A5CC389571A6}.Release|Any CPU.Build.0 = Release|Any CPU
{C0DA9150-1651-457E-A700-A5CC389571A6}.Release|x64.ActiveCfg = Release|Any CPU
{C0DA9150-1651-457E-A700-A5CC389571A6}.Release|x64.Build.0 = Release|Any CPU
{D976E333-3E50-41DD-B324-603B92237FC6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D976E333-3E50-41DD-B324-603B92237FC6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D976E333-3E50-41DD-B324-603B92237FC6}.Debug|x64.ActiveCfg = Debug|Any CPU
{D976E333-3E50-41DD-B324-603B92237FC6}.Debug|x64.Build.0 = Debug|Any CPU
{D976E333-3E50-41DD-B324-603B92237FC6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D976E333-3E50-41DD-B324-603B92237FC6}.Release|Any CPU.Build.0 = Release|Any CPU
{D976E333-3E50-41DD-B324-603B92237FC6}.Release|x64.ActiveCfg = Release|Any CPU
{D976E333-3E50-41DD-B324-603B92237FC6}.Release|x64.Build.0 = Release|Any CPU
{F8B27B8D-9DEE-4950-9257-83B8CD3714FE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F8B27B8D-9DEE-4950-9257-83B8CD3714FE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F8B27B8D-9DEE-4950-9257-83B8CD3714FE}.Debug|x64.ActiveCfg = Debug|Any CPU
{F8B27B8D-9DEE-4950-9257-83B8CD3714FE}.Debug|x64.Build.0 = Debug|Any CPU
{F8B27B8D-9DEE-4950-9257-83B8CD3714FE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F8B27B8D-9DEE-4950-9257-83B8CD3714FE}.Release|Any CPU.Build.0 = Release|Any CPU
{F8B27B8D-9DEE-4950-9257-83B8CD3714FE}.Release|x64.ActiveCfg = Release|Any CPU
{F8B27B8D-9DEE-4950-9257-83B8CD3714FE}.Release|x64.Build.0 = Release|Any CPU
{33EE1C90-2A26-428C-8006-B585E07AB620}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{33EE1C90-2A26-428C-8006-B585E07AB620}.Debug|Any CPU.Build.0 = Debug|Any CPU
{33EE1C90-2A26-428C-8006-B585E07AB620}.Debug|x64.ActiveCfg = Debug|Any CPU
{33EE1C90-2A26-428C-8006-B585E07AB620}.Debug|x64.Build.0 = Debug|Any CPU
{33EE1C90-2A26-428C-8006-B585E07AB620}.Release|Any CPU.ActiveCfg = Release|Any CPU
{33EE1C90-2A26-428C-8006-B585E07AB620}.Release|Any CPU.Build.0 = Release|Any CPU
{33EE1C90-2A26-428C-8006-B585E07AB620}.Release|x64.ActiveCfg = Release|Any CPU
{33EE1C90-2A26-428C-8006-B585E07AB620}.Release|x64.Build.0 = Release|Any CPU
{0C7A9CC9-991F-4971-8C82-9C8DDE66C3EB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0C7A9CC9-991F-4971-8C82-9C8DDE66C3EB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0C7A9CC9-991F-4971-8C82-9C8DDE66C3EB}.Debug|x64.ActiveCfg = Debug|Any CPU
{0C7A9CC9-991F-4971-8C82-9C8DDE66C3EB}.Debug|x64.Build.0 = Debug|Any CPU
{0C7A9CC9-991F-4971-8C82-9C8DDE66C3EB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0C7A9CC9-991F-4971-8C82-9C8DDE66C3EB}.Release|Any CPU.Build.0 = Release|Any CPU
{0C7A9CC9-991F-4971-8C82-9C8DDE66C3EB}.Release|x64.ActiveCfg = Release|Any CPU
{0C7A9CC9-991F-4971-8C82-9C8DDE66C3EB}.Release|x64.Build.0 = Release|Any CPU
{E29D948B-BF8D-41D3-9924-01E994602D8A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E29D948B-BF8D-41D3-9924-01E994602D8A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E29D948B-BF8D-41D3-9924-01E994602D8A}.Debug|x64.ActiveCfg = Debug|Any CPU
{E29D948B-BF8D-41D3-9924-01E994602D8A}.Debug|x64.Build.0 = Debug|Any CPU
{E29D948B-BF8D-41D3-9924-01E994602D8A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E29D948B-BF8D-41D3-9924-01E994602D8A}.Release|Any CPU.Build.0 = Release|Any CPU
{E29D948B-BF8D-41D3-9924-01E994602D8A}.Release|x64.ActiveCfg = Release|Any CPU
{E29D948B-BF8D-41D3-9924-01E994602D8A}.Release|x64.Build.0 = Release|Any CPU
{27A04162-2037-41FB-AD76-E179451BB627}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{27A04162-2037-41FB-AD76-E179451BB627}.Debug|Any CPU.Build.0 = Debug|Any CPU
{27A04162-2037-41FB-AD76-E179451BB627}.Debug|x64.ActiveCfg = Debug|Any CPU
{27A04162-2037-41FB-AD76-E179451BB627}.Debug|x64.Build.0 = Debug|Any CPU
{27A04162-2037-41FB-AD76-E179451BB627}.Release|Any CPU.ActiveCfg = Release|Any CPU
{27A04162-2037-41FB-AD76-E179451BB627}.Release|Any CPU.Build.0 = Release|Any CPU
{27A04162-2037-41FB-AD76-E179451BB627}.Release|x64.ActiveCfg = Release|Any CPU
{27A04162-2037-41FB-AD76-E179451BB627}.Release|x64.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{27C37565-AA27-4452-BABF-75DAF151A8F2} = {E69E2009-ECED-4750-AA40-BFDD4FD13DAB}
{C0DA9150-1651-457E-A700-A5CC389571A6} = {E69E2009-ECED-4750-AA40-BFDD4FD13DAB}
{0C7A9CC9-991F-4971-8C82-9C8DDE66C3EB} = {E69E2009-ECED-4750-AA40-BFDD4FD13DAB}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {AD3DFD92-76F5-471C-AAAB-9762C40A363E}
EndGlobalSection
Expand Down
Loading
Loading