Merge branch 'release/2.1' to release/2.2

This commit is contained in:
Nate McMaster 2018-12-07 12:45:42 -08:00
commit 5017afa0ad
No known key found for this signature in database
GPG Key ID: A778D9601BD78810
8 changed files with 7 additions and 28 deletions

1
.gitignore vendored
View File

@ -26,3 +26,4 @@ scripts/tmp/
.tools/
src/**/global.json
launchSettings.json
korebuild-lock.txt

View File

@ -75,8 +75,7 @@
Exclude="
@(ProjectToExclude);
$(RepositoryRoot)**\bin\**\*;
$(RepositoryRoot)**\obj\**\*;
$(RepositoryRoot)**\AutobahnTestApp\**\*;" />
$(RepositoryRoot)**\obj\**\*;" />
</ItemGroup>
<!-- Properties for publishing -->

View File

@ -1,10 +1,4 @@
{
"adx-nonshipping": {
"rules": [],
"packages": {
"Microsoft.AspNetCore.HttpSys.Sources": {}
}
},
"Default": {
"rules": [
"DefaultCompositeRule"

View File

@ -1,15 +0,0 @@
<Project>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory)..\, Directory.Build.props))\Directory.Build.props" />
<PropertyGroup>
<DeveloperBuildTestTfms>netcoreapp2.2</DeveloperBuildTestTfms>
<StandardTestTfms>$(DeveloperBuildTestTfms)</StandardTestTfms>
<StandardTestTfms Condition=" '$(DeveloperBuild)' != 'true' ">$(StandardTestTfms)</StandardTestTfms>
<StandardTestTfms Condition=" '$(DeveloperBuild)' != 'true' AND '$(OS)' == 'Windows_NT' ">$(StandardTestTfms);net472</StandardTestTfms>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Internal.AspNetCore.Sdk" PrivateAssets="All" Version="$(InternalAspNetCoreSdkPackageVersion)" />
</ItemGroup>
</Project>

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(StandardTestTfms)</TargetFrameworks>
<TargetFrameworks>netcoreapp2.2;net472</TargetFrameworks>
<TestGroupName>HttpSys.FunctionalTests</TestGroupName>
</PropertyGroup>

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(StandardTestTfms)</TargetFrameworks>
<TargetFrameworks>netcoreapp2.2;net472</TargetFrameworks>
</PropertyGroup>
<ItemGroup>

View File

@ -7,7 +7,7 @@
<ItemGroup>
<Compile Include="$(KestrelSharedSourceRoot)test\*.cs" />
<Compile Include="$(RepositoryRoot)\src\Shared\Buffers.Testing\*.cs" />
<Compile Include="$(SharedSourceRoot)Buffers.Testing\*.cs" />
<Content Include="$(KestrelSharedSourceRoot)test\TestCertificates\*.pfx" LinkBase="shared\TestCertificates" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>

View File

@ -6,7 +6,7 @@
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\..\Shared\Buffers.Testing\**\*.cs" />
<Compile Include="$(SharedSourceRoot)Buffers.Testing\**\*.cs" />
<Content Include="..\xunit.runner.json" Link="xunit.runner.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>