Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jonny-novikov committed Mar 2, 2024
1 parent b56ee7e commit ab2e1c7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ jobs:
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
Expand All @@ -36,7 +35,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.x'
dotnet-version: '8.0.x'
- name: Restore dependencies
run: dotnet restore
- name: Build NuGet
Expand Down
4 changes: 2 additions & 2 deletions Slant.Entity.Tests/Slant.Entity.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
<TargetFramework>net8.0</TargetFramework>
<Nullable>disable</Nullable>
<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FluentAssertions" Version="6.12.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="System.Dynamic.Runtime" Version="4.3.0" />
<PackageReference Include="xunit" Version="2.7.0" />
Expand Down
4 changes: 2 additions & 2 deletions Slant.Entity/Slant.Entity.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<PackageId>Slant.Entity</PackageId>
<Version>8.0.1</Version>
<Version>8.0.2</Version>
<Authors>Mehdi El Gueddari;Ivan Novikov</Authors>
<PackageTags>DbContextScope;DbContext;EF;EFCore;EntityFramework;EntityFrameworkCore;UnitOfWork;AmbientDbContext;AmbientContext;RepositoryPattern</PackageTags>
<Description>A library for managing the lifetime of Entity Framework Core DbContext instances. This package is based on the original DbContextScope repository by Mehdi El Gueddari, updated for .NET 6+ and EF Core, with a number of additional improvements and bug fixes.</Description>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>images\icon.png</PackageIcon>
<RepositoryUrl>https://github.com/jonnynovikov/Slant.Entity</RepositoryUrl>
<Copyright>Copyright (c) 2014 Mehdi El Gueddari; (c) 2023 Ivan Novikov</Copyright>
<Copyright>Copyright (c) 2014 Mehdi El Gueddari; (c) 2016-2024 Ivan Novikov</Copyright>
<RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
Expand Down

0 comments on commit ab2e1c7

Please sign in to comment.