Skip to content

Commit

Permalink
Build configurations extended - assemblies can be simply released for…
Browse files Browse the repository at this point in the history
… multiple framework versions.
  • Loading branch information
jwaliszko committed Aug 12, 2014
1 parent 7fd932e commit 822bb23
Show file tree
Hide file tree
Showing 9 changed files with 132 additions and 51 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ExpressiveAnnotations.MvcUnobtrusiveValidatorProvider</RootNamespace>
<AssemblyName>ExpressiveAnnotations.MvcUnobtrusiveValidatorProvider</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand All @@ -30,6 +31,28 @@
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\Release\ExpressiveAnnotations.MvcUnobtrusiveValidatorProvider.XML</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release-Net40|AnyCPU'">
<OutputPath>..\bin\Release-Net40\</OutputPath>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<DefineConstants>TRACE</DefineConstants>
<DocumentationFile>..\bin\Release-Net40\ExpressiveAnnotations.MvcUnobtrusiveValidatorProvider.XML</DocumentationFile>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release-Net45|AnyCPU'">
<OutputPath>..\bin\Release-Net45\</OutputPath>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<DefineConstants>TRACE</DefineConstants>
<DocumentationFile>..\bin\Release-Net45\ExpressiveAnnotations.MvcUnobtrusiveValidatorProvider.XML</DocumentationFile>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference Include="Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
Expand All @@ -13,13 +13,14 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ExpressiveAnnotations.MvcWebSample</RootNamespace>
<AssemblyName>ExpressiveAnnotations.MvcWebSample</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
<MvcBuildViews>false</MvcBuildViews>
<UseIISExpress>true</UseIISExpress>
<IISExpressSSLPort />
<IISExpressAnonymousAuthentication />
<IISExpressWindowsAuthentication />
<IISExpressUseClassicPipelineMode />
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand Down Expand Up @@ -54,9 +55,13 @@
</Reference>
<Reference Include="System" />
<Reference Include="System.ComponentModel.DataAnnotations" />
<Reference Include="System.Core" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Web" />
<Reference Include="System.Web.Abstractions" />
<Reference Include="System.Web.ApplicationServices" />
<Reference Include="System.Web.DynamicData" />
<Reference Include="System.Web.Entity" />
<Reference Include="System.Web.Extensions" />
<Reference Include="System.Web.Helpers, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Microsoft.AspNet.WebPages.2.0.20710.0\lib\net40\System.Web.Helpers.dll</HintPath>
Expand Down Expand Up @@ -103,6 +108,7 @@
<HintPath>..\packages\Microsoft.AspNet.WebPages.2.0.20710.0\lib\net40\System.Web.WebPages.Razor.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System.Xml.Linq" />
<Reference Include="WebGrease, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\WebGrease.1.3.0\lib\WebGrease.dll</HintPath>
Expand Down Expand Up @@ -202,7 +208,9 @@
<Content Include="Scripts\jquery.validate.unobtrusive.js" />
<Content Include="Content\site.css" />
<Content Include="Global.asax" />
<Content Include="Web.config" />
<Content Include="Web.config">
<SubType>Designer</SubType>
</Content>
<Content Include="Web.Debug.config">
<DependentUpon>Web.config</DependentUpon>
</Content>
Expand Down
74 changes: 37 additions & 37 deletions src/ExpressiveAnnotations.MvcWebSample/Web.config
Original file line number Diff line number Diff line change
@@ -1,67 +1,67 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0"?>
<!--
For more information on how to configure your ASP.NET application, please visit
http://go.microsoft.com/fwlink/?LinkId=169433
-->

<configuration>
<appSettings>
<add key="webpages:Version" value="2.0.0.0" />
<add key="webpages:Enabled" value="false" />
<add key="PreserveLoginUrl" value="true" />
<add key="ClientValidationEnabled" value="true" />
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
<add key="webpages:Version" value="2.0.0.0"/>
<add key="webpages:Enabled" value="false"/>
<add key="PreserveLoginUrl" value="true"/>
<add key="ClientValidationEnabled" value="true"/>
<add key="UnobtrusiveJavaScriptEnabled" value="true"/>
</appSettings>
<!--
For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367.
The following attributes can be set on the <httpRuntime> tag.
<system.Web>
<httpRuntime targetFramework="4.5.1" />
</system.Web>
-->
<system.web>

<httpRuntime targetFramework="4.5" />

<compilation debug="true" targetFramework="4.5" />

<httpRuntime targetFramework="4.5"/>
<compilation debug="true" targetFramework="4.5.1"/>
<pages>
<namespaces>
<add namespace="System.Web.Helpers" />
<add namespace="System.Web.Mvc" />
<add namespace="System.Web.Mvc.Ajax" />
<add namespace="System.Web.Mvc.Html" />
<add namespace="System.Web.Routing" />
<add namespace="System.Web.WebPages" />
<add namespace="System.Web.Helpers"/>
<add namespace="System.Web.Mvc"/>
<add namespace="System.Web.Mvc.Ajax"/>
<add namespace="System.Web.Mvc.Html"/>
<add namespace="System.Web.Routing"/>
<add namespace="System.Web.WebPages"/>
</namespaces>
</pages>
</system.web>

