|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFrameworks>net6.0</TargetFrameworks> |
| 4 | + <TargetFrameworks>netstandard2.1;net6.0</TargetFrameworks> |
5 | 5 | <GenerateDocumentationFile>true</GenerateDocumentationFile> |
6 | 6 | </PropertyGroup> |
7 | 7 |
|
8 | | - <ItemGroup> |
| 8 | + |
| 9 | + <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.1'"> |
| 10 | + <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.10" /> |
| 11 | + <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="5.0.10" /> |
| 12 | + <PackageReference Include="Microsoft.EntityFrameworkCore.Cosmos" Version="5.0.10" /> |
| 13 | + <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="5.0.10" /> |
| 14 | + <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.10" /> |
| 15 | + <PackageReference Include="Microsoft.Extensions.Configuration" Version="5.0.0" /> |
| 16 | + <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="5.0.0" /> |
| 17 | + <PackageReference Include="Microsoft.Data.SqlClient" Version="3.0.1" /> |
| 18 | + <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="5.0.10" /> |
| 19 | + <PackageReference Include="Respawn" Version="4.0.0" /> |
| 20 | + <PackageReference Include="xunit.assert" Version="2.4.1" /> |
| 21 | + <PackageReference Include="xunit.core" Version="2.4.1" /> |
| 22 | + </ItemGroup> |
| 23 | + |
| 24 | + <ItemGroup Condition=" '$(TargetFramework)' == 'net6.0'"> |
9 | 25 | <PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.0-rc.2.21480.5" /> |
10 | 26 | <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.0-rc.2.21480.5" /> |
11 | 27 | <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.0-rc.2.21480.5" /> |
|
23 | 39 |
|
24 | 40 | <PropertyGroup> |
25 | 41 | <PackageId>EfCore.TestSupport</PackageId> |
26 | | - <PackageVersion>6.0.0-preview001</PackageVersion> |
27 | | - <Version>6.0.0</Version> |
28 | | - <AssemblyVersion>6.0.0.0</AssemblyVersion> |
29 | | - <FileVersion>6.0.0.0</FileVersion> |
| 42 | + <PackageVersion>5.1.0-preview001</PackageVersion> |
| 43 | + <Version>5.1.0</Version> |
| 44 | + <AssemblyVersion>5.1.0.0</AssemblyVersion> |
| 45 | + <FileVersion>5.1.0.0</FileVersion> |
30 | 46 | <Authors>Jon P Smith</Authors> |
31 | 47 | <Description>Useful tools when unit testing applications that use Entity Framework Core. See readme file on github.</Description> |
32 | 48 | <PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> |
33 | 49 | <PackageReleaseNotes> |
34 | | -- Updated to Net6-rc.2 preview |
| 50 | +- Updated to support Net5 and Net6-rc.2 preview |
35 | 51 | - Added PostgreSQL database helpers |
36 | 52 | - Added the Seed Database feature back in at request of users |
37 | 53 | </PackageReleaseNotes> |
|
0 commit comments