Merge branch 'release/2.2'

This commit is contained in:
Nate McMaster 2018-11-30 11:15:26 -08:00
commit def3dc0f2b
No known key found for this signature in database
GPG Key ID: A778D9601BD78810
3 changed files with 3 additions and 2 deletions

View File

@ -8,6 +8,7 @@
Microsoft.AspNetCore.Server.IIS;
Microsoft.AspNetCore.Server.IISIntegration;
Microsoft.AspNetCore.Server.IntegrationTesting.IIS;
Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets;
</PackagesInPatch>
</PropertyGroup>

View File

@ -9,7 +9,7 @@
<!-- Temporary: this target is used to gather version information to pass to submodule builds. This can be removed after we finish merging submodules. -->
<Target Name="GetBaselineArtifactInfo"
Condition="'$(IsPackableInNonServicingBuild)' == 'true' AND '$(IsSubfolderBuild)' != 'true' "
Condition="'$(IsPackableInNonServicingBuild)' == 'true' AND '$(IsSubfolderBuild)' != 'true' AND '$(IsPackable)' != 'true' "
Returns="@(ArtifactInfo)"
BeforeTargets="GetArtifactInfo">

View File

@ -273,7 +273,7 @@ describe("HubConnection", () => {
});
});
it.only("start completes if connection closes and handshake not received yet", async () => {
it("start completes if connection closes and handshake not received yet", async () => {
await VerifyLogger.run(async (logger) => {
const mockProtocol = new TestProtocol(TransferFormat.Text);