|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFrameworks>netstandard2.1;net6.0;net7.0</TargetFrameworks> |
| 4 | + <TargetFrameworks>netstandard2.1;net6.0;net7.0;net8.0</TargetFrameworks> |
5 | 5 | <LangVersion>latest</LangVersion> |
6 | 6 | <Nullable>enable</Nullable> |
7 | 7 | <SignAssembly>True</SignAssembly> |
8 | 8 | <AssemblyOriginatorKeyFile>..\DistributedFileStorage.snk</AssemblyOriginatorKeyFile> |
9 | | - <AssemblyVersion>1.0.3</AssemblyVersion> |
10 | | - <FileVersion>1.0.3</FileVersion> |
11 | | - <Version>1.0.3</Version> |
| 9 | + <AssemblyVersion>1.1.0</AssemblyVersion> |
| 10 | + <FileVersion>1.1.0</FileVersion> |
| 11 | + <Version>1.1.0</Version> |
12 | 12 | <Company></Company> |
13 | 13 | <Authors>Leonid Salavatov</Authors> |
14 | | - <Copyright>Leonid Salavatov 2022</Copyright> |
| 14 | + <Copyright>Leonid Salavatov 2024</Copyright> |
15 | 15 | <PackageId>DistributedFileStorage.EntityFrameworkCore</PackageId> |
16 | 16 | <Product>DistributedFileStorage.EntityFrameworkCore</Product> |
17 | 17 | <Title>DistributedFileStorage.EntityFrameworkCore</Title> |
|
32 | 32 | </ItemGroup> |
33 | 33 |
|
34 | 34 | <ItemGroup> |
35 | | - <PackageReference Include="Newtonsoft.Json" Version="13.0.1" /> |
| 35 | + <PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> |
36 | 36 | </ItemGroup> |
37 | 37 |
|
38 | | - <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.1'"> |
39 | | - <PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.17" /> |
| 38 | + <ItemGroup Condition="'$(TargetFramework)' == 'net8.0'"> |
| 39 | + <PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.1" /> |
40 | 40 | </ItemGroup> |
41 | | - |
42 | | - <ItemGroup Condition="'$(TargetFramework)' != 'netstandard2.1'"> |
43 | | - <PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.0" /> |
| 41 | + |
| 42 | + <ItemGroup Condition="'$(TargetFramework)' == 'net7.0' Or '$(TargetFramework)' == 'net6.0'"> |
| 43 | + <PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.14" /> |
44 | 44 | </ItemGroup> |
45 | 45 |
|
| 46 | + <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.1'"> |
| 47 | + <PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.17" /> |
| 48 | + </ItemGroup> |
46 | 49 | </Project> |
0 commit comments