Skip to content

Commit dc796ce

Browse files
committed
updated deps to netstandard2.1 and netcoreapp3.0
1 parent 37922ff commit dc796ce

File tree

11 files changed

+13
-223
lines changed

11 files changed

+13
-223
lines changed

AspNetOAuth/AspNetOAuth.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp2.1</TargetFramework>
4+
<TargetFramework>netcoreapp3.0</TargetFramework>
55
<UserSecretsId>aspnet-AspNetOAuth-904345F3-FDD8-409D-A758-41152F5B664D</UserSecretsId>
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Microsoft.AspNetCore.All" />
10-
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.2.3" PrivateAssets="All" />
9+
<PackageReference Include="Microsoft.AspNetCore.App" />
10+
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.0.0" PrivateAssets="All" />
1111
</ItemGroup>
1212

1313
<ItemGroup>

Example/Example.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>netcoreapp2.1</TargetFramework>
5+
<TargetFramework>netcoreapp3.0</TargetFramework>
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.2.6" />
10-
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="2.2.6" />
9+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.0.0" />
10+
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="3.0.0" />
1111
</ItemGroup>
1212

1313
<ItemGroup>

FileContextCore-Tests/Data/Base.cs

Lines changed: 0 additions & 23 deletions
This file was deleted.

FileContextCore-Tests/Data/Entry.cs

Lines changed: 0 additions & 15 deletions
This file was deleted.

FileContextCore-Tests/Data/TestContext.cs

Lines changed: 0 additions & 32 deletions
This file was deleted.

FileContextCore-Tests/FileContextCore-Tests.csproj

Lines changed: 0 additions & 22 deletions
This file was deleted.

FileContextCore-Tests/Helper/ModelCreator.cs

Lines changed: 0 additions & 26 deletions
This file was deleted.

FileContextCore-Tests/TransactionTests.cs

Lines changed: 0 additions & 86 deletions
This file was deleted.

FileContextCore.sln

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Example", "Example\Example.
99
EndProject
1010
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AspNetOAuth", "AspNetOAuth\AspNetOAuth.csproj", "{A78088E6-B64B-4D98-96CE-2C30D82E3187}"
1111
EndProject
12-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FileContextCore-Tests", "FileContextCore-Tests\FileContextCore-Tests.csproj", "{8E939885-B2A2-46DD-8255-94349EE01476}"
13-
EndProject
1412
Global
1513
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1614
Debug|Any CPU = Debug|Any CPU
@@ -29,10 +27,6 @@ Global
2927
{A78088E6-B64B-4D98-96CE-2C30D82E3187}.Debug|Any CPU.Build.0 = Debug|Any CPU
3028
{A78088E6-B64B-4D98-96CE-2C30D82E3187}.Release|Any CPU.ActiveCfg = Release|Any CPU
3129
{A78088E6-B64B-4D98-96CE-2C30D82E3187}.Release|Any CPU.Build.0 = Release|Any CPU
32-
{8E939885-B2A2-46DD-8255-94349EE01476}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
33-
{8E939885-B2A2-46DD-8255-94349EE01476}.Debug|Any CPU.Build.0 = Debug|Any CPU
34-
{8E939885-B2A2-46DD-8255-94349EE01476}.Release|Any CPU.ActiveCfg = Release|Any CPU
35-
{8E939885-B2A2-46DD-8255-94349EE01476}.Release|Any CPU.Build.0 = Release|Any CPU
3630
EndGlobalSection
3731
GlobalSection(SolutionProperties) = preSolution
3832
HideSolutionNode = FALSE

FileContextCore/Extensions/FileContextDatabaseFacadeExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ static class FileContextDatabaseFacadeExtensions
2727
/// </para>
2828
/// </summary>
2929
/// <param name="database"> The facade from <see cref="DbContext.Database" />. </param>
30-
/// <returns> True if the in-memory database is being used; false otherwise. </returns>
31-
public static bool IsInMemory([NotNull] this DatabaseFacade database)
30+
/// <returns> True if the filecontext database is being used; false otherwise. </returns>
31+
public static bool IsFileContext([NotNull] this DatabaseFacade database)
3232
=> database.ProviderName.Equals(
3333
typeof(FileContextOptionsExtension).GetTypeInfo().Assembly.GetName().Name,
3434
StringComparison.Ordinal);

0 commit comments

Comments
 (0)