Skip to content

Commit 264a375

Browse files
committed
Update dependencies and .NET version
1 parent 230305a commit 264a375

File tree

2 files changed

+25
-16
lines changed

2 files changed

+25
-16
lines changed

UnitTests/UnitTests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<Nullable>enable</Nullable>
66

77
<IsPackable>false</IsPackable>

Web Toolkit/Web Toolkit.csproj

+24-15
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,48 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.1</TargetFrameworks>
4+
<TargetFrameworks>net8.0</TargetFrameworks>
55
<AssemblyName>NeoSmart.Web</AssemblyName>
66
<RootNamespace>NeoSmart.Web</RootNamespace>
77
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
88
<PackageId>NeoSmart.Web</PackageId>
9-
<Version>3.2.0</Version>
9+
<Version>4.0.0</Version>
1010
<Authors>NeoSmart Technologies, Mahmoud Al-Qudsi, neosmart</Authors>
1111
<Company>NeoSmart Technologies</Company>
1212
<Description>Extension methods and helper classes specifically for the web. Includes a ScopedMutex, SafeLookup helpers for NameValueCollection, FormCollection, and Dictionary types, and dependency-free implementations of client-side signing for S3 and CloudFront. Email validation, DNS lookup, SEO redirection, URL helpers, DateTime conversion to Unix, referer validation, and more.</Description>
13-
<Copyright>Copyright NeoSmart Technologies 2012-2020</Copyright>
13+
<Copyright>Copyright NeoSmart Technologies 2012-2024</Copyright>
1414
<PackageLicenseUrl></PackageLicenseUrl>
1515
<PackageProjectUrl>https://github.com/neosmart/web</PackageProjectUrl>
1616
<RepositoryUrl>https://github.com/neosmart/web</RepositoryUrl>
1717
<RepositoryType>git</RepositoryType>
1818
<PackageTags></PackageTags>
1919
<PackageReleaseNotes>Initial release on nuget for .NET Standard 2.1/.NET Core 3.1</PackageReleaseNotes>
20-
<AssemblyVersion>3.1.2.0</AssemblyVersion>
21-
<FileVersion>3.1.2.0</FileVersion>
2220
<PackageLicenseExpression>MIT</PackageLicenseExpression>
23-
<LangVersion>9.0</LangVersion>
21+
<LangVersion>11.0</LangVersion>
2422
<Nullable>enable</Nullable>
2523
</PropertyGroup>
2624

2725
<ItemGroup>
2826
<PackageReference Include="ARSoft.Tools.Net.Core" Version="2.3.0" />
29-
<PackageReference Include="F23.StringSimilarity" Version="4.1.0" />
30-
<PackageReference Include="Microsoft.AspNetCore.Mvc.ViewFeatures">
31-
<Version>2.2.0</Version>
32-
</PackageReference>
33-
<PackageReference Include="NeoSmart.Collections" Version="1.1.0" />
34-
<PackageReference Include="system.text.json" Version="6.0.1" />
35-
<PackageReference Include="urlbase64" Version="0.1.2" />
36-
<PackageReference Include="xxHash.Core" Version="0.3.0" />
27+
<PackageReference Include="F23.StringSimilarity" Version="6.0.0" />
28+
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
29+
<PackageReference Include="Microsoft.AspNetCore.Http.Features" Version="6.0.0-preview.4.21253.5" />
30+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.5" />
31+
<PackageReference Include="Microsoft.AspNetCore.Mvc.ViewFeatures" Version="2.2.0" />
32+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.2" />
33+
<PackageReference Include="NeoSmart.Collections" Version="1.3.0" />
34+
<PackageReference Include="System.Text.Json" Version="8.0.5" />
35+
<PackageReference Include="urlbase64" Version="2.0.0" />
36+
<PackageReference Include="xxHash.Core" Version="2.0.1" />
3737
</ItemGroup>
38+
<!-- Transitive dependencies we need to manage versions for -->
39+
<ItemGroup>
40+
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
41+
<PackageReference Include="System.Net.Http" Version="4.3.4" />
42+
<PackageReference Include="System.Private.Uri" Version="4.3.2" />
43+
<PackageReference Include="System.Security.Cryptography.Xml" Version="8.0.2" />
44+
<PackageReference Include="System.Text.Encodings.Web" Version="8.0" />
45+
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
46+
</ItemGroup>
3847

3948
</Project>

0 commit comments

Comments
 (0)