|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFramework>net8.0</TargetFramework> |
| 4 | + <TargetFrameworks>net8.0;net7.0;net6.0</TargetFrameworks> |
5 | 5 | <GenerateDocumentationFile>true</GenerateDocumentationFile> |
6 | 6 | </PropertyGroup> |
7 | 7 |
|
8 | | - <ItemGroup> |
9 | | - <PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.0-rc.1.23419.6" /> |
10 | | - <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.0-rc.1.23419.6" /> |
11 | | - <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.0-rc.1.23419.6" /> |
12 | | - <PackageReference Include="Microsoft.EntityFrameworkCore.Cosmos" Version="8.0.0-rc.1.23419.6"> |
| 8 | + <ItemGroup Condition=" '$(TargetFramework)' == 'net8.0'"> |
| 9 | + <PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.0-rc.2.23480.1" /> |
| 10 | + <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.0-rc.2.23480.1" /> |
| 11 | + <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.0-rc.2.23480.1" /> |
| 12 | + <PackageReference Include="Microsoft.EntityFrameworkCore.Cosmos" Version="8.0.0-rc.2.23480.1"> |
13 | 13 | <PrivateAssets>all</PrivateAssets> |
14 | 14 | </PackageReference> |
15 | | - <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.0-rc.1.23419.6" /> |
16 | | - <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.0-rc.1.23419.6" /> |
17 | | - <PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0-rc.1.23419.4" /> |
18 | | - <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0-rc.1.23419.4" /> |
| 15 | + <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.0-rc.2.23480.1" /> |
| 16 | + <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.0-rc.2.23480.1" /> |
| 17 | + <PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0-rc.2.23479.6" /> |
| 18 | + <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0-rc.2.23479.6" /> |
19 | 19 | <PackageReference Include="Microsoft.Data.SqlClient" Version="5.1.1" /> |
20 | | - <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.0-rc.1" /> |
| 20 | + <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.0-rc.2" /> |
21 | 21 | <PackageReference Include="xunit.assert" Version="2.5.0" /> |
22 | 22 | <PackageReference Include="xunit.core" Version="2.5.0" /> |
23 | 23 | </ItemGroup> |
24 | 24 |
|
| 25 | + <ItemGroup Condition=" '$(TargetFramework)' == 'net7.0'"> |
| 26 | + <PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.0" /> |
| 27 | + <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.0" /> |
| 28 | + <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="7.0.0" /> |
| 29 | + <PackageReference Include="Microsoft.EntityFrameworkCore.Cosmos" Version="7.0.0"> |
| 30 | + <PrivateAssets>all</PrivateAssets> |
| 31 | + </PackageReference> |
| 32 | + <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.0" /> |
| 33 | + <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.0" /> |
| 34 | + <PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" /> |
| 35 | + <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="7.0.0" /> |
| 36 | + <PackageReference Include="Microsoft.Data.SqlClient" Version="5.0.1" /> |
| 37 | + <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.0" /> |
| 38 | + <PackageReference Include="Respawn" Version="4.0.0" /> |
| 39 | + <PackageReference Include="xunit.assert" Version="2.4.2" /> |
| 40 | + <PackageReference Include="xunit.core" Version="2.4.2" /> |
| 41 | + </ItemGroup> |
| 42 | + |
| 43 | + <ItemGroup Condition=" '$(TargetFramework)' == 'net6.0'"> |
| 44 | + <PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.0" /> |
| 45 | + <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.0" /> |
| 46 | + <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.0" /> |
| 47 | + <PackageReference Include="Microsoft.EntityFrameworkCore.Cosmos" Version="6.0.0"> |
| 48 | + <PrivateAssets>all</PrivateAssets> |
| 49 | + </PackageReference> |
| 50 | + <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.0" /> |
| 51 | + <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.0" /> |
| 52 | + <PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.0" /> |
| 53 | + <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" /> |
| 54 | + <PackageReference Include="Microsoft.Data.SqlClient" Version="3.0.1" /> |
| 55 | + <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="6.0.0" /> |
| 56 | + <PackageReference Include="Respawn" Version="4.0.0" /> |
| 57 | + <PackageReference Include="xunit.assert" Version="2.4.2" /> |
| 58 | + <PackageReference Include="xunit.core" Version="2.4.2" /> |
| 59 | + </ItemGroup> |
| 60 | + |
25 | 61 | <PropertyGroup> |
26 | 62 | <PackageId>EfCore.TestSupport</PackageId> |
27 | | - <PackageVersion>8.0.0-rc1-0001</PackageVersion> |
28 | | - <Version>8.0.0</Version> |
29 | | - <AssemblyVersion>8.0.0.0</AssemblyVersion> |
30 | | - <FileVersion>8.0.0.0</FileVersion> |
| 63 | + <PackageVersion>6.0.0-rc2-0002</PackageVersion> |
| 64 | + <Version>6.0.0</Version> |
| 65 | + <AssemblyVersion>6.0.0.0</AssemblyVersion> |
| 66 | + <FileVersion>6.0.0.0</FileVersion> |
31 | 67 | <Authors>Jon P Smith</Authors> |
32 | 68 | <Description>Useful tools when unit testing applications that use Entity Framework Core. See readme file on github.</Description> |
33 | 69 | <PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> |
34 | 70 | <PackageReleaseNotes> |
35 | | - - New version to support NET 8 rc1 |
| 71 | + - New version to support NET 8 rc2 - now supports NET 6, 7, and 8 |
36 | 72 | </PackageReleaseNotes> |
37 | 73 | <Copyright>Copyright (c) 2020 Jon P Smith. Licenced under MIT licence</Copyright> |
38 | 74 | <PackageTags>Entity Framework Core, xUnit</PackageTags> |
|
0 commit comments