Skip to content

Commit

Permalink
Target multiple .Net Frameworks including UWP (#28)
Browse files Browse the repository at this point in the history
* first iteration with Net20, Net35, Net462

* try different frameworks on AppVeyor

* update nuspec

* [wip] UWP

* appveyor build different frameworks

* AppVeyor: explicitly pass SLN to 'nuget restore'

* AppVeyor: missing dashes

* AppVeyor: tests, fix file location

* AppVeyor: tests, fix file location

* bench: fix path to fixtures. Appveyor: run bench for all frameworks
  • Loading branch information
Wilhelm Berg authored Mar 3, 2017
1 parent 5b4c01e commit 31420d3
Show file tree
Hide file tree
Showing 36 changed files with 2,168 additions and 106 deletions.
1,031 changes: 1,031 additions & 0 deletions .vs/config/applicationhost.config

Large diffs are not rendered by default.

25 changes: 21 additions & 4 deletions Mapbox.VectorTile.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,26 @@
-->
</metadata>
<files>
<file src="bin\Mapbox.VectorTile.ExtensionMethods.dll" target="lib\net35\Mapbox.VectorTile.ExtensionMethods.dll"></file>
<file src="bin\Mapbox.VectorTile.Geometry.dll" target="lib\net35\Mapbox.VectorTile.Geometry.dll"></file>
<file src="bin\Mapbox.VectorTile.PbfReader.dll" target="lib\net35\Mapbox.VectorTile.PbfReader.dll"></file>
<file src="bin\Mapbox.VectorTile.VectorTileReader.dll" target="lib\net35\Mapbox.VectorTile.VectorTileReader.dll"></file>

<file src="bin\Net20Debug\v2.0\Mapbox.VectorTile.ExtensionMethods.dll" target="lib\net20\Mapbox.VectorTile.ExtensionMethods.dll"></file>
<file src="bin\Net20Debug\v2.0\Mapbox.VectorTile.Geometry.dll" target="lib\net20\Mapbox.VectorTile.Geometry.dll"></file>
<file src="bin\Net20Debug\v2.0\Mapbox.VectorTile.PbfReader.dll" target="lib\net20\Mapbox.VectorTile.PbfReader.dll"></file>
<file src="bin\Net20Debug\v2.0\Mapbox.VectorTile.VectorTileReader.dll" target="lib\net20\Mapbox.VectorTile.VectorTileReader.dll"></file>

<file src="bin\Net35Debug\v3.5\Mapbox.VectorTile.ExtensionMethods.dll" target="lib\net35\Mapbox.VectorTile.ExtensionMethods.dll"></file>
<file src="bin\Net35Debug\v3.5\Mapbox.VectorTile.Geometry.dll" target="lib\net35\Mapbox.VectorTile.Geometry.dll"></file>
<file src="bin\Net35Debug\v3.5\Mapbox.VectorTile.PbfReader.dll" target="lib\net35\Mapbox.VectorTile.PbfReader.dll"></file>
<file src="bin\Net35Debug\v3.5\Mapbox.VectorTile.VectorTileReader.dll" target="lib\net35\Mapbox.VectorTile.VectorTileReader.dll"></file>

<file src="bin\Net462Debug\v4.6.2\Mapbox.VectorTile.ExtensionMethods.dll" target="lib\net462\Mapbox.VectorTile.ExtensionMethods.dll"></file>
<file src="bin\Net462Debug\v4.6.2\Mapbox.VectorTile.Geometry.dll" target="lib\net462\Mapbox.VectorTile.Geometry.dll"></file>
<file src="bin\Net462Debug\v4.6.2\Mapbox.VectorTile.PbfReader.dll" target="lib\net462\Mapbox.VectorTile.PbfReader.dll"></file>
<file src="bin\Net462Debug\v4.6.2\Mapbox.VectorTile.VectorTileReader.dll" target="lib\net462\Mapbox.VectorTile.VectorTileReader.dll"></file>

<file src="bin\PortableDebug\portable-net45+uap10\Mapbox.VectorTile.ExtensionMethods.dll" target="lib\uap10\Mapbox.VectorTile.ExtensionMethods.dll"></file>
<file src="bin\PortableDebug\portable-net45+uap10\Mapbox.VectorTile.Geometry.dll" target="lib\uap10\Mapbox.VectorTile.Geometry.dll"></file>
<file src="bin\PortableDebug\portable-net45+uap10\Mapbox.VectorTile.PbfReader.dll" target="lib\uap10\Mapbox.VectorTile.PbfReader.dll"></file>
<file src="bin\PortableDebug\portable-net45+uap10\Mapbox.VectorTile.VectorTileReader.dll" target="lib\uap10\Mapbox.VectorTile.VectorTileReader.dll"></file>

</files>
</package>
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# vector-tile-cs

C# library for decoding [Mapbox Vector Tiles](https://www.mapbox.com/vector-tiles/) ([vector tile specification](https://github.com/mapbox/vector-tile-spec)).
C# library for decoding [`Mapbox Vector Tiles @ v2.x`](https://www.mapbox.com/vector-tiles/) ([vector tile specification](https://github.com/mapbox/vector-tile-spec)).

_**Decoding tiles created according to `Mapbox Vector Tile Specification @ v1.x` is not supported!**_

Available as nuget package: [![nuget.org](https://img.shields.io/nuget/v/Mapbox.VectorTile.svg)](https://www.nuget.org/packages/Mapbox.VectorTile)

Expand Down
87 changes: 57 additions & 30 deletions VectorTileCs.sln
Original file line number Diff line number Diff line change
Expand Up @@ -17,70 +17,97 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bench", "src\Bench\Bench.cs
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExtensionMethods", "src\ExtensionMethods\ExtensionMethods.csproj", "{55503403-0083-4ED8-B618-F8377610B225}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VerifyNetFrameworkVersion", "src\VerifyNetFrameworkVersion\VerifyNetFrameworkVersion.csproj", "{1717CD14-720F-4373-81E1-3505FCB2CF03}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Net20Debug|Any CPU = Net20Debug|Any CPU
Net35Debug|Any CPU = Net35Debug|Any CPU
Net462Debug|Any CPU = Net462Debug|Any CPU
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{4656B308-1492-4A22-A73E-06BF6AA858F2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4656B308-1492-4A22-A73E-06BF6AA858F2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4656B308-1492-4A22-A73E-06BF6AA858F2}.Debug|x64.ActiveCfg = Debug|x64
{4656B308-1492-4A22-A73E-06BF6AA858F2}.Debug|x64.Build.0 = Debug|x64
{4656B308-1492-4A22-A73E-06BF6AA858F2}.Net20Debug|Any CPU.ActiveCfg = Net20Debug|Any CPU
{4656B308-1492-4A22-A73E-06BF6AA858F2}.Net20Debug|Any CPU.Build.0 = Net20Debug|Any CPU
{4656B308-1492-4A22-A73E-06BF6AA858F2}.Net35Debug|Any CPU.ActiveCfg = Net35Debug|Any CPU
{4656B308-1492-4A22-A73E-06BF6AA858F2}.Net35Debug|Any CPU.Build.0 = Net35Debug|Any CPU
{4656B308-1492-4A22-A73E-06BF6AA858F2}.Net462Debug|Any CPU.ActiveCfg = Net462Debug|Any CPU
{4656B308-1492-4A22-A73E-06BF6AA858F2}.Net462Debug|Any CPU.Build.0 = Net462Debug|Any CPU
{4656B308-1492-4A22-A73E-06BF6AA858F2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4656B308-1492-4A22-A73E-06BF6AA858F2}.Release|Any CPU.Build.0 = Release|Any CPU
{4656B308-1492-4A22-A73E-06BF6AA858F2}.Release|x64.ActiveCfg = Release|x64
{4656B308-1492-4A22-A73E-06BF6AA858F2}.Release|x64.Build.0 = Release|x64
{4BCE42EE-C33F-4FA4-BFDD-86F3D45C647C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4BCE42EE-C33F-4FA4-BFDD-86F3D45C647C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4BCE42EE-C33F-4FA4-BFDD-86F3D45C647C}.Debug|x64.ActiveCfg = Debug|x64
{4BCE42EE-C33F-4FA4-BFDD-86F3D45C647C}.Debug|x64.Build.0 = Debug|x64
{4BCE42EE-C33F-4FA4-BFDD-86F3D45C647C}.Net20Debug|Any CPU.ActiveCfg = Net20Debug|Any CPU
{4BCE42EE-C33F-4FA4-BFDD-86F3D45C647C}.Net20Debug|Any CPU.Build.0 = Net20Debug|Any CPU
{4BCE42EE-C33F-4FA4-BFDD-86F3D45C647C}.Net35Debug|Any CPU.ActiveCfg = Net35Debug|Any CPU
{4BCE42EE-C33F-4FA4-BFDD-86F3D45C647C}.Net35Debug|Any CPU.Build.0 = Net35Debug|Any CPU
{4BCE42EE-C33F-4FA4-BFDD-86F3D45C647C}.Net462Debug|Any CPU.ActiveCfg = Net462Debug|Any CPU
{4BCE42EE-C33F-4FA4-BFDD-86F3D45C647C}.Net462Debug|Any CPU.Build.0 = Net462Debug|Any CPU
{4BCE42EE-C33F-4FA4-BFDD-86F3D45C647C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4BCE42EE-C33F-4FA4-BFDD-86F3D45C647C}.Release|Any CPU.Build.0 = Release|Any CPU
{4BCE42EE-C33F-4FA4-BFDD-86F3D45C647C}.Release|x64.ActiveCfg = Release|x64
{4BCE42EE-C33F-4FA4-BFDD-86F3D45C647C}.Release|x64.Build.0 = Release|x64
{D01BA6CB-9A2B-4AA5-95E1-085D9B569309}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D01BA6CB-9A2B-4AA5-95E1-085D9B569309}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D01BA6CB-9A2B-4AA5-95E1-085D9B569309}.Debug|x64.ActiveCfg = Debug|x64
{D01BA6CB-9A2B-4AA5-95E1-085D9B569309}.Debug|x64.Build.0 = Debug|x64
{D01BA6CB-9A2B-4AA5-95E1-085D9B569309}.Net20Debug|Any CPU.ActiveCfg = Net20Debug|Any CPU
{D01BA6CB-9A2B-4AA5-95E1-085D9B569309}.Net20Debug|Any CPU.Build.0 = Net20Debug|Any CPU
{D01BA6CB-9A2B-4AA5-95E1-085D9B569309}.Net35Debug|Any CPU.ActiveCfg = Net35Debug|Any CPU
{D01BA6CB-9A2B-4AA5-95E1-085D9B569309}.Net35Debug|Any CPU.Build.0 = Net35Debug|Any CPU
{D01BA6CB-9A2B-4AA5-95E1-085D9B569309}.Net462Debug|Any CPU.ActiveCfg = Net462Debug|Any CPU
{D01BA6CB-9A2B-4AA5-95E1-085D9B569309}.Net462Debug|Any CPU.Build.0 = Net462Debug|Any CPU
{D01BA6CB-9A2B-4AA5-95E1-085D9B569309}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D01BA6CB-9A2B-4AA5-95E1-085D9B569309}.Release|Any CPU.Build.0 = Release|Any CPU
{D01BA6CB-9A2B-4AA5-95E1-085D9B569309}.Release|x64.ActiveCfg = Release|x64
{D01BA6CB-9A2B-4AA5-95E1-085D9B569309}.Release|x64.Build.0 = Release|x64
{F0967389-29C8-4D50-B397-9BB698F13ED6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F0967389-29C8-4D50-B397-9BB698F13ED6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F0967389-29C8-4D50-B397-9BB698F13ED6}.Debug|x64.ActiveCfg = Debug|x64
{F0967389-29C8-4D50-B397-9BB698F13ED6}.Debug|x64.Build.0 = Debug|x64
{F0967389-29C8-4D50-B397-9BB698F13ED6}.Net20Debug|Any CPU.ActiveCfg = Net20Debug|Any CPU
{F0967389-29C8-4D50-B397-9BB698F13ED6}.Net20Debug|Any CPU.Build.0 = Net20Debug|Any CPU
{F0967389-29C8-4D50-B397-9BB698F13ED6}.Net35Debug|Any CPU.ActiveCfg = Net35Debug|Any CPU
{F0967389-29C8-4D50-B397-9BB698F13ED6}.Net35Debug|Any CPU.Build.0 = Net35Debug|Any CPU
{F0967389-29C8-4D50-B397-9BB698F13ED6}.Net462Debug|Any CPU.ActiveCfg = Net462Debug|Any CPU
{F0967389-29C8-4D50-B397-9BB698F13ED6}.Net462Debug|Any CPU.Build.0 = Net462Debug|Any CPU
{F0967389-29C8-4D50-B397-9BB698F13ED6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F0967389-29C8-4D50-B397-9BB698F13ED6}.Release|Any CPU.Build.0 = Release|Any CPU
{F0967389-29C8-4D50-B397-9BB698F13ED6}.Release|x64.ActiveCfg = Release|x64
{F0967389-29C8-4D50-B397-9BB698F13ED6}.Release|x64.Build.0 = Release|x64
{067456C0-086C-46A8-B37F-1405717B7BFC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Debug|x64.ActiveCfg = Debug|x64
{067456C0-086C-46A8-B37F-1405717B7BFC}.Debug|x64.Build.0 = Debug|x64
{067456C0-086C-46A8-B37F-1405717B7BFC}.Net20Debug|Any CPU.ActiveCfg = Net20Debug|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Net20Debug|Any CPU.Build.0 = Net20Debug|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Net35Debug|Any CPU.ActiveCfg = Net35Debug|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Net35Debug|Any CPU.Build.0 = Net35Debug|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Net462Debug|Any CPU.ActiveCfg = Net462Debug|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Net462Debug|Any CPU.Build.0 = Net462Debug|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Release|Any CPU.Build.0 = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Release|x64.ActiveCfg = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Release|x64.Build.0 = Release|Any CPU
{5FA56C72-348A-4B52-980C-EA8287E66422}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5FA56C72-348A-4B52-980C-EA8287E66422}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5FA56C72-348A-4B52-980C-EA8287E66422}.Debug|x64.ActiveCfg = Debug|Any CPU
{5FA56C72-348A-4B52-980C-EA8287E66422}.Debug|x64.Build.0 = Debug|Any CPU
{5FA56C72-348A-4B52-980C-EA8287E66422}.Net20Debug|Any CPU.ActiveCfg = Net20Debug|Any CPU
{5FA56C72-348A-4B52-980C-EA8287E66422}.Net20Debug|Any CPU.Build.0 = Net20Debug|Any CPU
{5FA56C72-348A-4B52-980C-EA8287E66422}.Net35Debug|Any CPU.ActiveCfg = Net35Debug|Any CPU
{5FA56C72-348A-4B52-980C-EA8287E66422}.Net35Debug|Any CPU.Build.0 = Net35Debug|Any CPU
{5FA56C72-348A-4B52-980C-EA8287E66422}.Net462Debug|Any CPU.ActiveCfg = Net462Debug|Any CPU
{5FA56C72-348A-4B52-980C-EA8287E66422}.Net462Debug|Any CPU.Build.0 = Net462Debug|Any CPU
{5FA56C72-348A-4B52-980C-EA8287E66422}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5FA56C72-348A-4B52-980C-EA8287E66422}.Release|Any CPU.Build.0 = Release|Any CPU
{5FA56C72-348A-4B52-980C-EA8287E66422}.Release|x64.ActiveCfg = Release|Any CPU
{5FA56C72-348A-4B52-980C-EA8287E66422}.Release|x64.Build.0 = Release|Any CPU
{55503403-0083-4ED8-B618-F8377610B225}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{55503403-0083-4ED8-B618-F8377610B225}.Debug|Any CPU.Build.0 = Debug|Any CPU
{55503403-0083-4ED8-B618-F8377610B225}.Debug|x64.ActiveCfg = Debug|x64
{55503403-0083-4ED8-B618-F8377610B225}.Debug|x64.Build.0 = Debug|x64
{55503403-0083-4ED8-B618-F8377610B225}.Net20Debug|Any CPU.ActiveCfg = Net20Debug|Any CPU
{55503403-0083-4ED8-B618-F8377610B225}.Net20Debug|Any CPU.Build.0 = Net20Debug|Any CPU
{55503403-0083-4ED8-B618-F8377610B225}.Net35Debug|Any CPU.ActiveCfg = Net35Debug|Any CPU
{55503403-0083-4ED8-B618-F8377610B225}.Net35Debug|Any CPU.Build.0 = Net35Debug|Any CPU
{55503403-0083-4ED8-B618-F8377610B225}.Net462Debug|Any CPU.ActiveCfg = Net462Debug|Any CPU
{55503403-0083-4ED8-B618-F8377610B225}.Net462Debug|Any CPU.Build.0 = Net462Debug|Any CPU
{55503403-0083-4ED8-B618-F8377610B225}.Release|Any CPU.ActiveCfg = Release|Any CPU
{55503403-0083-4ED8-B618-F8377610B225}.Release|Any CPU.Build.0 = Release|Any CPU
{55503403-0083-4ED8-B618-F8377610B225}.Release|x64.ActiveCfg = Release|x64
{55503403-0083-4ED8-B618-F8377610B225}.Release|x64.Build.0 = Release|x64
{1717CD14-720F-4373-81E1-3505FCB2CF03}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1717CD14-720F-4373-81E1-3505FCB2CF03}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1717CD14-720F-4373-81E1-3505FCB2CF03}.Net20Debug|Any CPU.ActiveCfg = Net20Debug|Any CPU
{1717CD14-720F-4373-81E1-3505FCB2CF03}.Net20Debug|Any CPU.Build.0 = Net20Debug|Any CPU
{1717CD14-720F-4373-81E1-3505FCB2CF03}.Net35Debug|Any CPU.ActiveCfg = Net35Debug|Any CPU
{1717CD14-720F-4373-81E1-3505FCB2CF03}.Net35Debug|Any CPU.Build.0 = Net35Debug|Any CPU
{1717CD14-720F-4373-81E1-3505FCB2CF03}.Net462Debug|Any CPU.ActiveCfg = Net462Debug|Any CPU
{1717CD14-720F-4373-81E1-3505FCB2CF03}.Net462Debug|Any CPU.Build.0 = Net462Debug|Any CPU
{1717CD14-720F-4373-81E1-3505FCB2CF03}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1717CD14-720F-4373-81E1-3505FCB2CF03}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
94 changes: 94 additions & 0 deletions VectorTileCsPortable.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PbfReaderPortable", "src\PbfReader\PbfReaderPortable.csproj", "{E3ED95C9-42D9-4480-90E5-87F4FE60B8E2}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GeometryPortable", "src\Geometry\GeometryPortable.csproj", "{B6044F02-10A3-4637-962E-8B2F882DCD59}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VectorTileReaderPortable", "src\VectorTileReader\VectorTileReaderPortable.csproj", "{88F3D60F-3C95-4E14-9731-622306630F4B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExtensionMethodsPortable", "src\ExtensionMethods\ExtensionMethodsPortable.csproj", "{826340DD-E375-4D1B-878C-FF67EAC7E0B7}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|ARM = Debug|ARM
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|ARM = Release|ARM
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{E3ED95C9-42D9-4480-90E5-87F4FE60B8E2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E3ED95C9-42D9-4480-90E5-87F4FE60B8E2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E3ED95C9-42D9-4480-90E5-87F4FE60B8E2}.Debug|ARM.ActiveCfg = Debug|Any CPU
{E3ED95C9-42D9-4480-90E5-87F4FE60B8E2}.Debug|ARM.Build.0 = Debug|Any CPU
{E3ED95C9-42D9-4480-90E5-87F4FE60B8E2}.Debug|x64.ActiveCfg = Debug|Any CPU
{E3ED95C9-42D9-4480-90E5-87F4FE60B8E2}.Debug|x64.Build.0 = Debug|Any CPU
{E3ED95C9-42D9-4480-90E5-87F4FE60B8E2}.Debug|x86.ActiveCfg = Debug|Any CPU
{E3ED95C9-42D9-4480-90E5-87F4FE60B8E2}.Debug|x86.Build.0 = Debug|Any CPU
{E3ED95C9-42D9-4480-90E5-87F4FE60B8E2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E3ED95C9-42D9-4480-90E5-87F4FE60B8E2}.Release|Any CPU.Build.0 = Release|Any CPU
{E3ED95C9-42D9-4480-90E5-87F4FE60B8E2}.Release|ARM.ActiveCfg = Release|Any CPU
{E3ED95C9-42D9-4480-90E5-87F4FE60B8E2}.Release|ARM.Build.0 = Release|Any CPU
{E3ED95C9-42D9-4480-90E5-87F4FE60B8E2}.Release|x64.ActiveCfg = Release|Any CPU
{E3ED95C9-42D9-4480-90E5-87F4FE60B8E2}.Release|x64.Build.0 = Release|Any CPU
{E3ED95C9-42D9-4480-90E5-87F4FE60B8E2}.Release|x86.ActiveCfg = Release|Any CPU
{E3ED95C9-42D9-4480-90E5-87F4FE60B8E2}.Release|x86.Build.0 = Release|Any CPU
{B6044F02-10A3-4637-962E-8B2F882DCD59}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B6044F02-10A3-4637-962E-8B2F882DCD59}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B6044F02-10A3-4637-962E-8B2F882DCD59}.Debug|ARM.ActiveCfg = Debug|Any CPU
{B6044F02-10A3-4637-962E-8B2F882DCD59}.Debug|ARM.Build.0 = Debug|Any CPU
{B6044F02-10A3-4637-962E-8B2F882DCD59}.Debug|x64.ActiveCfg = Debug|Any CPU
{B6044F02-10A3-4637-962E-8B2F882DCD59}.Debug|x64.Build.0 = Debug|Any CPU
{B6044F02-10A3-4637-962E-8B2F882DCD59}.Debug|x86.ActiveCfg = Debug|Any CPU
{B6044F02-10A3-4637-962E-8B2F882DCD59}.Debug|x86.Build.0 = Debug|Any CPU
{B6044F02-10A3-4637-962E-8B2F882DCD59}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B6044F02-10A3-4637-962E-8B2F882DCD59}.Release|Any CPU.Build.0 = Release|Any CPU
{B6044F02-10A3-4637-962E-8B2F882DCD59}.Release|ARM.ActiveCfg = Release|Any CPU
{B6044F02-10A3-4637-962E-8B2F882DCD59}.Release|ARM.Build.0 = Release|Any CPU
{B6044F02-10A3-4637-962E-8B2F882DCD59}.Release|x64.ActiveCfg = Release|Any CPU
{B6044F02-10A3-4637-962E-8B2F882DCD59}.Release|x64.Build.0 = Release|Any CPU
{B6044F02-10A3-4637-962E-8B2F882DCD59}.Release|x86.ActiveCfg = Release|Any CPU
{B6044F02-10A3-4637-962E-8B2F882DCD59}.Release|x86.Build.0 = Release|Any CPU
{88F3D60F-3C95-4E14-9731-622306630F4B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{88F3D60F-3C95-4E14-9731-622306630F4B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{88F3D60F-3C95-4E14-9731-622306630F4B}.Debug|ARM.ActiveCfg = Debug|Any CPU
{88F3D60F-3C95-4E14-9731-622306630F4B}.Debug|ARM.Build.0 = Debug|Any CPU
{88F3D60F-3C95-4E14-9731-622306630F4B}.Debug|x64.ActiveCfg = Debug|Any CPU
{88F3D60F-3C95-4E14-9731-622306630F4B}.Debug|x64.Build.0 = Debug|Any CPU
{88F3D60F-3C95-4E14-9731-622306630F4B}.Debug|x86.ActiveCfg = Debug|Any CPU
{88F3D60F-3C95-4E14-9731-622306630F4B}.Debug|x86.Build.0 = Debug|Any CPU
{88F3D60F-3C95-4E14-9731-622306630F4B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{88F3D60F-3C95-4E14-9731-622306630F4B}.Release|Any CPU.Build.0 = Release|Any CPU
{88F3D60F-3C95-4E14-9731-622306630F4B}.Release|ARM.ActiveCfg = Release|Any CPU
{88F3D60F-3C95-4E14-9731-622306630F4B}.Release|ARM.Build.0 = Release|Any CPU
{88F3D60F-3C95-4E14-9731-622306630F4B}.Release|x64.ActiveCfg = Release|Any CPU
{88F3D60F-3C95-4E14-9731-622306630F4B}.Release|x64.Build.0 = Release|Any CPU
{88F3D60F-3C95-4E14-9731-622306630F4B}.Release|x86.ActiveCfg = Release|Any CPU
{88F3D60F-3C95-4E14-9731-622306630F4B}.Release|x86.Build.0 = Release|Any CPU
{826340DD-E375-4D1B-878C-FF67EAC7E0B7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{826340DD-E375-4D1B-878C-FF67EAC7E0B7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{826340DD-E375-4D1B-878C-FF67EAC7E0B7}.Debug|ARM.ActiveCfg = Debug|Any CPU
{826340DD-E375-4D1B-878C-FF67EAC7E0B7}.Debug|ARM.Build.0 = Debug|Any CPU
{826340DD-E375-4D1B-878C-FF67EAC7E0B7}.Debug|x64.ActiveCfg = Debug|Any CPU
{826340DD-E375-4D1B-878C-FF67EAC7E0B7}.Debug|x64.Build.0 = Debug|Any CPU
{826340DD-E375-4D1B-878C-FF67EAC7E0B7}.Debug|x86.ActiveCfg = Debug|Any CPU
{826340DD-E375-4D1B-878C-FF67EAC7E0B7}.Debug|x86.Build.0 = Debug|Any CPU
{826340DD-E375-4D1B-878C-FF67EAC7E0B7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{826340DD-E375-4D1B-878C-FF67EAC7E0B7}.Release|Any CPU.Build.0 = Release|Any CPU
{826340DD-E375-4D1B-878C-FF67EAC7E0B7}.Release|ARM.ActiveCfg = Release|Any CPU
{826340DD-E375-4D1B-878C-FF67EAC7E0B7}.Release|ARM.Build.0 = Release|Any CPU
{826340DD-E375-4D1B-878C-FF67EAC7E0B7}.Release|x64.ActiveCfg = Release|Any CPU
{826340DD-E375-4D1B-878C-FF67EAC7E0B7}.Release|x64.Build.0 = Release|Any CPU
{826340DD-E375-4D1B-878C-FF67EAC7E0B7}.Release|x86.ActiveCfg = Release|Any CPU
{826340DD-E375-4D1B-878C-FF67EAC7E0B7}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
Loading

0 comments on commit 31420d3

Please sign in to comment.