Merge branch 'release/2.2'
This commit is contained in:
commit
def3dc0f2b
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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">
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue