Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/CHttpServer/CHttpServer/CHttpServer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</PropertyGroup>

<PropertyGroup Condition="$(TargetFramework) == 'net11.0'">
<Features>$(Features);runtime-async=on</Features>
<Features>$(Features);runtime-async=off</Features>
</PropertyGroup>

<ItemGroup>
Expand Down
3 changes: 0 additions & 3 deletions tests/CHttpServer.Tests/CHttpServerIntegrationTests.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
using System.Net;
using System.Net.Http.Json;
using System.Text;

namespace CHttpServer.Tests;

[Collection(nameof(VanilaCHttpServerIntegrationTests))]
[CollectionDefinition(DisableParallelization = true)]
public class VanilaCHttpServerIntegrationTests : CHttpServerIntegrationTests, IClassFixture<TestServer>
{
private const int Port = 7222;
Expand All @@ -17,7 +15,6 @@ public VanilaCHttpServerIntegrationTests(TestServer testServer) : base(testServe
}

[Collection(nameof(PriorityCHttpServerIntegrationTests))]
[CollectionDefinition(DisableParallelization = true)]
public class PriorityCHttpServerIntegrationTests : CHttpServerIntegrationTests, IClassFixture<TestServer>
{
private const int Port = 7223;
Expand Down
Loading