Skip to content
This repository was archived by the owner on Aug 30, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
a7230d1
Changed the UnitTests project from .NET 4.5 to 4.0
asbjornu Dec 5, 2013
5265a07
Changed NuGet references from .NET 4.5 to 4.0
asbjornu Dec 5, 2013
d0426bf
Replaced .NET 4.5 specific code with something that is .NET 4.0 compa…
asbjornu Dec 5, 2013
273a2bf
Added documentation to the SharpRaven.Data.Module class
asbjornu Dec 5, 2013
f08df4c
Added documentation to SharpRaven.Logging.IFilter
asbjornu Dec 5, 2013
5daea56
- Added failing test for the PhoneNumberFilter, proving it doesn't wo…
asbjornu Dec 5, 2013
2e541e1
Fixed the PhoneNumberFilter to use the returned value from Replace(),…
asbjornu Dec 5, 2013
cfb2dd8
Some file rejigging
asbjornu Dec 5, 2013
3692f0a
Changed existing CreditCardTest into a negative one due to it using a…
asbjornu Dec 5, 2013
38bc590
Fixed CreditCardFilter so it actually scrubs the data and doesn't suf…
asbjornu Dec 5, 2013
92ea9bb
Removed the "Filter" prefix from the test names as it's implied in th…
asbjornu Dec 5, 2013
06cb85b
Added a negative PhoneNumberFilter test and changed the test naming t…
asbjornu Dec 5, 2013
5fec23f
Added ignored tests for SocialSecurityFilter
asbjornu Dec 5, 2013
cab4e12
Added Obsolete attribute to the SocialSecurityFilter.
asbjornu Dec 5, 2013
5c56a60
Added a base class for filter testing
asbjornu Dec 6, 2013
4b60f99
Refactored CreditCardFilterTests to use the abstract FilterTestsBase …
asbjornu Dec 6, 2013
dc7efb2
Refactored PhoneNumberFilterTests to use the abstract FilterTestsBase…
asbjornu Dec 6, 2013
90f3834
Refactored SocialSecurityFilterTests to use the abstract FilterTestsB…
asbjornu Dec 6, 2013
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
23 changes: 23 additions & 0 deletions SharpRaven.UnitTests/Logging/CreditCardFilterTests.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
using NUnit.Framework;

using SharpRaven.Logging.Filters;

namespace SharpRaven.UnitTests.Logging
{
[TestFixture]
public class CreditCardFilterTests : FilterTestsBase<CreditCardFilter>
{
[Test]
public void InvalidCreditCardNumber_IsNotScrubbed()
{
InvalidValueIsNotScrubbed("1234-5678-9101-1121");
}


[Test]
public void ValidCreditCardNumber_IsScrubbed()
{
ValidValueIsScrubbed("5271-1902-4264-3112");
}
}
}
44 changes: 44 additions & 0 deletions SharpRaven.UnitTests/Logging/FilterTestsBase.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
using System;

using NUnit.Framework;

using SharpRaven.Logging;

namespace SharpRaven.UnitTests.Logging
{
public abstract class FilterTestsBase<TFilter>
where TFilter : IFilter, new()
{
private readonly TFilter filter;


protected FilterTestsBase()
{
this.filter = new TFilter();
}


protected void InvalidValueIsNotScrubbed(string invalidValue)
{
var input = String.Format(
"Lorem ipsum dolor sit amet, consectetur adipiscing elit. {0} Praesent est dui, ornare eget condimentum a, tincidunt sit amet lectus. Nulla pellentesque, tortor eget tempus malesuada.",
invalidValue);

var output = this.filter.Filter(input);

Assert.That(output, Is.StringContaining(invalidValue));
}


protected void ValidValueIsScrubbed(string validValue)
{
var input = String.Format(
"Lorem ipsum dolor sit amet, consectetur adipiscing elit. {0} Praesent est dui, ornare eget condimentum a, tincidunt sit amet lectus. Nulla pellentesque, tortor eget tempus malesuada.",
validValue);

var output = this.filter.Filter(input);

Assert.That(output, Is.Not.StringContaining(validValue));
}
}
}
23 changes: 23 additions & 0 deletions SharpRaven.UnitTests/Logging/PhoneNumberFilterTests.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
using NUnit.Framework;

using SharpRaven.Logging.Filters;

namespace SharpRaven.UnitTests.Logging
{
[TestFixture]
public class PhoneNumberFilterTests : FilterTestsBase<PhoneNumberFilter>
{
[Test]
public void InvalidPhoneNumber_IsNotScrubbed()
{
base.InvalidValueIsNotScrubbed("1531");
}


[Test]
public void ValidPhoneNumber_IsScrubbed()
{
ValidValueIsScrubbed("55518231234");
}
}
}
24 changes: 24 additions & 0 deletions SharpRaven.UnitTests/Logging/SocialSecurityFilterTests.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
using NUnit.Framework;

