File tree Expand file tree Collapse file tree 7 files changed +8
-6
lines changed Expand file tree Collapse file tree 7 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ SPDX-License-Identifier: MIT
15
15
<PrivateAssets >all</PrivateAssets >
16
16
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
17
17
</PackageReference >
18
+ <PackageReference Include =" Microsoft.EntityFrameworkCore.Sqlite" />
18
19
</ItemGroup >
19
20
20
21
<ItemGroup >
Original file line number Diff line number Diff line change 2
2
//
3
3
// SPDX-License-Identifier: MIT
4
4
5
+ using System . ComponentModel . DataAnnotations ;
5
6
using Dorssel . EntityFrameworkCore ;
6
7
using Microsoft . EntityFrameworkCore ;
7
- using System . ComponentModel . DataAnnotations ;
8
8
9
9
namespace Example ;
10
10
Original file line number Diff line number Diff line change 4
4
5
5
---
6
6
assembly-file-versioning-format : ' {Major}.{Minor}.{Patch}.{env:GITHUB_RUN_NUMBER ?? 0}'
7
+ next-version : 8.0.0
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ SPDX-License-Identifier: MIT
13
13
[ ![ REUSE status] ( https://api.reuse.software/badge/github.com/dorssel/dotnet-ef-sqlite-timestamp )] ( https://api.reuse.software/info/github.com/dorssel/dotnet-ef-sqlite-timestamp )
14
14
[ ![ NuGet] ( https://img.shields.io/nuget/v/Dorssel.EntityFrameworkCore.Sqlite.Timestamp?logo=nuget )] ( https://www.nuget.org/packages/Dorssel.EntityFrameworkCore.Sqlite.Timestamp )
15
15
16
- Extension for Entity Framework (EF) Core that adds support for SQLite row versioning (` [Timestamp] ` attribute).
16
+ Extension for Entity Framework (EF) Core 8.0 that adds support for SQLite row versioning (` [Timestamp] ` attribute).
17
17
18
18
The implementation is for AnyCPU, and works on all platforms.
19
19
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ SPDX-License-Identifier: MIT
22
22
</ItemGroup >
23
23
24
24
<ItemGroup >
25
- <PackageReference Include =" Microsoft.EntityFrameworkCore.Sqlite" />
25
+ <PackageReference Include =" Microsoft.EntityFrameworkCore.Sqlite" VersionOverride = " 8.0.0 " />
26
26
<PackageReference Include =" Microsoft.SourceLink.GitHub" PrivateAssets =" All" />
27
27
</ItemGroup >
28
28
Original file line number Diff line number Diff line change 2
2
//
3
3
// SPDX-License-Identifier: MIT
4
4
5
+ using Microsoft . EntityFrameworkCore ;
5
6
using Microsoft . EntityFrameworkCore . Metadata ;
6
- using Microsoft . EntityFrameworkCore . Migrations . Operations ;
7
7
using Microsoft . EntityFrameworkCore . Migrations ;
8
- using Microsoft . EntityFrameworkCore ;
8
+ using Microsoft . EntityFrameworkCore . Migrations . Operations ;
9
9
10
10
namespace Dorssel . EntityFrameworkCore . Migrations ;
11
11
Original file line number Diff line number Diff line change 2
2
//
3
3
// SPDX-License-Identifier: MIT
4
4
5
- using Microsoft . EntityFrameworkCore . Storage . ValueConversion ;
6
5
using System . Buffers . Binary ;
6
+ using Microsoft . EntityFrameworkCore . Storage . ValueConversion ;
7
7
8
8
namespace Dorssel . EntityFrameworkCore . Storage . ValueConversion ;
9
9
You can’t perform that action at this time.
0 commit comments