Skip to content

Commit

Permalink
Changed build configuartion so any cpu builds properly as x86.
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesbetros committed Apr 14, 2016
1 parent bba256f commit d6bc042
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 7 deletions.
11 changes: 7 additions & 4 deletions Users/Sentinel/SentinelKernel/Kernel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,12 @@ protected override void BeforeRun()

protected override void Run()
{
string[] a = { "a", "b" };
string b = a[0];
byte[] a = { 0x01, 0x02 };
char[] b = { 'a', 'b' };
string[] c = { "a", "b" };
byte a1 = a[0];
char b1 = b[0];
string c1 = c[0];
}
}
}

}
3 changes: 3 additions & 0 deletions source/Cosmos.Debug.VSDebugEngine/AD7.Impl/AD7Property.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,10 @@ public void ReadDataArray<T>(ref DEBUG_PROPERTY_INFO propertyInfo, string typeAs
{
byte[] xData;

// Get handle
xData = mProcess.mDbgConnector.GetStackData(OFFSET, 4);
// Get actual pointer
xData = mProcess.mDbgConnector.GetMemoryData(BitConverter.ToUInt32(xData, 0), 4);
if (xData == null)
{
propertyInfo.bstrValue = String.Format("Error! Stack data received was null!");
Expand Down
38 changes: 35 additions & 3 deletions source/Cosmos.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.24720.0
VisualStudioVersion = 14.0.25123.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build", "Build", "{D95021E1-A2C9-4829-819E-ED433AF13162}"
EndProject
Expand Down Expand Up @@ -476,8 +476,10 @@ Global
{73CF15C1-0AB6-4B3A-8142-D326ADA72970}.Release|x86.ActiveCfg = Debug|x86
{73CF15C1-0AB6-4B3A-8142-D326ADA72970}.Release|x86.Build.0 = Debug|x86
{5B2C0369-7A84-4113-892C-F71B50E1DA12}.Debug|Any CPU.ActiveCfg = Debug|x86
{5B2C0369-7A84-4113-892C-F71B50E1DA12}.Debug|Any CPU.Build.0 = Debug|x86
{5B2C0369-7A84-4113-892C-F71B50E1DA12}.Debug|x64.ActiveCfg = Debug|x86
{5B2C0369-7A84-4113-892C-F71B50E1DA12}.Debug|x86.ActiveCfg = Debug|x86
{5B2C0369-7A84-4113-892C-F71B50E1DA12}.Debug|x86.Build.0 = Debug|x86
{5B2C0369-7A84-4113-892C-F71B50E1DA12}.Release|Any CPU.ActiveCfg = Debug|x86
{5B2C0369-7A84-4113-892C-F71B50E1DA12}.Release|x64.ActiveCfg = Debug|x86
{5B2C0369-7A84-4113-892C-F71B50E1DA12}.Release|x86.ActiveCfg = Debug|x86
Expand Down Expand Up @@ -518,15 +520,18 @@ Global
{9C96A7B5-19E5-4923-9569-DB9454E69C82}.Release|x86.ActiveCfg = Debug|x86
{9C96A7B5-19E5-4923-9569-DB9454E69C82}.Release|x86.Build.0 = Debug|x86
{EA63FDF9-057F-4E67-9060-74F4E7A09AE0}.Debug|Any CPU.ActiveCfg = Debug|x86
{EA63FDF9-057F-4E67-9060-74F4E7A09AE0}.Debug|Any CPU.Build.0 = Debug|x86
{EA63FDF9-057F-4E67-9060-74F4E7A09AE0}.Debug|x64.ActiveCfg = Debug|x86
{EA63FDF9-057F-4E67-9060-74F4E7A09AE0}.Debug|x86.ActiveCfg = Debug|x86
{EA63FDF9-057F-4E67-9060-74F4E7A09AE0}.Debug|x86.Build.0 = Debug|x86
{EA63FDF9-057F-4E67-9060-74F4E7A09AE0}.Release|Any CPU.ActiveCfg = Debug|x86
{EA63FDF9-057F-4E67-9060-74F4E7A09AE0}.Release|x64.ActiveCfg = Debug|x86
{EA63FDF9-057F-4E67-9060-74F4E7A09AE0}.Release|x86.ActiveCfg = Debug|x86
{F708C866-1C9B-4579-8C28-0728ECCFC1ED}.Debug|Any CPU.ActiveCfg = Debug|x86
{F708C866-1C9B-4579-8C28-0728ECCFC1ED}.Debug|Any CPU.Build.0 = Debug|x86
{F708C866-1C9B-4579-8C28-0728ECCFC1ED}.Debug|x64.ActiveCfg = Debug|x86
{F708C866-1C9B-4579-8C28-0728ECCFC1ED}.Debug|x86.ActiveCfg = Debug|x86
{F708C866-1C9B-4579-8C28-0728ECCFC1ED}.Debug|x86.Build.0 = Debug|x86
{F708C866-1C9B-4579-8C28-0728ECCFC1ED}.Release|Any CPU.ActiveCfg = Debug|x86
{F708C866-1C9B-4579-8C28-0728ECCFC1ED}.Release|x64.ActiveCfg = Debug|x86
{F708C866-1C9B-4579-8C28-0728ECCFC1ED}.Release|x86.ActiveCfg = Debug|x86
Expand Down Expand Up @@ -591,6 +596,7 @@ Global
{D4BA64B3-D7F6-4A3A-AF1D-74E41B49D865}.Release|x86.ActiveCfg = Debug|x86
{D4BA64B3-D7F6-4A3A-AF1D-74E41B49D865}.Release|x86.Build.0 = Debug|x86
{2A59517C-356E-4B55-B155-50335BF482FB}.Debug|Any CPU.ActiveCfg = Debug|x86
{2A59517C-356E-4B55-B155-50335BF482FB}.Debug|Any CPU.Build.0 = Debug|x86
{2A59517C-356E-4B55-B155-50335BF482FB}.Debug|x64.ActiveCfg = Debug|x86
{2A59517C-356E-4B55-B155-50335BF482FB}.Debug|x86.ActiveCfg = Debug|x86
{2A59517C-356E-4B55-B155-50335BF482FB}.Debug|x86.Build.0 = Debug|x86
Expand Down Expand Up @@ -700,7 +706,6 @@ Global
{E978986A-8160-4979-919E-F099A43EF146}.Release|x64.ActiveCfg = Debug|x86
{E978986A-8160-4979-919E-F099A43EF146}.Release|x86.ActiveCfg = Debug|x86
{4BD6A15B-DFD3-4A63-8097-88D2F79ED590}.Debug|Any CPU.ActiveCfg = Debug|x86
{4BD6A15B-DFD3-4A63-8097-88D2F79ED590}.Debug|Any CPU.Build.0 = Debug|x86
{4BD6A15B-DFD3-4A63-8097-88D2F79ED590}.Debug|x64.ActiveCfg = Debug|x86
{4BD6A15B-DFD3-4A63-8097-88D2F79ED590}.Debug|x64.Build.0 = Debug|x86
{4BD6A15B-DFD3-4A63-8097-88D2F79ED590}.Debug|x86.ActiveCfg = Debug|x86
Expand Down Expand Up @@ -741,12 +746,15 @@ Global
{57045FE8-B0FE-4FC1-810F-7C3914AEF1DE}.Release|x86.ActiveCfg = Debug|x86
{57045FE8-B0FE-4FC1-810F-7C3914AEF1DE}.Release|x86.Build.0 = Debug|x86
{73D29A51-072A-4310-B3D1-539AA92094AA}.Debug|Any CPU.ActiveCfg = Debug|x86
{73D29A51-072A-4310-B3D1-539AA92094AA}.Debug|Any CPU.Build.0 = Debug|x86
{73D29A51-072A-4310-B3D1-539AA92094AA}.Debug|x64.ActiveCfg = Debug|x86
{73D29A51-072A-4310-B3D1-539AA92094AA}.Debug|x86.ActiveCfg = Debug|x86
{73D29A51-072A-4310-B3D1-539AA92094AA}.Debug|x86.Build.0 = Debug|x86
{73D29A51-072A-4310-B3D1-539AA92094AA}.Release|Any CPU.ActiveCfg = Debug|x86
{73D29A51-072A-4310-B3D1-539AA92094AA}.Release|x64.ActiveCfg = Debug|x86
{73D29A51-072A-4310-B3D1-539AA92094AA}.Release|x86.ActiveCfg = Debug|x86
{220BFCDD-0747-4A3D-B022-51D4CFB373BE}.Debug|Any CPU.ActiveCfg = Debug|x86
{220BFCDD-0747-4A3D-B022-51D4CFB373BE}.Debug|Any CPU.Build.0 = Debug|x86
{220BFCDD-0747-4A3D-B022-51D4CFB373BE}.Debug|x64.ActiveCfg = Debug|x86
{220BFCDD-0747-4A3D-B022-51D4CFB373BE}.Debug|x86.ActiveCfg = Debug|x86
{220BFCDD-0747-4A3D-B022-51D4CFB373BE}.Debug|x86.Build.0 = Debug|x86
Expand All @@ -766,8 +774,10 @@ Global
{BDC011BE-6041-4A58-A6E7-0F592E78CB27}.Release|x86.ActiveCfg = Debug|x86
{BDC011BE-6041-4A58-A6E7-0F592E78CB27}.Release|x86.Build.0 = Debug|x86
{7E059184-F2C5-4CC6-B86D-FA12590C3C40}.Debug|Any CPU.ActiveCfg = Debug|x86
{7E059184-F2C5-4CC6-B86D-FA12590C3C40}.Debug|Any CPU.Build.0 = Debug|x86
{7E059184-F2C5-4CC6-B86D-FA12590C3C40}.Debug|x64.ActiveCfg = Debug|x86
{7E059184-F2C5-4CC6-B86D-FA12590C3C40}.Debug|x86.ActiveCfg = Debug|x86
{7E059184-F2C5-4CC6-B86D-FA12590C3C40}.Debug|x86.Build.0 = Debug|x86
{7E059184-F2C5-4CC6-B86D-FA12590C3C40}.Release|Any CPU.ActiveCfg = Debug|x86
{7E059184-F2C5-4CC6-B86D-FA12590C3C40}.Release|x64.ActiveCfg = Debug|x86
{7E059184-F2C5-4CC6-B86D-FA12590C3C40}.Release|x86.ActiveCfg = Debug|x86
Expand All @@ -790,24 +800,26 @@ Global
{AB869246-4887-4117-851D-766EB9FF1E29}.Release|x64.ActiveCfg = Debug|x86
{AB869246-4887-4117-851D-766EB9FF1E29}.Release|x86.ActiveCfg = Debug|x86
{BD054B3B-D183-4C19-BBD3-E853B736818A}.Debug|Any CPU.ActiveCfg = Debug|x86
{BD054B3B-D183-4C19-BBD3-E853B736818A}.Debug|Any CPU.Build.0 = Debug|x86
{BD054B3B-D183-4C19-BBD3-E853B736818A}.Debug|x64.ActiveCfg = Debug|x86
{BD054B3B-D183-4C19-BBD3-E853B736818A}.Debug|x86.ActiveCfg = Debug|x86
{BD054B3B-D183-4C19-BBD3-E853B736818A}.Debug|x86.Build.0 = Debug|x86
{BD054B3B-D183-4C19-BBD3-E853B736818A}.Release|Any CPU.ActiveCfg = Debug|x86
{BD054B3B-D183-4C19-BBD3-E853B736818A}.Release|x64.ActiveCfg = Debug|x86
{BD054B3B-D183-4C19-BBD3-E853B736818A}.Release|x86.ActiveCfg = Debug|x86
{99A78D26-0277-4882-97BE-F5A0FA90CBCF}.Debug|Any CPU.ActiveCfg = Debug|x86
{99A78D26-0277-4882-97BE-F5A0FA90CBCF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{99A78D26-0277-4882-97BE-F5A0FA90CBCF}.Debug|x64.ActiveCfg = Debug|x86
{99A78D26-0277-4882-97BE-F5A0FA90CBCF}.Debug|x64.Build.0 = Debug|x64
{99A78D26-0277-4882-97BE-F5A0FA90CBCF}.Debug|x86.ActiveCfg = Debug|x86
{99A78D26-0277-4882-97BE-F5A0FA90CBCF}.Debug|x86.Build.0 = Debug|x86
{99A78D26-0277-4882-97BE-F5A0FA90CBCF}.Release|Any CPU.ActiveCfg = Debug|x86
{99A78D26-0277-4882-97BE-F5A0FA90CBCF}.Release|Any CPU.Build.0 = Release|Any CPU
{99A78D26-0277-4882-97BE-F5A0FA90CBCF}.Release|x64.ActiveCfg = Debug|x86
{99A78D26-0277-4882-97BE-F5A0FA90CBCF}.Release|x64.Build.0 = Release|x64
{99A78D26-0277-4882-97BE-F5A0FA90CBCF}.Release|x86.ActiveCfg = Debug|x86
{99A78D26-0277-4882-97BE-F5A0FA90CBCF}.Release|x86.Build.0 = Release|x86
{0D2DCE1C-2A34-4CFF-9A33-E9D9B8518D50}.Debug|Any CPU.ActiveCfg = Debug|x86
{0D2DCE1C-2A34-4CFF-9A33-E9D9B8518D50}.Debug|Any CPU.Build.0 = Debug|x86
{0D2DCE1C-2A34-4CFF-9A33-E9D9B8518D50}.Debug|x64.ActiveCfg = Debug|x86
{0D2DCE1C-2A34-4CFF-9A33-E9D9B8518D50}.Debug|x86.ActiveCfg = Debug|x86
{0D2DCE1C-2A34-4CFF-9A33-E9D9B8518D50}.Debug|x86.Build.0 = Debug|x86
Expand Down Expand Up @@ -863,8 +875,10 @@ Global
{839EDC9D-6D2E-4892-A7F0-17861BA9FA0C}.Release|x86.ActiveCfg = Debug|x86
{839EDC9D-6D2E-4892-A7F0-17861BA9FA0C}.Release|x86.Build.0 = Debug|x86
{431643CB-006C-49EF-8E0F-1540F994C936}.Debug|Any CPU.ActiveCfg = Debug|x86
{431643CB-006C-49EF-8E0F-1540F994C936}.Debug|Any CPU.Build.0 = Debug|x86
{431643CB-006C-49EF-8E0F-1540F994C936}.Debug|x64.ActiveCfg = Debug|x86
{431643CB-006C-49EF-8E0F-1540F994C936}.Debug|x86.ActiveCfg = Debug|x86
{431643CB-006C-49EF-8E0F-1540F994C936}.Debug|x86.Build.0 = Debug|x86
{431643CB-006C-49EF-8E0F-1540F994C936}.Release|Any CPU.ActiveCfg = Debug|x86
{431643CB-006C-49EF-8E0F-1540F994C936}.Release|x64.ActiveCfg = Debug|x86
{431643CB-006C-49EF-8E0F-1540F994C936}.Release|x86.ActiveCfg = Debug|x86
Expand All @@ -881,8 +895,10 @@ Global
{21915A7E-CC84-4836-8B87-857B6149D496}.Release|x86.ActiveCfg = Debug|x86
{21915A7E-CC84-4836-8B87-857B6149D496}.Release|x86.Build.0 = Debug|x86
{78AC2B12-8185-4033-80F0-DA5BF874BE5E}.Debug|Any CPU.ActiveCfg = Debug|x86
{78AC2B12-8185-4033-80F0-DA5BF874BE5E}.Debug|Any CPU.Build.0 = Debug|x86
{78AC2B12-8185-4033-80F0-DA5BF874BE5E}.Debug|x64.ActiveCfg = Debug|x86
{78AC2B12-8185-4033-80F0-DA5BF874BE5E}.Debug|x86.ActiveCfg = Debug|x86
{78AC2B12-8185-4033-80F0-DA5BF874BE5E}.Debug|x86.Build.0 = Debug|x86
{78AC2B12-8185-4033-80F0-DA5BF874BE5E}.Release|Any CPU.ActiveCfg = Debug|x86
{78AC2B12-8185-4033-80F0-DA5BF874BE5E}.Release|x64.ActiveCfg = Debug|x86
{78AC2B12-8185-4033-80F0-DA5BF874BE5E}.Release|x86.ActiveCfg = Debug|x86
Expand Down Expand Up @@ -911,8 +927,10 @@ Global
{F8889473-5866-4913-86AC-8072A1A2558C}.Release|x86.ActiveCfg = Debug|x86
{F8889473-5866-4913-86AC-8072A1A2558C}.Release|x86.Build.0 = Debug|x86
{444098BC-8F72-4030-A8C0-118D2DD93EB8}.Debug|Any CPU.ActiveCfg = Debug|x86
{444098BC-8F72-4030-A8C0-118D2DD93EB8}.Debug|Any CPU.Build.0 = Debug|x86
{444098BC-8F72-4030-A8C0-118D2DD93EB8}.Debug|x64.ActiveCfg = Debug|x86
{444098BC-8F72-4030-A8C0-118D2DD93EB8}.Debug|x86.ActiveCfg = Debug|x86
{444098BC-8F72-4030-A8C0-118D2DD93EB8}.Debug|x86.Build.0 = Debug|x86
{444098BC-8F72-4030-A8C0-118D2DD93EB8}.Release|Any CPU.ActiveCfg = Debug|x86
{444098BC-8F72-4030-A8C0-118D2DD93EB8}.Release|x64.ActiveCfg = Debug|x86
{444098BC-8F72-4030-A8C0-118D2DD93EB8}.Release|x86.ActiveCfg = Debug|x86
Expand All @@ -929,8 +947,10 @@ Global
{3E28CFD9-25D4-4EBB-86E3-4A4A8A8936FE}.Release|x86.ActiveCfg = Debug|x86
{3E28CFD9-25D4-4EBB-86E3-4A4A8A8936FE}.Release|x86.Build.0 = Debug|x86
{41EFAEB7-7D53-4F6B-AE63-CFDA84A22A38}.Debug|Any CPU.ActiveCfg = Debug|x86
{41EFAEB7-7D53-4F6B-AE63-CFDA84A22A38}.Debug|Any CPU.Build.0 = Debug|x86
{41EFAEB7-7D53-4F6B-AE63-CFDA84A22A38}.Debug|x64.ActiveCfg = Debug|x86
{41EFAEB7-7D53-4F6B-AE63-CFDA84A22A38}.Debug|x86.ActiveCfg = Debug|x86
{41EFAEB7-7D53-4F6B-AE63-CFDA84A22A38}.Debug|x86.Build.0 = Debug|x86
{41EFAEB7-7D53-4F6B-AE63-CFDA84A22A38}.Release|Any CPU.ActiveCfg = Debug|x86
{41EFAEB7-7D53-4F6B-AE63-CFDA84A22A38}.Release|x64.ActiveCfg = Debug|x86
{41EFAEB7-7D53-4F6B-AE63-CFDA84A22A38}.Release|x86.ActiveCfg = Debug|x86
Expand All @@ -947,8 +967,10 @@ Global
{31E3F8E2-7CC0-426C-ACCB-77B3319AF5D3}.Release|x86.ActiveCfg = Debug|x86
{31E3F8E2-7CC0-426C-ACCB-77B3319AF5D3}.Release|x86.Build.0 = Debug|x86
{ACD31367-B823-44E2-BABB-1605F26DB107}.Debug|Any CPU.ActiveCfg = Debug|x86
{ACD31367-B823-44E2-BABB-1605F26DB107}.Debug|Any CPU.Build.0 = Debug|x86
{ACD31367-B823-44E2-BABB-1605F26DB107}.Debug|x64.ActiveCfg = Debug|x86
{ACD31367-B823-44E2-BABB-1605F26DB107}.Debug|x86.ActiveCfg = Debug|x86
{ACD31367-B823-44E2-BABB-1605F26DB107}.Debug|x86.Build.0 = Debug|x86
{ACD31367-B823-44E2-BABB-1605F26DB107}.Release|Any CPU.ActiveCfg = Debug|x86
{ACD31367-B823-44E2-BABB-1605F26DB107}.Release|x64.ActiveCfg = Debug|x86
{ACD31367-B823-44E2-BABB-1605F26DB107}.Release|x86.ActiveCfg = Debug|x86
Expand All @@ -965,8 +987,10 @@ Global
{A0893493-D4F0-4B9F-9826-86319E143D86}.Release|x86.ActiveCfg = Debug|x86
{A0893493-D4F0-4B9F-9826-86319E143D86}.Release|x86.Build.0 = Debug|x86
{C006CC79-7FFD-45F1-AD8C-57AC879CC29F}.Debug|Any CPU.ActiveCfg = Debug|x86
{C006CC79-7FFD-45F1-AD8C-57AC879CC29F}.Debug|Any CPU.Build.0 = Debug|x86
{C006CC79-7FFD-45F1-AD8C-57AC879CC29F}.Debug|x64.ActiveCfg = Debug|x86
{C006CC79-7FFD-45F1-AD8C-57AC879CC29F}.Debug|x86.ActiveCfg = Debug|x86
{C006CC79-7FFD-45F1-AD8C-57AC879CC29F}.Debug|x86.Build.0 = Debug|x86
{C006CC79-7FFD-45F1-AD8C-57AC879CC29F}.Release|Any CPU.ActiveCfg = Debug|x86
{C006CC79-7FFD-45F1-AD8C-57AC879CC29F}.Release|x64.ActiveCfg = Debug|x86
{C006CC79-7FFD-45F1-AD8C-57AC879CC29F}.Release|x86.ActiveCfg = Debug|x86
Expand All @@ -983,19 +1007,23 @@ Global
{9DF5C0A9-B91C-4647-B939-E47513743A0C}.Release|x86.ActiveCfg = Debug|x86
{9DF5C0A9-B91C-4647-B939-E47513743A0C}.Release|x86.Build.0 = Debug|x86
{85E13410-C85A-4B0C-BEE5-F9A120ECC94E}.Debug|Any CPU.ActiveCfg = Debug|x86
{85E13410-C85A-4B0C-BEE5-F9A120ECC94E}.Debug|Any CPU.Build.0 = Debug|x86
{85E13410-C85A-4B0C-BEE5-F9A120ECC94E}.Debug|x64.ActiveCfg = Debug|x86
{85E13410-C85A-4B0C-BEE5-F9A120ECC94E}.Debug|x86.ActiveCfg = Debug|x86
{85E13410-C85A-4B0C-BEE5-F9A120ECC94E}.Debug|x86.Build.0 = Debug|x86
{85E13410-C85A-4B0C-BEE5-F9A120ECC94E}.Release|Any CPU.ActiveCfg = Debug|x86
{85E13410-C85A-4B0C-BEE5-F9A120ECC94E}.Release|x64.ActiveCfg = Debug|x86
{85E13410-C85A-4B0C-BEE5-F9A120ECC94E}.Release|x86.ActiveCfg = Debug|x86
{AAA0328F-60E1-442D-B949-A13DD34BD0AD}.Debug|Any CPU.ActiveCfg = Debug|x86
{AAA0328F-60E1-442D-B949-A13DD34BD0AD}.Debug|Any CPU.Build.0 = Debug|x86
{AAA0328F-60E1-442D-B949-A13DD34BD0AD}.Debug|x64.ActiveCfg = Debug|x86
{AAA0328F-60E1-442D-B949-A13DD34BD0AD}.Debug|x86.ActiveCfg = Debug|x86
{AAA0328F-60E1-442D-B949-A13DD34BD0AD}.Debug|x86.Build.0 = Debug|x86
{AAA0328F-60E1-442D-B949-A13DD34BD0AD}.Release|Any CPU.ActiveCfg = Debug|x86
{AAA0328F-60E1-442D-B949-A13DD34BD0AD}.Release|x64.ActiveCfg = Debug|x86
{AAA0328F-60E1-442D-B949-A13DD34BD0AD}.Release|x86.ActiveCfg = Debug|x86
{6BAD532A-7DD4-4BAC-834A-10BA6497E19D}.Debug|Any CPU.ActiveCfg = Debug|x86
{6BAD532A-7DD4-4BAC-834A-10BA6497E19D}.Debug|Any CPU.Build.0 = Debug|x86
{6BAD532A-7DD4-4BAC-834A-10BA6497E19D}.Debug|x64.ActiveCfg = Debug|x86
{6BAD532A-7DD4-4BAC-834A-10BA6497E19D}.Debug|x86.ActiveCfg = Debug|x86
{6BAD532A-7DD4-4BAC-834A-10BA6497E19D}.Debug|x86.Build.0 = Debug|x86
Expand All @@ -1015,8 +1043,10 @@ Global
{85B11F78-39BC-4CFC-9033-FC84AB14CD03}.Release|x86.ActiveCfg = Debug|x86
{85B11F78-39BC-4CFC-9033-FC84AB14CD03}.Release|x86.Build.0 = Debug|x86
{BA23CC1E-ACA2-4E1E-B10F-FD543393BEE6}.Debug|Any CPU.ActiveCfg = Debug|x86
{BA23CC1E-ACA2-4E1E-B10F-FD543393BEE6}.Debug|Any CPU.Build.0 = Debug|x86
{BA23CC1E-ACA2-4E1E-B10F-FD543393BEE6}.Debug|x64.ActiveCfg = Debug|x86
{BA23CC1E-ACA2-4E1E-B10F-FD543393BEE6}.Debug|x86.ActiveCfg = Debug|x86
{BA23CC1E-ACA2-4E1E-B10F-FD543393BEE6}.Debug|x86.Build.0 = Debug|x86
{BA23CC1E-ACA2-4E1E-B10F-FD543393BEE6}.Release|Any CPU.ActiveCfg = Debug|x86
{BA23CC1E-ACA2-4E1E-B10F-FD543393BEE6}.Release|x64.ActiveCfg = Debug|x86
{BA23CC1E-ACA2-4E1E-B10F-FD543393BEE6}.Release|x86.ActiveCfg = Debug|x86
Expand All @@ -1033,6 +1063,7 @@ Global
{67E7DEF0-1CEE-4ED6-A22D-97E5EA61157A}.Release|x86.ActiveCfg = Debug|Any CPU
{67E7DEF0-1CEE-4ED6-A22D-97E5EA61157A}.Release|x86.Build.0 = Debug|Any CPU
{C1D525C4-B072-4F2F-94BF-4862E6727C4B}.Debug|Any CPU.ActiveCfg = Debug|x86
{C1D525C4-B072-4F2F-94BF-4862E6727C4B}.Debug|Any CPU.Build.0 = Debug|x86
{C1D525C4-B072-4F2F-94BF-4862E6727C4B}.Debug|x64.ActiveCfg = Debug|x64
{C1D525C4-B072-4F2F-94BF-4862E6727C4B}.Debug|x64.Build.0 = Debug|x64
{C1D525C4-B072-4F2F-94BF-4862E6727C4B}.Debug|x86.ActiveCfg = Debug|x86
Expand All @@ -1043,6 +1074,7 @@ Global
{C1D525C4-B072-4F2F-94BF-4862E6727C4B}.Release|x86.ActiveCfg = Release|x86
{C1D525C4-B072-4F2F-94BF-4862E6727C4B}.Release|x86.Build.0 = Release|x86
{FE8B9F39-7C96-4866-9A18-386735895CEE}.Debug|Any CPU.ActiveCfg = Debug|x86
{FE8B9F39-7C96-4866-9A18-386735895CEE}.Debug|Any CPU.Build.0 = Debug|x86
{FE8B9F39-7C96-4866-9A18-386735895CEE}.Debug|x64.ActiveCfg = Debug|x86
{FE8B9F39-7C96-4866-9A18-386735895CEE}.Debug|x86.ActiveCfg = Debug|x86
{FE8B9F39-7C96-4866-9A18-386735895CEE}.Debug|x86.Build.0 = Debug|x86
Expand Down

0 comments on commit d6bc042

Please sign in to comment.