|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFramework>net6.0</TargetFramework> |
5 | | - <LangVersion>11.0</LangVersion> |
| 4 | + <TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks> |
| 5 | + <LangVersion>12.0</LangVersion> |
6 | 6 | <ImplicitUsings>enable</ImplicitUsings> |
7 | 7 | <Nullable>enable</Nullable> |
8 | 8 |
|
|
18 | 18 | <RepositoryUrl>https://github.com/ardalis/specification</RepositoryUrl> |
19 | 19 | <PackageTags>spec;specification;repository;ddd;ef;ef core;entity framework;entity framework core</PackageTags> |
20 | 20 | <PackageIcon>icon.png</PackageIcon> |
21 | | - <Version>7.0.0</Version> |
| 21 | + <Version>8.0.0</Version> |
22 | 22 | <PackageReleaseNotes> |
23 | | - * Patch 2 by @davidhenley in https://github.com/ardalis/Specification/pull/283 |
24 | | - * Fix `Just the Docs` link in docs home page by @snowfrogdev in https://github.com/ardalis/Specification/pull/293 |
25 | | - * Update url path by @ta1H3n in https://github.com/ardalis/Specification/pull/303 |
26 | | - * Implement SelectMany support by @amdavie in https://github.com/ardalis/Specification/pull/320 |
27 | | - * Add two methods for consuming repositories in scenarios where repositories could be longer lived (e.g. Blazor component Injections) by @jasonsummers in https://github.com/ardalis/Specification/pull/289 |
28 | | - * Added support for AsAsyncEnumerable by @nkz-soft in https://github.com/ardalis/Specification/pull/316 |
29 | | - * Lamadelrae/doc faq ef versions by @Lamadelrae in https://github.com/ardalis/Specification/pull/324 |
30 | | - * Updated projects, drop support for old TFMs. by @fiseni in https://github.com/ardalis/Specification/pull/326 |
31 | | - * Update the search feature to generate parameterized query. by @fiseni in https://github.com/ardalis/Specification/pull/327 |
32 | | - * Add support for extending default evaluator list by @fiseni in https://github.com/ardalis/Specification/pull/328 |
33 | | - * Ardalis/cleanup by @ardalis in https://github.com/ardalis/Specification/pull/332 |
| 23 | + * Added TFMs net6.0, net7.0 and net8.0 |
34 | 24 | </PackageReleaseNotes> |
35 | 25 | <PublishRepositoryUrl>true</PublishRepositoryUrl> |
36 | 26 | <EmbedUntrackedSources>true</EmbedUntrackedSources> |
|
39 | 29 | </PropertyGroup> |
40 | 30 |
|
41 | 31 | <ItemGroup> |
42 | | - <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" /> |
43 | | - <PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.6" /> |
44 | | - <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.6" /> |
| 32 | + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" /> |
| 33 | + </ItemGroup> |
| 34 | + |
| 35 | + <ItemGroup Condition=" '$(TargetFramework)' == 'net6.0' "> |
| 36 | + <PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.25" /> |
| 37 | + <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.25" /> |
| 38 | + </ItemGroup> |
| 39 | + |
| 40 | + <ItemGroup Condition=" '$(TargetFramework)' == 'net7.0' "> |
| 41 | + <PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.14" /> |
| 42 | + <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="7.0.14" /> |
| 43 | + </ItemGroup> |
| 44 | + |
| 45 | + <ItemGroup Condition=" '$(TargetFramework)' == 'net8.0' "> |
| 46 | + <PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.0" /> |
| 47 | + <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.0" /> |
45 | 48 | </ItemGroup> |
46 | 49 |
|
47 | 50 | <ItemGroup> |
|
0 commit comments