<system.webServer>
<validation validateIntegratedModeConfiguration="false" />

<validation validateIntegratedModeConfiguration="false"/>
<handlers>
<remove name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" />
<remove name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" />
<remove name="ExtensionlessUrlHandler-Integrated-4.0" />
<add name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" />
<add name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness64" responseBufferLimit="0" />
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
<remove name="ExtensionlessUrlHandler-ISAPI-4.0_32bit"/>
<remove name="ExtensionlessUrlHandler-ISAPI-4.0_64bit"/>
<remove name="ExtensionlessUrlHandler-Integrated-4.0"/>
<add name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0"/>
<add name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness64" responseBufferLimit="0"/>
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0"/>
</handlers>
</system.webServer>

<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35"/>
<bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0" />
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35"/>
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35"/>
<bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="0.0.0.0-1.3.0.0" newVersion="1.3.0.0" />
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35"/>
<bindingRedirect oldVersion="0.0.0.0-1.3.0.0" newVersion="1.3.0.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
</configuration>
4 changes: 2 additions & 2 deletions src/ExpressiveAnnotations.MvcWebSample/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
<packages>
<package id="jQuery" version="1.8.2" targetFramework="net45" />
<package id="jQuery.Validation" version="1.10.0" targetFramework="net45" />
<package id="Microsoft.jQuery.Unobtrusive.Validation" version="3.1.1" targetFramework="net45" />
<package id="Microsoft.AspNet.Web.Optimization" version="1.0.0" targetFramework="net45" />
<package id="Microsoft.AspNet.Mvc" version="4.0.20710.0" targetFramework="net45" />
<package id="Microsoft.AspNet.Mvc.FixedDisplayModes" version="1.0.0" targetFramework="net45" />
<package id="Microsoft.AspNet.Razor" version="2.0.20715.0" targetFramework="net45" />
<package id="Microsoft.AspNet.Web.Optimization" version="1.0.0" targetFramework="net45" />
<package id="Microsoft.AspNet.WebApi" version="4.0.20710.0" targetFramework="net45" />
<package id="Microsoft.AspNet.WebApi.Client" version="4.0.20710.0" targetFramework="net45" />
<package id="Microsoft.AspNet.WebApi.Core" version="4.0.20710.0" targetFramework="net45" />
<package id="Microsoft.AspNet.WebApi.WebHost" version="4.0.20710.0" targetFramework="net45" />
<package id="Microsoft.AspNet.WebPages" version="2.0.20710.0" targetFramework="net45" />
<package id="Microsoft.jQuery.Unobtrusive.Validation" version="3.1.1" targetFramework="net45" />
<package id="Microsoft.Net.Http" version="2.0.20710.0" targetFramework="net45" />
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net45" />
<package id="Newtonsoft.Json" version="4.5.11" targetFramework="net45" />
Expand Down
2 changes: 1 addition & 1 deletion src/ExpressiveAnnotations.MvvmDesktopSample/App.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.1"/>
</startup>
</configuration>
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ExpressiveAnnotations.MvvmDesktopSample</RootNamespace>
<AssemblyName>ExpressiveAnnotations.MvvmDesktopSample</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<WarningLevel>4</WarningLevel>
Expand Down Expand Up @@ -117,7 +117,9 @@
<AppDesigner Include="Properties\" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
<None Include="App.config">
<SubType>Designer</SubType>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ExpressiveAnnotations\ExpressiveAnnotations.csproj">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
Expand All @@ -8,14 +8,15 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ExpressiveAnnotations.Tests</RootNamespace>
<AssemblyName>ExpressiveAnnotations.Tests</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
<ReferencePath>$(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages</ReferencePath>
<IsCodedUITest>False</IsCodedUITest>
<TestProjectType>UnitTest</TestProjectType>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand Down
24 changes: 24 additions & 0 deletions src/ExpressiveAnnotations.sln
Original file line number Diff line number Diff line change
Expand Up @@ -22,28 +22,52 @@ Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
Release-Net40|Any CPU = Release-Net40|Any CPU
Release-Net45|Any CPU = Release-Net45|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{70DD327B-F37C-4291-9388-212AA541E970}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{70DD327B-F37C-4291-9388-212AA541E970}.Debug|Any CPU.Build.0 = Debug|Any CPU
{70DD327B-F37C-4291-9388-212AA541E970}.Release|Any CPU.ActiveCfg = Release|Any CPU
{70DD327B-F37C-4291-9388-212AA541E970}.Release|Any CPU.Build.0 = Release|Any CPU
{70DD327B-F37C-4291-9388-212AA541E970}.Release-Net40|Any CPU.ActiveCfg = Release-Net40|Any CPU
{70DD327B-F37C-4291-9388-212AA541E970}.Release-Net40|Any CPU.Build.0 = Release-Net40|Any CPU
{70DD327B-F37C-4291-9388-212AA541E970}.Release-Net45|Any CPU.ActiveCfg = Release-Net45|Any CPU
{70DD327B-F37C-4291-9388-212AA541E970}.Release-Net45|Any CPU.Build.0 = Release-Net45|Any CPU
{2DE111D5-E3A5-4FC8-8261-AA2DA743A3AD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2DE111D5-E3A5-4FC8-8261-AA2DA743A3AD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2DE111D5-E3A5-4FC8-8261-AA2DA743A3AD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2DE111D5-E3A5-4FC8-8261-AA2DA743A3AD}.Release|Any CPU.Build.0 = Release|Any CPU
{2DE111D5-E3A5-4FC8-8261-AA2DA743A3AD}.Release-Net40|Any CPU.ActiveCfg = Release|Any CPU
{2DE111D5-E3A5-4FC8-8261-AA2DA743A3AD}.Release-Net40|Any CPU.Build.0 = Release|Any CPU
{2DE111D5-E3A5-4FC8-8261-AA2DA743A3AD}.Release-Net45|Any CPU.ActiveCfg = Release|Any CPU
{2DE111D5-E3A5-4FC8-8261-AA2DA743A3AD}.Release-Net45|Any CPU.Build.0 = Release|Any CPU
{78E4B95D-B0C3-486E-8847-CA444EF5BB95}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{78E4B95D-B0C3-486E-8847-CA444EF5BB95}.Debug|Any CPU.Build.0 = Debug|Any CPU
{78E4B95D-B0C3-486E-8847-CA444EF5BB95}.Release|Any CPU.ActiveCfg = Release|Any CPU
{78E4B95D-B0C3-486E-8847-CA444EF5BB95}.Release|Any CPU.Build.0 = Release|Any CPU
{78E4B95D-B0C3-486E-8847-CA444EF5BB95}.Release-Net40|Any CPU.ActiveCfg = Release|Any CPU
{78E4B95D-B0C3-486E-8847-CA444EF5BB95}.Release-Net40|Any CPU.Build.0 = Release|Any CPU
{78E4B95D-B0C3-486E-8847-CA444EF5BB95}.Release-Net45|Any CPU.ActiveCfg = Release|Any CPU
{78E4B95D-B0C3-486E-8847-CA444EF5BB95}.Release-Net45|Any CPU.Build.0 = Release|Any CPU
{78E4B95D-B0C3-486E-8847-CA444EF5BB95}.Release-Net45|Any CPU.Deploy.0 = Release|Any CPU
{1926A95D-19EE-451B-9DA4-C3EAF555B15D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1926A95D-19EE-451B-9DA4-C3EAF555B15D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1926A95D-19EE-451B-9DA4-C3EAF555B15D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1926A95D-19EE-451B-9DA4-C3EAF555B15D}.Release|Any CPU.Build.0 = Release|Any CPU
{1926A95D-19EE-451B-9DA4-C3EAF555B15D}.Release-Net40|Any CPU.ActiveCfg = Release-Net40|Any CPU
{1926A95D-19EE-451B-9DA4-C3EAF555B15D}.Release-Net40|Any CPU.Build.0 = Release-Net40|Any CPU
{1926A95D-19EE-451B-9DA4-C3EAF555B15D}.Release-Net45|Any CPU.ActiveCfg = Release-Net45|Any CPU
{1926A95D-19EE-451B-9DA4-C3EAF555B15D}.Release-Net45|Any CPU.Build.0 = Release-Net45|Any CPU
{94B9466A-3C9E-47A3-A300-6E45AAE763D7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{94B9466A-3C9E-47A3-A300-6E45AAE763D7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{94B9466A-3C9E-47A3-A300-6E45AAE763D7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{94B9466A-3C9E-47A3-A300-6E45AAE763D7}.Release|Any CPU.Build.0 = Release|Any CPU
{94B9466A-3C9E-47A3-A300-6E45AAE763D7}.Release-Net40|Any CPU.ActiveCfg = Release|Any CPU
{94B9466A-3C9E-47A3-A300-6E45AAE763D7}.Release-Net40|Any CPU.Build.0 = Release|Any CPU
{94B9466A-3C9E-47A3-A300-6E45AAE763D7}.Release-Net45|Any CPU.ActiveCfg = Release|Any CPU
{94B9466A-3C9E-47A3-A300-6E45AAE763D7}.Release-Net45|Any CPU.Build.0 = Release|Any CPU
{94B9466A-3C9E-47A3-A300-6E45AAE763D7}.Release-Net45|Any CPU.Deploy.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
Loading

0 comments on commit 822bb23

Please sign in to comment.