-
Notifications
You must be signed in to change notification settings - Fork 45
/
GenericRepository.sln
79 lines (79 loc) · 5.59 KB
/
GenericRepository.sln
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GenericRepository", "src\GenericRepository\GenericRepository.csproj", "{E84FD26D-1670-4EB7-97AC-5501E0ED85FD}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{1723F543-EA5C-4397-9ED7-57C391ED2A94}"
ProjectSection(SolutionItems) = preProject
.nuget\NuGet.Config = .nuget\NuGet.Config
.nuget\NuGet.exe = .nuget\NuGet.exe
.nuget\NuGet.targets = .nuget\NuGet.targets
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GenericRepository.EntityFramework", "src\GenericRepository.EntityFramework\GenericRepository.EntityFramework.csproj", "{06C14AB3-FE2A-4119-89DF-70E7C410A8FF}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".build", ".build", "{0FA9D119-36B3-4EA6-B4AA-289B5D0AE591}"
ProjectSection(SolutionItems) = preProject
scripts\GenericRepository.msbuild = scripts\GenericRepository.msbuild
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{2B2D98B0-15AE-4EE2-91EE-E961D28B958F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GenericRepository.EntityFramework.Test", "tests\GenericRepository.EntityFramework.Test\GenericRepository.EntityFramework.Test.csproj", "{22B26FE9-10AC-48D5-B0A5-89FC7CCEF046}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GenericRepository.Test", "tests\GenericRepository.Test\GenericRepository.Test.csproj", "{D3822597-788D-4B72-9CC4-B8BCE4D36F61}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Samples", "Samples", "{19B04E2F-751E-4EFB-976D-C6CDD9C955A3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GenericRepository.EntityFramework.SampleCore", "samples\GenericRepository.EntityFramework.SampleCore\GenericRepository.EntityFramework.SampleCore.csproj", "{8A2836B4-550C-418E-A308-3879EE745BFF}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GenericRepository.EntityFramework.SampleWebApi", "samples\GenericRepository.EntityFramework.SampleWebApi\GenericRepository.EntityFramework.SampleWebApi.csproj", "{0CF44FAB-D0D4-4ECD-B7B8-086E765C6999}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GenericRepository.EntityFramework.SampleWebApi.Test", "samples\GenericRepository.EntityFramework.SampleWebApi.Test\GenericRepository.EntityFramework.SampleWebApi.Test.csproj", "{EC023D62-F9E8-4770-8A5C-62C5BD98B652}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{E84FD26D-1670-4EB7-97AC-5501E0ED85FD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E84FD26D-1670-4EB7-97AC-5501E0ED85FD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E84FD26D-1670-4EB7-97AC-5501E0ED85FD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E84FD26D-1670-4EB7-97AC-5501E0ED85FD}.Release|Any CPU.Build.0 = Release|Any CPU
{06C14AB3-FE2A-4119-89DF-70E7C410A8FF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{06C14AB3-FE2A-4119-89DF-70E7C410A8FF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{06C14AB3-FE2A-4119-89DF-70E7C410A8FF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{06C14AB3-FE2A-4119-89DF-70E7C410A8FF}.Release|Any CPU.Build.0 = Release|Any CPU
{22B26FE9-10AC-48D5-B0A5-89FC7CCEF046}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{22B26FE9-10AC-48D5-B0A5-89FC7CCEF046}.Debug|Any CPU.Build.0 = Debug|Any CPU
{22B26FE9-10AC-48D5-B0A5-89FC7CCEF046}.Release|Any CPU.ActiveCfg = Release|Any CPU
{22B26FE9-10AC-48D5-B0A5-89FC7CCEF046}.Release|Any CPU.Build.0 = Release|Any CPU
{D3822597-788D-4B72-9CC4-B8BCE4D36F61}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D3822597-788D-4B72-9CC4-B8BCE4D36F61}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D3822597-788D-4B72-9CC4-B8BCE4D36F61}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D3822597-788D-4B72-9CC4-B8BCE4D36F61}.Release|Any CPU.Build.0 = Release|Any CPU
{8A2836B4-550C-418E-A308-3879EE745BFF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8A2836B4-550C-418E-A308-3879EE745BFF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8A2836B4-550C-418E-A308-3879EE745BFF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8A2836B4-550C-418E-A308-3879EE745BFF}.Release|Any CPU.Build.0 = Release|Any CPU
{0CF44FAB-D0D4-4ECD-B7B8-086E765C6999}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0CF44FAB-D0D4-4ECD-B7B8-086E765C6999}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0CF44FAB-D0D4-4ECD-B7B8-086E765C6999}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0CF44FAB-D0D4-4ECD-B7B8-086E765C6999}.Release|Any CPU.Build.0 = Release|Any CPU
{EC023D62-F9E8-4770-8A5C-62C5BD98B652}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EC023D62-F9E8-4770-8A5C-62C5BD98B652}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EC023D62-F9E8-4770-8A5C-62C5BD98B652}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EC023D62-F9E8-4770-8A5C-62C5BD98B652}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{22B26FE9-10AC-48D5-B0A5-89FC7CCEF046} = {2B2D98B0-15AE-4EE2-91EE-E961D28B958F}
{D3822597-788D-4B72-9CC4-B8BCE4D36F61} = {2B2D98B0-15AE-4EE2-91EE-E961D28B958F}
{8A2836B4-550C-418E-A308-3879EE745BFF} = {19B04E2F-751E-4EFB-976D-C6CDD9C955A3}
{0CF44FAB-D0D4-4ECD-B7B8-086E765C6999} = {19B04E2F-751E-4EFB-976D-C6CDD9C955A3}
{EC023D62-F9E8-4770-8A5C-62C5BD98B652} = {19B04E2F-751E-4EFB-976D-C6CDD9C955A3}
EndGlobalSection
EndGlobal