Merge branch 'release/2.2' => 'master' (#9313)
This commit is contained in:
commit
6df7aa4da0
|
|
@ -41,6 +41,9 @@ Later on, this will be checked using this condition:
|
|||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(VersionPrefix)' == '2.2.5' ">
|
||||
<PackagesInPatch>
|
||||
Microsoft.AspNetCore.AspNetCoreModule;
|
||||
Microsoft.AspNetCore.AspNetCoreModuleV2;
|
||||
java:signalr;
|
||||
</PackagesInPatch>
|
||||
</PropertyGroup>
|
||||
|
||||
|
|
|
|||
|
|
@ -104,7 +104,7 @@ AddConfigSection(
|
|||
if (aspNetCoreNode == NULL)
|
||||
{
|
||||
RETURN_IF_FAILED(hr = pXMLDoc->createElement(section, &element));
|
||||
|
||||
|
||||
RETURN_IF_FAILED(hr = element->setAttribute(name, CComVariant(aspNetCore)));
|
||||
|
||||
RETURN_IF_FAILED(hr = element->setAttribute(overrideMode, CComVariant(allow)));
|
||||
|
|
@ -130,7 +130,6 @@ RemoveConfigSection(
|
|||
IXMLDOMNode* webServerNode;
|
||||
IXMLDOMNode* aspNetCoreNode;
|
||||
IXMLDOMNode* tempNode;
|
||||
IXMLDOMElement* element;
|
||||
STRU customActionData;
|
||||
|
||||
CComBSTR selectLanguage = SysAllocString(L"SelectionLanguage");
|
||||
|
|
|
|||
|
|
@ -146,6 +146,8 @@ namespace Microsoft.AspNetCore.Server.Kestrel.InMemory.FunctionalTests
|
|||
|
||||
var serviceContext = new TestServiceContext(LoggerFactory);
|
||||
|
||||
TestApplicationErrorLogger.ThrowOnUngracefulShutdown = false;
|
||||
|
||||
var stopTask = Task.CompletedTask;
|
||||
await using (var server = new TestServer(requestDelegate, serviceContext, listenOptions))
|
||||
using (var shutdownCts = new CancellationTokenSource(TestConstants.DefaultTimeout))
|
||||
|
|
|
|||
Loading…
Reference in New Issue