Skip to content

Commit d1306f6

Browse files
committed
Move entity classes to EF-Independent project
1 parent 06b7ff9 commit d1306f6

19 files changed

+34
-2
lines changed

MR.AspNet.Identity.EntityFramework6.sln

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 15
4-
VisualStudioVersion = 15.0.26730.3
4+
VisualStudioVersion = 15.0.27130.2036
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{0670E6AF-F20A-41C5-A0D6-B882911A6B57}"
77
EndProject
@@ -42,6 +42,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MR.AspNet.Identity.EntityFr
4242
EndProject
4343
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Key.Int", "samples\Key.Int\Key.Int.csproj", "{1DD7BD7F-AD83-40B0-94EB-1358E30F1C5C}"
4444
EndProject
45+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MR.AspNet.Identity.EntityFramework6.Model", "src\MR.AspNet.Identity.EntityFramework6.Model\MR.AspNet.Identity.EntityFramework6.Model.csproj", "{F2D0ACFC-8E54-4D8D-99F9-9F9EA5AAA762}"
46+
EndProject
4547
Global
4648
GlobalSection(SolutionConfigurationPlatforms) = preSolution
4749
Debug|Any CPU = Debug|Any CPU
@@ -76,6 +78,10 @@ Global
7678
{1DD7BD7F-AD83-40B0-94EB-1358E30F1C5C}.Debug|Any CPU.Build.0 = Debug|Any CPU
7779
{1DD7BD7F-AD83-40B0-94EB-1358E30F1C5C}.Release|Any CPU.ActiveCfg = Release|Any CPU
7880
{1DD7BD7F-AD83-40B0-94EB-1358E30F1C5C}.Release|Any CPU.Build.0 = Release|Any CPU
81+
{F2D0ACFC-8E54-4D8D-99F9-9F9EA5AAA762}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
82+
{F2D0ACFC-8E54-4D8D-99F9-9F9EA5AAA762}.Debug|Any CPU.Build.0 = Debug|Any CPU
83+
{F2D0ACFC-8E54-4D8D-99F9-9F9EA5AAA762}.Release|Any CPU.ActiveCfg = Release|Any CPU
84+
{F2D0ACFC-8E54-4D8D-99F9-9F9EA5AAA762}.Release|Any CPU.Build.0 = Release|Any CPU
7985
EndGlobalSection
8086
GlobalSection(SolutionProperties) = preSolution
8187
HideSolutionNode = FALSE
@@ -88,6 +94,7 @@ Global
8894
{F3B96F9E-6CF3-41E1-9351-F03897390A1C} = {0670E6AF-F20A-41C5-A0D6-B882911A6B57}
8995
{CD7BED02-2DD8-4793-A8BE-B0ACB16AA712} = {0670E6AF-F20A-41C5-A0D6-B882911A6B57}
9096
{1DD7BD7F-AD83-40B0-94EB-1358E30F1C5C} = {C5F42168-4469-4F0A-9E0E-E86A5D220857}
97+
{F2D0ACFC-8E54-4D8D-99F9-9F9EA5AAA762} = {0670E6AF-F20A-41C5-A0D6-B882911A6B57}
9198
EndGlobalSection
9299
GlobalSection(ExtensibilityGlobals) = postSolution
93100
SolutionGuid = {996A6497-B28F-4390-912A-60FD6B74671C}

build.cake

+5-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,11 @@ Task("Clean")
1212
{
1313
if (DirectoryExists("./artifacts"))
1414
{
15-
DeleteDirectory("./artifacts", true);
15+
DeleteDirectory("./artifacts", new DeleteDirectorySettings {
16+
Recursive = true,
17+
Force = true
18+
});
19+
1620
}
1721
});
1822

src/MR.AspNet.Identity.EntityFramework6.Key.Int/MR.AspNet.Identity.EntityFramework6.Key.Int.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11+
<ProjectReference Include="..\MR.AspNet.Identity.EntityFramework6.Model\MR.AspNet.Identity.EntityFramework6.Model.csproj" />
1112
<ProjectReference Include="..\MR.AspNet.Identity.EntityFramework6\MR.AspNet.Identity.EntityFramework6.csproj" />
1213
<ProjectReference Include="..\MR.AspNet.Identity.EntityFramework6.InMemory\MR.AspNet.Identity.EntityFramework6.InMemory.csproj" />
1314
</ItemGroup>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netstandard1.3</TargetFramework>
5+
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
6+
<Version>3.0.4</Version>
7+
<Authors>Mohammad Rahhal @mrahhal</Authors>
8+
<Company>Mohammad Rahhal @mrahhal</Company>
9+
<Product>MR.AspNet.Identity.EntityFramework6.Model</Product>
10+
<Description>Entities for MR.AspNet.Identity.EntityFramework6</Description>
11+
<PackageLicenseUrl>https://github.com/mrahhal/MR.AspNet.Identity.EntityFramework6/blob/master/LICENSE.txt</PackageLicenseUrl>
12+
<PackageProjectUrl>https://github.com/mrahhal/MR.AspNet.Identity.EntityFramework6</PackageProjectUrl>
13+
<PackageTags>aspnetcore;aspnet;identity;inmemory;testing</PackageTags>
14+
</PropertyGroup>
15+
16+
</Project>

src/MR.AspNet.Identity.EntityFramework6/MR.AspNet.Identity.EntityFramework6.csproj

+4
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,8 @@
1717
<Reference Include="System.Data" />
1818
</ItemGroup>
1919

20+
<ItemGroup>
21+
<ProjectReference Include="..\MR.AspNet.Identity.EntityFramework6.Model\MR.AspNet.Identity.EntityFramework6.Model.csproj" />
22+
</ItemGroup>
23+
2024
</Project>

0 commit comments

Comments
 (0)