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
5 changes: 5 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ jobs:
uses: actions/setup-dotnet@v3
with:
dotnet-version: '9.0'

- name: Setup .NET 10.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: '10.0'

- name: Build
run: dotnet build Yllibed.HttpServer.slnx /p:Configuration=Release
Expand Down
1 change: 0 additions & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,5 @@
<PackageVersion Include="PolySharp" Version="1.15.0" />
<PackageVersion Include="System.Collections.Immutable" Version="9.0.8" />
<PackageVersion Include="System.Diagnostics.DiagnosticSource" Version="9.0.8" />
<PackageVersion Include="System.ValueTuple" Version="4.6.1" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="MSTest.Sdk/3.10.4">
<PropertyGroup>
<TargetFrameworks>net9.0</TargetFrameworks>
<TargetFrameworks>net9.0;net10.0</TargetFrameworks>
<IsTestProject>true</IsTestProject>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
Expand All @@ -16,15 +16,12 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.Logging" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" />
<PackageReference Include="System.ValueTuple" />
<PackageReference Update="Microsoft.NET.Test.Sdk" VersionOverride="17.14.1" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Yllibed.HttpServer.Json\Yllibed.HttpServer.Json.csproj" />
<ProjectReference Include="..\Yllibed.HttpServer\Yllibed.HttpServer.csproj" />

<Compile Include="..\Yllibed.HttpServer.Tests\SseTestClient.cs" Link="Shared\SseTestClient.cs" />
</ItemGroup>
</Project>
1 change: 1 addition & 0 deletions Yllibed.HttpServer.Json/Yllibed.HttpServer.Json.csproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<PackageId>Yllibed.HttpServer.Json</PackageId>
<Title>Yllibed HttpServer Json Adapter</Title>
<Product>Yllibed HttpServer Json Adapter</Product>
Expand Down
4 changes: 1 addition & 3 deletions Yllibed.HttpServer.Tests/Yllibed.HttpServer.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="MSTest.Sdk/3.10.4">
<PropertyGroup>
<TargetFrameworks>net9.0</TargetFrameworks>
<TargetFrameworks>net9.0;net10.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>

Expand All @@ -18,8 +18,6 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="System.Diagnostics.DiagnosticSource" />
<PackageReference Include="System.ValueTuple" />
<PackageReference Update="Microsoft.NET.Test.Sdk" VersionOverride="17.14.1" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion Yllibed.HttpServer/Yllibed.HttpServer.csproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net8.0;net9.0;net10.0</TargetFrameworks>
<PackageId>Yllibed.HttpServer</PackageId>
<Title>Yllibed HttpServer</Title>
<Product>Yllibed HttpServer</Product>
Expand All @@ -21,6 +22,5 @@

<ItemGroup Condition="'$(TargetFramework)'=='netstandard2.0'">
<PackageReference Include="System.Collections.Immutable" />
<PackageReference Include="System.ValueTuple" />
</ItemGroup>
</Project>