|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFrameworks>net8.0</TargetFrameworks> |
5 | | - <Version>5.0.0-beta.1</Version> |
| 4 | + <TargetFrameworks>net8.0; net9.0</TargetFrameworks> |
| 5 | + <Version>5.0.0-beta.2</Version> |
6 | 6 | <Authors>Calabonga</Authors> |
7 | 7 | <Company>Calabonga SOFT</Company> |
8 | 8 | <Copyright>Calabonga SOFT © 2001-$([System.DateTime]::Now.ToString(yyyy))</Copyright> |
9 | | - <Description>Unit of Work implementation for EntityFramework Core. For more information please see Calabonga.UnitOfWork package. Perhaps, you might find more information on youtube.com/sergeicalabonga and www.calabonga.net</Description> |
| 9 | + <Description>Unit of Work implementation for EntityFramework Core. For more information please see Calabonga.UnitOfWork package.</Description> |
10 | 10 | <PackageLicenseExpression>MIT</PackageLicenseExpression> |
11 | 11 | <PackageIcon>logo.png</PackageIcon> |
12 | 12 | <PackageTags>Calabonga EntityFrameworkCore UnitOfWork Repository Extenstion Helper unitofowrk ORM pagination PagedList pattern</PackageTags> |
13 | | - <PackageReleaseNotes>TrackingType paramter eter createadded to split Nwith NoTraking, Trakcincnking asnnd NoTrackingWithIdentityResolution DbSet operations.</PackageReleaseNotes> |
| 13 | + <PackageReleaseNotes>TrackingType parameter created to split type of changes tracking for DbContext operations: NoTraking, Tracking and NoTrackingWithIdentityResolution.</PackageReleaseNotes> |
14 | 14 | <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
15 | 15 | <PackageProjectUrl>https://www.calabonga.net</PackageProjectUrl> |
16 | 16 | <Nullable>enable</Nullable> |
17 | 17 | <PackageReadmeFile>README.md</PackageReadmeFile> |
18 | 18 | <RepositoryUrl>https://github.com/Calabonga/UnitOfWork</RepositoryUrl> |
19 | 19 | <RepositoryType>git</RepositoryType> |
| 20 | + <IncludeSymbols>true</IncludeSymbols> |
| 21 | + <IncludeSource>true</IncludeSource> |
| 22 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 23 | + <Deterministic>true</Deterministic> |
20 | 24 | </PropertyGroup> |
21 | 25 |
|
22 | 26 | <ItemGroup> |
23 | 27 | <PackageReference Include="Calabonga.PagedListCore" Version="1.0.4" /> |
24 | | - <PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.10" /> |
25 | | - <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.10" /> |
| 28 | + |
| 29 | + <PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.11" Condition="'$(TargetFramework)' == 'net8.0'" /> |
| 30 | + <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.11" Condition="'$(TargetFramework)' == 'net8.0'" /> |
| 31 | + |
| 32 | + <PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.0" Condition="'$(TargetFramework)' == 'net9.0'" /> |
| 33 | + <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="9.0.0" Condition="'$(TargetFramework)' == 'net9.0'" /> |
26 | 34 | </ItemGroup> |
27 | 35 |
|
28 | 36 | <ItemGroup> |
29 | 37 | <None Include="..\..\README.md"> |
30 | 38 | <Pack>True</Pack> |
31 | 39 | <PackagePath>\</PackagePath> |
32 | 40 | </None> |
33 | | - <None Include="logo.png" Pack="true" PackagePath="\" /> |
34 | | - </ItemGroup> |
35 | | - |
36 | | - <ItemGroup> |
37 | | - <None Update="README.md"> |
38 | | - <Pack>True</Pack> |
39 | | - <PackagePath>\</PackagePath> |
40 | | - </None> |
| 41 | + <None Include="logo.png"> |
| 42 | + <Pack>True</Pack> |
| 43 | + <PackagePath>\</PackagePath> |
| 44 | + </None> |
41 | 45 | </ItemGroup> |
42 | 46 |
|
43 | 47 | </Project> |
0 commit comments