using SharpRaven.Logging.Filters;

namespace SharpRaven.UnitTests.Logging
{
[TestFixture]
[Ignore("Not implemented yet")]
public class SocialSecurityFilterTests : FilterTestsBase<SocialSecurityFilter>
{
[Test]
public void InvalidSocialSecurityNumber_IsNotScrubbed()
{
InvalidValueIsNotScrubbed("1531");
}


[Test]
public void ValidSocialSecurityNumber_IsScrubbed()
{
ValidValueIsScrubbed("55518231234");
}
}
}
4 changes: 2 additions & 2 deletions SharpRaven.UnitTests/SchemaHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ private static PropertyInfo GetProperty(Type type, KeyValuePair<string, JsonSche

foreach (var p in type.GetProperties())
{
var jsonPropertyAttribute = p.GetCustomAttribute<JsonPropertyAttribute>();
var jsonPropertyAttribute = p.GetCustomAttributes(false).OfType<JsonPropertyAttribute>().FirstOrDefault();

if ((jsonPropertyAttribute == null || jsonPropertyAttribute.PropertyName != jsProperty.Key) &&
(p.Name != jsProperty.Key))
Expand Down Expand Up @@ -157,7 +157,7 @@ private static JsonSchema MapSchemaTypes(this JsonSchema schema, Type type)

private static IEnumerable<object> GetEnumValues(Type enumType, PropertyInfo property)
{
var converterAttribute = property.GetCustomAttribute<JsonConverterAttribute>();
var converterAttribute = property.GetCustomAttributes(false).OfType<JsonConverterAttribute>().FirstOrDefault();

if (converterAttribute != null)
{
Expand Down
9 changes: 7 additions & 2 deletions SharpRaven.UnitTests/SharpRaven.UnitTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>SharpRaven.UnitTests</RootNamespace>
<AssemblyName>SharpRaven.UnitTests</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
<RestorePackages>true</RestorePackages>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand All @@ -34,7 +35,7 @@
<ItemGroup>
<Reference Include="Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Newtonsoft.Json.5.0.8\lib\net45\Newtonsoft.Json.dll</HintPath>
<HintPath>..\packages\Newtonsoft.Json.5.0.8\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="nunit.framework, Version=2.6.3.13283, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
Expand All @@ -44,6 +45,10 @@
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="schema.json" />
<Compile Include="Logging\CreditCardFilterTests.cs" />
<Compile Include="Logging\FilterTestsBase.cs" />
<Compile Include="Logging\PhoneNumberFilterTests.cs" />
<Compile Include="Logging\SocialSecurityFilterTests.cs" />
<Compile Include="SchemaHelper.cs" />
<Compile Include="SerializationTests.cs" />
<Compile Include="SchemaTests.cs" />
Expand Down
4 changes: 2 additions & 2 deletions SharpRaven.UnitTests/packages.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Newtonsoft.Json" version="5.0.8" targetFramework="net45" />
<package id="NUnit" version="2.6.3" targetFramework="net45" />
<package id="Newtonsoft.Json" version="5.0.8" targetFramework="net40" />
<package id="NUnit" version="2.6.3" targetFramework="net40" />
</packages>
145 changes: 72 additions & 73 deletions SharpRaven.sln
Original file line number Diff line number Diff line change
@@ -1,73 +1,72 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharpRaven", "SharpRaven\SharpRaven.csproj", "{CC80A2E1-AE39-44DE-8DA3-4EEF42F90FB1}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharpRaven.CaptureTest", "SharpRaven.CaptureTest\SharpRaven.CaptureTest.csproj", "{5183EE19-B1EE-4D57-B764-26259EB2B5BF}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharpRaven.UnitTests", "SharpRaven.UnitTests\SharpRaven.UnitTests.csproj", "{E1DBEBBF-9448-4D99-B378-2B8CF1629F31}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharpRaven.WebTest", "SharpRaven.WebTest\SharpRaven.WebTest.csproj", "{156621FC-2C48-4CDF-A368-9347BABE9089}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{BB692EC7-9ABE-49D6-A0E5-051A34DD291B}"
ProjectSection(SolutionItems) = preProject
.nuget\NuGet.Config = .nuget\NuGet.Config
.nuget\NuGet.exe = .nuget\NuGet.exe
.nuget\NuGet.targets = .nuget\NuGet.targets
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|Mixed Platforms = Debug|Mixed Platforms
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|Mixed Platforms = Release|Mixed Platforms
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{CC80A2E1-AE39-44DE-8DA3-4EEF42F90FB1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CC80A2E1-AE39-44DE-8DA3-4EEF42F90FB1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CC80A2E1-AE39-44DE-8DA3-4EEF42F90FB1}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{CC80A2E1-AE39-44DE-8DA3-4EEF42F90FB1}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{CC80A2E1-AE39-44DE-8DA3-4EEF42F90FB1}.Debug|x86.ActiveCfg = Debug|Any CPU
{CC80A2E1-AE39-44DE-8DA3-4EEF42F90FB1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CC80A2E1-AE39-44DE-8DA3-4EEF42F90FB1}.Release|Any CPU.Build.0 = Release|Any CPU
{CC80A2E1-AE39-44DE-8DA3-4EEF42F90FB1}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{CC80A2E1-AE39-44DE-8DA3-4EEF42F90FB1}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{CC80A2E1-AE39-44DE-8DA3-4EEF42F90FB1}.Release|x86.ActiveCfg = Release|Any CPU
{5183EE19-B1EE-4D57-B764-26259EB2B5BF}.Debug|Any CPU.ActiveCfg = Debug|x86
{5183EE19-B1EE-4D57-B764-26259EB2B5BF}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
{5183EE19-B1EE-4D57-B764-26259EB2B5BF}.Debug|Mixed Platforms.Build.0 = Debug|x86
{5183EE19-B1EE-4D57-B764-26259EB2B5BF}.Debug|x86.ActiveCfg = Debug|x86
{5183EE19-B1EE-4D57-B764-26259EB2B5BF}.Debug|x86.Build.0 = Debug|x86
{5183EE19-B1EE-4D57-B764-26259EB2B5BF}.Release|Any CPU.ActiveCfg = Release|x86
{5183EE19-B1EE-4D57-B764-26259EB2B5BF}.Release|Mixed Platforms.ActiveCfg = Release|x86
{5183EE19-B1EE-4D57-B764-26259EB2B5BF}.Release|Mixed Platforms.Build.0 = Release|x86
{5183EE19-B1EE-4D57-B764-26259EB2B5BF}.Release|x86.ActiveCfg = Release|x86
{5183EE19-B1EE-4D57-B764-26259EB2B5BF}.Release|x86.Build.0 = Release|x86
{E1DBEBBF-9448-4D99-B378-2B8CF1629F31}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E1DBEBBF-9448-4D99-B378-2B8CF1629F31}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E1DBEBBF-9448-4D99-B378-2B8CF1629F31}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{E1DBEBBF-9448-4D99-B378-2B8CF1629F31}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{E1DBEBBF-9448-4D99-B378-2B8CF1629F31}.Debug|x86.ActiveCfg = Debug|Any CPU
{E1DBEBBF-9448-4D99-B378-2B8CF1629F31}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E1DBEBBF-9448-4D99-B378-2B8CF1629F31}.Release|Any CPU.Build.0 = Release|Any CPU
{E1DBEBBF-9448-4D99-B378-2B8CF1629F31}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{E1DBEBBF-9448-4D99-B378-2B8CF1629F31}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{E1DBEBBF-9448-4D99-B378-2B8CF1629F31}.Release|x86.ActiveCfg = Release|Any CPU
{156621FC-2C48-4CDF-A368-9347BABE9089}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{156621FC-2C48-4CDF-A368-9347BABE9089}.Debug|Any CPU.Build.0 = Debug|Any CPU
{156621FC-2C48-4CDF-A368-9347BABE9089}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{156621FC-2C48-4CDF-A368-9347BABE9089}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{156621FC-2C48-4CDF-A368-9347BABE9089}.Debug|x86.ActiveCfg = Debug|Any CPU
{156621FC-2C48-4CDF-A368-9347BABE9089}.Release|Any CPU.ActiveCfg = Release|Any CPU
{156621FC-2C48-4CDF-A368-9347BABE9089}.Release|Any CPU.Build.0 = Release|Any CPU
{156621FC-2C48-4CDF-A368-9347BABE9089}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{156621FC-2C48-4CDF-A368-9347BABE9089}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{156621FC-2C48-4CDF-A368-9347BABE9089}.Release|x86.ActiveCfg = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharpRaven", "SharpRaven\SharpRaven.csproj", "{CC80A2E1-AE39-44DE-8DA3-4EEF42F90FB1}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharpRaven.CaptureTest", "SharpRaven.CaptureTest\SharpRaven.CaptureTest.csproj", "{5183EE19-B1EE-4D57-B764-26259EB2B5BF}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharpRaven.UnitTests", "SharpRaven.UnitTests\SharpRaven.UnitTests.csproj", "{E1DBEBBF-9448-4D99-B378-2B8CF1629F31}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharpRaven.WebTest", "SharpRaven.WebTest\SharpRaven.WebTest.csproj", "{156621FC-2C48-4CDF-A368-9347BABE9089}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{8A88BBCD-89AC-4593-9B91-A93B9F305ED3}"
ProjectSection(SolutionItems) = preProject
.nuget\NuGet.Config = .nuget\NuGet.Config
.nuget\NuGet.exe = .nuget\NuGet.exe
.nuget\NuGet.targets = .nuget\NuGet.targets
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|Mixed Platforms = Debug|Mixed Platforms
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|Mixed Platforms = Release|Mixed Platforms
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{CC80A2E1-AE39-44DE-8DA3-4EEF42F90FB1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CC80A2E1-AE39-44DE-8DA3-4EEF42F90FB1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CC80A2E1-AE39-44DE-8DA3-4EEF42F90FB1}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{CC80A2E1-AE39-44DE-8DA3-4EEF42F90FB1}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{CC80A2E1-AE39-44DE-8DA3-4EEF42F90FB1}.Debug|x86.ActiveCfg = Debug|Any CPU
{CC80A2E1-AE39-44DE-8DA3-4EEF42F90FB1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CC80A2E1-AE39-44DE-8DA3-4EEF42F90FB1}.Release|Any CPU.Build.0 = Release|Any CPU
{CC80A2E1-AE39-44DE-8DA3-4EEF42F90FB1}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{CC80A2E1-AE39-44DE-8DA3-4EEF42F90FB1}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{CC80A2E1-AE39-44DE-8DA3-4EEF42F90FB1}.Release|x86.ActiveCfg = Release|Any CPU
{5183EE19-B1EE-4D57-B764-26259EB2B5BF}.Debug|Any CPU.ActiveCfg = Debug|x86
{5183EE19-B1EE-4D57-B764-26259EB2B5BF}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
{5183EE19-B1EE-4D57-B764-26259EB2B5BF}.Debug|Mixed Platforms.Build.0 = Debug|x86
{5183EE19-B1EE-4D57-B764-26259EB2B5BF}.Debug|x86.ActiveCfg = Debug|x86
{5183EE19-B1EE-4D57-B764-26259EB2B5BF}.Debug|x86.Build.0 = Debug|x86
{5183EE19-B1EE-4D57-B764-26259EB2B5BF}.Release|Any CPU.ActiveCfg = Release|x86
{5183EE19-B1EE-4D57-B764-26259EB2B5BF}.Release|Mixed Platforms.ActiveCfg = Release|x86
{5183EE19-B1EE-4D57-B764-26259EB2B5BF}.Release|Mixed Platforms.Build.0 = Release|x86
{5183EE19-B1EE-4D57-B764-26259EB2B5BF}.Release|x86.ActiveCfg = Release|x86
{5183EE19-B1EE-4D57-B764-26259EB2B5BF}.Release|x86.Build.0 = Release|x86
{E1DBEBBF-9448-4D99-B378-2B8CF1629F31}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E1DBEBBF-9448-4D99-B378-2B8CF1629F31}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E1DBEBBF-9448-4D99-B378-2B8CF1629F31}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{E1DBEBBF-9448-4D99-B378-2B8CF1629F31}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{E1DBEBBF-9448-4D99-B378-2B8CF1629F31}.Debug|x86.ActiveCfg = Debug|Any CPU
{E1DBEBBF-9448-4D99-B378-2B8CF1629F31}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E1DBEBBF-9448-4D99-B378-2B8CF1629F31}.Release|Any CPU.Build.0 = Release|Any CPU
{E1DBEBBF-9448-4D99-B378-2B8CF1629F31}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{E1DBEBBF-9448-4D99-B378-2B8CF1629F31}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{E1DBEBBF-9448-4D99-B378-2B8CF1629F31}.Release|x86.ActiveCfg = Release|Any CPU
{156621FC-2C48-4CDF-A368-9347BABE9089}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{156621FC-2C48-4CDF-A368-9347BABE9089}.Debug|Any CPU.Build.0 = Debug|Any CPU
{156621FC-2C48-4CDF-A368-9347BABE9089}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{156621FC-2C48-4CDF-A368-9347BABE9089}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{156621FC-2C48-4CDF-A368-9347BABE9089}.Debug|x86.ActiveCfg = Debug|Any CPU
{156621FC-2C48-4CDF-A368-9347BABE9089}.Release|Any CPU.ActiveCfg = Release|Any CPU
{156621FC-2C48-4CDF-A368-9347BABE9089}.Release|Any CPU.Build.0 = Release|Any CPU
{156621FC-2C48-4CDF-A368-9347BABE9089}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{156621FC-2C48-4CDF-A368-9347BABE9089}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{156621FC-2C48-4CDF-A368-9347BABE9089}.Release|x86.ActiveCfg = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
Loading