Skip to content

Commit 21606eb

Browse files
feat: add .NET 9 and package lockfile support
BREAKING CHANGE: .NET 6 support removed
1 parent f35b174 commit 21606eb

File tree

2 files changed

+57
-4
lines changed

2 files changed

+57
-4
lines changed

src/Finbuckle.Html5Validation/Finbuckle.Html5Validation.csproj

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net8.0;net6.0</TargetFrameworks>
4+
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
55
<Title>Finbuckle.Html5Validation</Title>
66
<Description>Html5 standard validation support for ASP.NET Core.</Description>
77
<ImplicitUsings>enable</ImplicitUsings>
88
<Nullable>enable</Nullable>
99
<LangVersion>default</LangVersion>
10-
<Version>1.0.1</Version>
10+
<Version>9.0.0</Version>
1111
<Authors>Finbuckle LLC</Authors>
1212
<Copyright>Copyright Finbuckle LLC, Andrew White, and Contributors</Copyright>
1313
<PackageIconUrl>https://www.finbuckle.com/images/finbuckle-128x128.png</PackageIconUrl>
@@ -20,7 +20,11 @@
2020
<PackageIcon>finbuckle-128x128.png</PackageIcon>
2121
<PackageReadmeFile>README.md</PackageReadmeFile>
2222
<GenerateDocumentationFile>true</GenerateDocumentationFile>
23-
<NoWarn>CS1591</NoWarn>
23+
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
24+
<RestoreLockedMode Condition="'$(ContinuousIntegrationBuild)' == 'true'">true</RestoreLockedMode>
25+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
26+
<Nullable>enable</Nullable>
27+
<ImplicitUsings>true</ImplicitUsings>
2428
</PropertyGroup>
2529

2630
<ItemGroup>
@@ -29,7 +33,7 @@
2933
</ItemGroup>
3034

3135
<ItemGroup>
32-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
36+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.*" PrivateAssets="All" />
3337
<FrameworkReference Include="Microsoft.AspNetCore.App" />
3438
</ItemGroup>
3539

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
{
2+
"version": 1,
3+
"dependencies": {
4+
"net8.0": {
5+
"Microsoft.SourceLink.GitHub": {
6+
"type": "Direct",
7+
"requested": "[8.0.*, )",
8+
"resolved": "8.0.0",
9+
"contentHash": "G5q7OqtwIyGTkeIOAc3u2ZuV/kicQaec5EaRnc0pIeSnh9LUjj+PYQrJYBURvDt7twGl2PKA7nSN0kz1Zw5bnQ==",
10+
"dependencies": {
11+
"Microsoft.Build.Tasks.Git": "8.0.0",
12+
"Microsoft.SourceLink.Common": "8.0.0"
13+
}
14+
},
15+
"Microsoft.Build.Tasks.Git": {
16+
"type": "Transitive",
17+
"resolved": "8.0.0",
18+
"contentHash": "bZKfSIKJRXLTuSzLudMFte/8CempWjVamNUR5eHJizsy+iuOuO/k2gnh7W0dHJmYY0tBf+gUErfluCv5mySAOQ=="
19+
},
20+
"Microsoft.SourceLink.Common": {
21+
"type": "Transitive",
22+
"resolved": "8.0.0",
23+
"contentHash": "dk9JPxTCIevS75HyEQ0E4OVAFhB2N+V9ShCXf8Q6FkUQZDkgLI12y679Nym1YqsiSysuQskT7Z+6nUf3yab6Vw=="
24+
}
25+
},
26+
"net9.0": {
27+
"Microsoft.SourceLink.GitHub": {
28+
"type": "Direct",
29+
"requested": "[8.0.*, )",
30+
"resolved": "8.0.0",
31+
"contentHash": "G5q7OqtwIyGTkeIOAc3u2ZuV/kicQaec5EaRnc0pIeSnh9LUjj+PYQrJYBURvDt7twGl2PKA7nSN0kz1Zw5bnQ==",
32+
"dependencies": {
33+
"Microsoft.Build.Tasks.Git": "8.0.0",
34+
"Microsoft.SourceLink.Common": "8.0.0"
35+
}
36+
},
37+
"Microsoft.Build.Tasks.Git": {
38+
"type": "Transitive",
39+
"resolved": "8.0.0",
40+
"contentHash": "bZKfSIKJRXLTuSzLudMFte/8CempWjVamNUR5eHJizsy+iuOuO/k2gnh7W0dHJmYY0tBf+gUErfluCv5mySAOQ=="
41+
},
42+
"Microsoft.SourceLink.Common": {
43+
"type": "Transitive",
44+
"resolved": "8.0.0",
45+
"contentHash": "dk9JPxTCIevS75HyEQ0E4OVAFhB2N+V9ShCXf8Q6FkUQZDkgLI12y679Nym1YqsiSysuQskT7Z+6nUf3yab6Vw=="
46+
}
47+
}
48+
}
49+
}

0 commit comments

Comments
 (0)