-
Notifications
You must be signed in to change notification settings - Fork 7
/
DistCacheSample.sln
67 lines (67 loc) · 4.2 KB
/
DistCacheSample.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
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26730.3
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{306A63CC-5797-4D63-86A1-94025CF8C98A}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Extensions.Caching.PostgreSql", "Extensions.Caching.PostgreSql\Extensions.Caching.PostgreSql.csproj", "{9FD56156-CC11-4C49-9B1B-2FABC4137249}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "PostgreSqlScripts", "PostgreSqlScripts", "{DB294FFE-89B0-4E10-AD5E-587E89208A4D}"
ProjectSection(SolutionItems) = preProject
PostgreSqlScripts\Create_Function_DateDiff.sql = PostgreSqlScripts\Create_Function_DateDiff.sql
PostgreSqlScripts\Create_Function_DeleteCacheItemFormat.sql = PostgreSqlScripts\Create_Function_DeleteCacheItemFormat.sql
PostgreSqlScripts\Create_Function_DeleteExpiredCacheItemsFormat.sql = PostgreSqlScripts\Create_Function_DeleteExpiredCacheItemsFormat.sql
PostgreSqlScripts\Create_Function_GetCacheItemFormat.sql = PostgreSqlScripts\Create_Function_GetCacheItemFormat.sql
PostgreSqlScripts\Create_Function_SetCache.sql = PostgreSqlScripts\Create_Function_SetCache.sql
PostgreSqlScripts\Create_Function_UpdateCacheItemFormat.sql = PostgreSqlScripts\Create_Function_UpdateCacheItemFormat.sql
PostgreSqlScripts\Create_Table_DistCache.sql = PostgreSqlScripts\Create_Table_DistCache.sql
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PostgreSqlCacheSample", "PostgreSqlCacheSample\PostgreSqlCacheSample.csproj", "{0F7E59EB-EE75-494D-8051-4B2BFF3A48FC}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{9FD56156-CC11-4C49-9B1B-2FABC4137249}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9FD56156-CC11-4C49-9B1B-2FABC4137249}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9FD56156-CC11-4C49-9B1B-2FABC4137249}.Debug|x64.ActiveCfg = Debug|Any CPU
{9FD56156-CC11-4C49-9B1B-2FABC4137249}.Debug|x64.Build.0 = Debug|Any CPU
{9FD56156-CC11-4C49-9B1B-2FABC4137249}.Debug|x86.ActiveCfg = Debug|Any CPU
{9FD56156-CC11-4C49-9B1B-2FABC4137249}.Debug|x86.Build.0 = Debug|Any CPU
{9FD56156-CC11-4C49-9B1B-2FABC4137249}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9FD56156-CC11-4C49-9B1B-2FABC4137249}.Release|Any CPU.Build.0 = Release|Any CPU
{9FD56156-CC11-4C49-9B1B-2FABC4137249}.Release|x64.ActiveCfg = Release|Any CPU
{9FD56156-CC11-4C49-9B1B-2FABC4137249}.Release|x64.Build.0 = Release|Any CPU
{9FD56156-CC11-4C49-9B1B-2FABC4137249}.Release|x86.ActiveCfg = Release|Any CPU
{9FD56156-CC11-4C49-9B1B-2FABC4137249}.Release|x86.Build.0 = Release|Any CPU
{0F7E59EB-EE75-494D-8051-4B2BFF3A48FC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0F7E59EB-EE75-494D-8051-4B2BFF3A48FC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0F7E59EB-EE75-494D-8051-4B2BFF3A48FC}.Debug|x64.ActiveCfg = Debug|Any CPU
{0F7E59EB-EE75-494D-8051-4B2BFF3A48FC}.Debug|x64.Build.0 = Debug|Any CPU
{0F7E59EB-EE75-494D-8051-4B2BFF3A48FC}.Debug|x86.ActiveCfg = Debug|Any CPU
{0F7E59EB-EE75-494D-8051-4B2BFF3A48FC}.Debug|x86.Build.0 = Debug|Any CPU
{0F7E59EB-EE75-494D-8051-4B2BFF3A48FC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0F7E59EB-EE75-494D-8051-4B2BFF3A48FC}.Release|Any CPU.Build.0 = Release|Any CPU
{0F7E59EB-EE75-494D-8051-4B2BFF3A48FC}.Release|x64.ActiveCfg = Release|Any CPU
{0F7E59EB-EE75-494D-8051-4B2BFF3A48FC}.Release|x64.Build.0 = Release|Any CPU
{0F7E59EB-EE75-494D-8051-4B2BFF3A48FC}.Release|x86.ActiveCfg = Release|Any CPU
{0F7E59EB-EE75-494D-8051-4B2BFF3A48FC}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{0F7E59EB-EE75-494D-8051-4B2BFF3A48FC} = {306A63CC-5797-4D63-86A1-94025CF8C98A}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {D00EB11C-F086-49F7-B7EC-21CC98017753}
EndGlobalSection
EndGlobal