Skip to content

Commit

Permalink
Merge pull request #81 from lahma/license-expression-updates
Browse files Browse the repository at this point in the history
Drop NET 5 and 7 support, upgrade dependencies
  • Loading branch information
totpero authored Aug 6, 2024
2 parents 083d50a + 5d37410 commit f6a3bcc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="PCRE.NET" Version="1.0.0" />
<PackageReference Include="PCRE.NET" Version="1.1.0" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions DeviceDetector.NET.Tests/DeviceDetector.NET.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
<ItemGroup>
<PackageReference Include="FluentAssertions" Version="6.12.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="xunit" Version="2.8.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.1">
<PackageReference Include="xunit" Version="2.9.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
16 changes: 4 additions & 12 deletions DeviceDetector.NET/DeviceDetector.NET.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;Net462;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net462;net6.0;net8.0</TargetFrameworks>
<RootNamespace>DeviceDetectorNET</RootNamespace>
<Version>6.3.3</Version>
<Authors>totpero</Authors>
Expand Down Expand Up @@ -31,18 +31,10 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="LiteDB" Version="5.0.20" />
<PackageReference Include="LiteDB" Version="5.0.21" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="YamlDotNet" Version="15.1.6" />

<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" Condition="'$(TargetFramework)' == 'net8.0'" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="7.0.0" Condition="'$(TargetFramework)' == 'net7.0'" />

<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0" Condition="'$(TargetFramework)' == 'net6.0'" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" Condition="'$(TargetFramework)' == 'net5.0'" />

<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="7.0.0" Condition="'$(TargetFramework)' == 'net462'" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" Condition="'$(TargetFramework)' == 'netstandard2.0'" />
<PackageReference Include="YamlDotNet" Version="16.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit f6a3bcc

Please sign in to comment.