Skip to content

Commit 2dc252c

Browse files
committed
feat(project): add net10.0 support and update packages
Adds .NET 10.0 as a target framework for both FileCurator and FileCurator.Tests projects, removes obsolete package references, and updates analyzer dependencies. - Add net10.0 to TargetFrameworks in both project files - Remove System.IO.FileSystem, System.Net.Requests, and System.Threading.Tasks.Parallel package references - Update Microsoft.SourceLink.GitHub and Microsoft.CodeAnalysis.NetAnalyzers to version 10.0.200
1 parent eb69d76 commit 2dc252c

2 files changed

Lines changed: 4 additions & 7 deletions

File tree

FileCurator.Tests/FileCurator.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Description>Tests for FileCurator</Description>
55
<AssemblyTitle>FileCurator.Tests</AssemblyTitle>
66
<Authors>James Craig</Authors>
7-
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
7+
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
88
<DebugType>portable</DebugType>
99
<AssemblyName>FileCurator.Tests</AssemblyName>
1010
<PackageId>FileCurator.Tests</PackageId>

FileCurator/FileCurator.csproj

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Description>FileCurator is a simple manager for your files. It tries to give them a common interface to deal with files whether on your system or other locations.</Description>
55
<AssemblyTitle>FileCurator</AssemblyTitle>
66
<Authors>James Craig</Authors>
7-
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
7+
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
88
<GenerateDocumentationFile>true</GenerateDocumentationFile>
99
<AssemblyName>FileCurator</AssemblyName>
1010
<PackageId>FileCurator</PackageId>
@@ -51,11 +51,8 @@
5151
<PackageReference Include="HtmlAgilityPack" Version="1.12.4" />
5252
<PackageReference Include="MimeKit" Version="4.15.1" />
5353
<PackageReference Include="PdfPig" Version="0.1.13" />
54-
<PackageReference Include="System.IO.FileSystem" Version="4.3.0" />
55-
<PackageReference Include="System.Net.Requests" Version="4.3.0" />
56-
<PackageReference Include="System.Threading.Tasks.Parallel" Version="4.3.0" />
57-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.103" PrivateAssets="All" />
58-
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.103">
54+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.200" PrivateAssets="All" />
55+
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.200">
5956
<PrivateAssets>all</PrivateAssets>
6057
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
6158
</PackageReference>

0 commit comments

Comments
 (0)