Skip to content

Commit 84e3e01

Browse files
authored
Merge pull request #12 from jamiewinder/fix-dotnet10
add net9/net10 as target frameworks
2 parents cac8ad7 + 378d99a commit 84e3e01

3 files changed

Lines changed: 3 additions & 6 deletions

File tree

CedarDotNet.slnx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,7 @@
2222
<File Path="LICENSE.txt" />
2323
<File Path="README.md" />
2424
</Folder>
25-
<Folder Name="/[root]/.github/">
26-
<File Path=".github/workflows/ci.yml" />
27-
<File Path=".github/workflows/gh-pages.yml" />
28-
</Folder>
25+
<Folder Name="/[root]/.github/" />
2926
<Folder Name="/[root]/.github/workflows/">
3027
<File Path=".github/workflows/ci.yml" />
3128
<File Path=".github/workflows/gh-pages.yml" />

examples/BasicExample/BasicExample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</PropertyGroup>
1111

1212
<ItemGroup>
13-
<ProjectReference Include="..\..\src\CedarDotNet\CedarDotNet.csproj" />
13+
<ProjectReference Include="..\..\src\CedarDotNet\CedarDotNet.csproj" />
1414
</ItemGroup>
1515

1616
</Project>

src/CedarDotNet/CedarDotNet.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<GenerateDocumentationFile>true</GenerateDocumentationFile>

0 commit comments

Comments
 (0)