Bump Microsoft.AspNetCore.Server.IntegrationTesting to net452.

This commit is contained in:
Cesar Blum Silveira 2017-02-22 13:46:47 -08:00
parent d5ec0859e5
commit af953b4883
5 changed files with 8 additions and 8 deletions

View File

@ -57,7 +57,7 @@ namespace Microsoft.AspNetCore.Server.IntegrationTesting
else
{
if (exception is HttpRequestException
#if NET451
#if NET452
|| exception is System.Net.WebException
#endif
)
@ -95,4 +95,4 @@ namespace Microsoft.AspNetCore.Server.IntegrationTesting
}
}
}
}
}

View File

@ -126,7 +126,7 @@ namespace Microsoft.AspNetCore.Server.IntegrationTesting
protected void AddEnvironmentVariablesToProcess(ProcessStartInfo startInfo, List<KeyValuePair<string, string>> environmentVariables)
{
var environment =
#if NET451
#if NET452
startInfo.EnvironmentVariables;
#else
startInfo.Environment;
@ -140,7 +140,7 @@ namespace Microsoft.AspNetCore.Server.IntegrationTesting
}
}
#if NET451
#if NET452
protected void SetEnvironmentVariable(System.Collections.Specialized.StringDictionary environment, string name, string value)
{
#else

View File

@ -33,7 +33,7 @@ namespace Microsoft.AspNetCore.Server.IntegrationTesting
{
case ServerType.IISExpress:
return new IISExpressDeployer(deploymentParameters, logger);
#if NET451
#if NET452
case ServerType.IIS:
return new IISDeployer(deploymentParameters, logger);
#endif

View File

@ -1,7 +1,7 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
#if NET451
#if NET452
using System;
using System.Linq;

View File

@ -5,7 +5,7 @@
<PropertyGroup>
<Description>ASP.NET Core helpers to deploy applications to IIS Express, IIS, WebListener and Kestrel for testing.</Description>
<VersionPrefix>0.3.0</VersionPrefix>
<TargetFrameworks>net451;netstandard1.3</TargetFrameworks>
<TargetFrameworks>net452;netstandard1.3</TargetFrameworks>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageTags>aspnetcore;testing</PackageTags>
@ -26,7 +26,7 @@
<PackageReference Include="Microsoft.NETCore.Windows.ApiSets" Version="1.0.1" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net451' ">
<ItemGroup Condition=" '$(TargetFramework)' == 'net452' ">
<PackageReference Include="Microsoft.Web.Administration" Version="7.0.0" />
<Reference Include="System.Xml" />
<Reference Include="System.Xml.Linq" />