diff options
author | crupest <crupest@outlook.com> | 2019-12-10 13:52:39 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-12-10 13:52:39 +0800 |
commit | b89ecc4e9eecec7bd22b0f35db60dd26b7098799 (patch) | |
tree | aa276d7733bfd90258c018b5c00287f8b6e8499c /Timeline.Tests | |
parent | f2ca682f8d111112adc167dcf62011676c3ceb00 (diff) | |
download | timeline-b89ecc4e9eecec7bd22b0f35db60dd26b7098799.tar.gz timeline-b89ecc4e9eecec7bd22b0f35db60dd26b7098799.tar.bz2 timeline-b89ecc4e9eecec7bd22b0f35db60dd26b7098799.zip |
Migrate to DotNetCore 3.1 .
Diffstat (limited to 'Timeline.Tests')
-rw-r--r-- | Timeline.Tests/Timeline.Tests.csproj | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Timeline.Tests/Timeline.Tests.csproj b/Timeline.Tests/Timeline.Tests.csproj index 61ccfcc0..0845d1ab 100644 --- a/Timeline.Tests/Timeline.Tests.csproj +++ b/Timeline.Tests/Timeline.Tests.csproj @@ -1,7 +1,7 @@ <Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
- <TargetFramework>netcoreapp3.0</TargetFramework>
+ <TargetFramework>netcoreapp3.1</TargetFramework>
<LangVersion>8.0</LangVersion>
</PropertyGroup>
@@ -13,12 +13,12 @@ </PackageReference>
<PackageReference Include="FluentAssertions" Version="5.9.0" />
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="5.2.7" />
- <PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="3.0.0" />
- <PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.7">
+ <PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="3.1.0" />
+ <PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.8">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
- <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.0.1" />
+ <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.1.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.4.0" />
<PackageReference Include="Moq" Version="4.13.1" />
<PackageReference Include="xunit" Version="2.4.1" />
|