forked from tncalvert/DbContextScope
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from dojo90/only-use-netstandart2
changed target framework to netstandart2.0; added default EF Core v2.…
- Loading branch information
Showing
30 changed files
with
277 additions
and
311 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,11 +5,11 @@ | |
<Company>Dominic Jonas</Company> | ||
<Product>DoJo.EntityFrameworkCore.DbContextScope</Product> | ||
<PackageProjectUrl>https://github.com/dojo90/DbContextScope</PackageProjectUrl> | ||
<PackageLicenseUrl>https://raw.githubusercontent.com/dojo90/DbContextScope/master/LICENSE</PackageLicenseUrl> | ||
<PackageLicense>https://raw.githubusercontent.com/dojo90/DbContextScope/master/LICENSE</PackageLicense> | ||
<RepositoryUrl>[email protected]:dojo90/DbContextScope.git</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<PackageTags>sentinel nlog</PackageTags> | ||
<Description>DbContextScope for EF Core. Forked from https://github.com/tncalvert/DbContextScope. </Description> | ||
<Description>DbContextScope for EF v2|v3 Core. Forked from https://github.com/tncalvert/DbContextScope. </Description> | ||
<PackageTags>EntityFramework EFCore DbContext DbContextScope</PackageTags> | ||
</PropertyGroup> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 0 additions & 34 deletions
34
src/DbContextScope.DemoConsoleApp/DbContextScope.DemoConsoleApp.csproj
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
23 changes: 23 additions & 0 deletions
23
src/DbContextScope.EF2.Test/DbContextScope.EF2.Test.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net461;netcoreapp2.0;netcoreapp3.0</TargetFrameworks> | ||
<IsPackable>false</IsPackable> | ||
<RootNamespace>EntityFrameworkCore.DbContextScope.Test</RootNamespace> | ||
<AssemblyName>DoJo.EntityFrameworkCore.DbContextScope.Test</AssemblyName> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" /> | ||
<PackageReference Include="xunit" Version="2.4.0" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" /> | ||
<PackageReference Include="coverlet.collector" Version="1.0.1" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="2.0.0" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="2.0.0" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\DbContextScope\DbContextScope.csproj" /> | ||
</ItemGroup> | ||
</Project> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 4 additions & 5 deletions
9
...inessLogicServices/UserCreationService.cs → ...inessLogicServices/UserCreationService.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 3 additions & 4 deletions
7
...BusinessLogicServices/UserEmailService.cs → ...BusinessLogicServices/UserEmailService.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...nsoleApp/CommandModel/UserCreationSpec.cs → ...EF3.Test/CommandModel/UserCreationSpec.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...atabaseContext/UserManagementDbContext.cs → ...atabaseContext/UserManagementDbContext.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
src/DbContextScope.EF3.Test/DbContextScope.EF3.Test.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net461;netcoreapp2.0;netcoreapp3.0</TargetFrameworks> | ||
<IsPackable>false</IsPackable> | ||
<RootNamespace>EntityFrameworkCore.DbContextScope.Test</RootNamespace> | ||
<AssemblyName>DoJo.EntityFrameworkCore.DbContextScope.Test</AssemblyName> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" /> | ||
<PackageReference Include="xunit" Version="2.4.0" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" /> | ||
<PackageReference Include="coverlet.collector" Version="1.0.1" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="3.1.1" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="3.1.1" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.1" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\DbContextScope\DbContextScope.csproj" /> | ||
</ItemGroup> | ||
</Project> |
Oops, something went wrong.