Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
build: update nuget packages, jump to .NET 9
Signed-off-by: Kenny Pflug <[email protected]>
  • Loading branch information
feO2x committed Mar 25, 2025
commit 7a107cb5a406d6006993a05cf6869f3641932a33
10 changes: 5 additions & 5 deletions Code/Light.SharedCore.Tests/Light.SharedCore.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
<Import Project="Light.SharedCore.Tests.Local.props" Condition="Exists('Light.SharedCore.Tests.Local.props')" />

<PropertyGroup>
<TargetFramework Condition="'$(TargetFramework)' == '' AND '$(TargetFrameworks)' == ''">net8.0</TargetFramework>
<TargetFramework Condition="'$(TargetFramework)' == '' AND '$(TargetFrameworks)' == ''">net9.0</TargetFramework>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\Light.SharedCore\Light.SharedCore.csproj" />
<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" PrivateAssets="all" />
<PackageReference Include="FluentAssertions" Version="6.12.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.2" PrivateAssets="all" />
<PackageReference Include="FluentAssertions" Version="[7.0.0]" />
<PackageReference Include="Light.Xunit" Version="1.0.0" />
</ItemGroup>

Expand Down
18 changes: 9 additions & 9 deletions Code/Light.SharedCore/Light.SharedCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
<Nullable>enable</Nullable>
<LangVersion>12.0</LangVersion>
<LangVersion>13.0</LangVersion>
<Version>2.0.0</Version>
<Authors>Kenny Pflug</Authors>
<Company>Kenny Pflug</Company>
Expand All @@ -24,21 +24,21 @@
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<PackageReleaseNotes>
Light.SharedCore 2.0.0
--------------------------------
Light.SharedCore 2.0.0
--------------------------------

- removed IAsyncFactory and service provider extensions
- DatabaseAccessAbstractions is the new namespace containing session interfaces
- reduced external dependencies
- read all docs at https://github.com/feO2x/Light.SharedCore
- removed IAsyncFactory and service provider extensions
- DatabaseAccessAbstractions is the new namespace containing session interfaces
- reduced external dependencies
- read all docs at https://github.com/feO2x/Light.SharedCore
</PackageReleaseNotes>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Light.GuardClauses" Version="11.0.0" />
<PackageReference Include="Light.GuardClauses" Version="13.0.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="all" />
<PackageReference Include="IsExternalInit" Version="1.0.3" PrivateAssets="all" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.3" />
</ItemGroup>

<ItemGroup>
Expand Down