Skip to content

Commit 2fb7539

Browse files
authored
Update to .NET SDK 10.0.102, modernize test dependencies, and extend copyright to 2026 (#12)
1 parent 23794ff commit 2fb7539

6 files changed

Lines changed: 14 additions & 9 deletions

File tree

.github/workflows/build-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup .NET
1717
uses: actions/setup-dotnet@v5.0.0
1818
with:
19-
dotnet-version: 9.0.305
19+
dotnet-version: 10.0.102
2020
- name: Restore dependencies
2121
run: dotnet restore
2222
- name: Build

.github/workflows/pack-and-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup .NET
1616
uses: actions/setup-dotnet@v5.0.0
1717
with:
18-
dotnet-version: 9.0.305
18+
dotnet-version: 10.0.102
1919
- name: Restore dependencies
2020
run: dotnet restore
2121
- name: Build

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2019-2022 Dave Curylo
1+
Copyright 2019-2026 Dave Curylo
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
44

global.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"sdk": {
3+
"version": "10.0.102"
4+
}
5+
}

src/FsPdf/FsPdf.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<TargetFramework>netstandard2.0</TargetFramework>
44
<Description>Builds PDF's from pure F#</Description>
5-
<Copyright>Copyright 2019-2025 Dave Curylo</Copyright>
5+
<Copyright>Copyright 2019-2026 Dave Curylo</Copyright>
66
<Authors>Dave Curylo</Authors>
77
<PackageId>FsPdf</PackageId>
88
<PackageTags>pdf;fsharp</PackageTags>
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net9.0</TargetFramework>
3+
<TargetFramework>net10.0</TargetFramework>
44
<IsPackable>false</IsPackable>
55
<GenerateProgramFile>true</GenerateProgramFile>
66
</PropertyGroup>
@@ -11,12 +11,12 @@
1111
<ProjectReference Include="..\..\src\FsPdf\FsPdf.fsproj" />
1212
</ItemGroup>
1313
<ItemGroup>
14-
<PackageReference Include="xunit" Version="2.4.1" />
15-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
16-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
14+
<PackageReference Include="xunit" Version="2.9.3" />
15+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
16+
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
1717
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1818
<PrivateAssets>all</PrivateAssets>
1919
</PackageReference>
20-
<PackageReference Include="coverlet.collector" Version="3.1.2" />
20+
<PackageReference Include="coverlet.collector" Version="6.0.4" />
2121
</ItemGroup>
2222
</Project>

0 commit comments

Comments
 (0)