-
Notifications
You must be signed in to change notification settings - Fork 25
/
RedisRateLimiting.sln
53 lines (53 loc) · 3.3 KB
/
RedisRateLimiting.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
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.3.32929.385
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{F267466D-709D-4CC4-9FC7-7DF4C212FC3E}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{D6A4A9C6-F4BD-47A0-A6BC-CE262559E5C6}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RedisRateLimiting.Sample.AspNetCore", "test\RedisRateLimiting.Sample.AspNetCore\RedisRateLimiting.Sample.AspNetCore.csproj", "{5BE4A3E4-9F05-4098-A2A9-FE76CE17BCA6}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RedisRateLimiting", "src\RedisRateLimiting\RedisRateLimiting.csproj", "{A2505BC2-92D6-42B1-8B2A-3272F02C1EAF}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RedisRateLimiting.Tests", "test\RedisRateLimiting.Tests\RedisRateLimiting.Tests.csproj", "{5C0B495C-5C21-4624-8883-720BEC63B8B2}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RedisRateLimiting.AspNetCore", "src\RedisRateLimiting.AspNetCore\RedisRateLimiting.AspNetCore.csproj", "{EF9062B1-D1CB-416D-AB9D-D92956C4921F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{5BE4A3E4-9F05-4098-A2A9-FE76CE17BCA6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5BE4A3E4-9F05-4098-A2A9-FE76CE17BCA6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5BE4A3E4-9F05-4098-A2A9-FE76CE17BCA6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5BE4A3E4-9F05-4098-A2A9-FE76CE17BCA6}.Release|Any CPU.Build.0 = Release|Any CPU
{A2505BC2-92D6-42B1-8B2A-3272F02C1EAF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A2505BC2-92D6-42B1-8B2A-3272F02C1EAF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A2505BC2-92D6-42B1-8B2A-3272F02C1EAF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A2505BC2-92D6-42B1-8B2A-3272F02C1EAF}.Release|Any CPU.Build.0 = Release|Any CPU
{5C0B495C-5C21-4624-8883-720BEC63B8B2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5C0B495C-5C21-4624-8883-720BEC63B8B2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5C0B495C-5C21-4624-8883-720BEC63B8B2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5C0B495C-5C21-4624-8883-720BEC63B8B2}.Release|Any CPU.Build.0 = Release|Any CPU
{EF9062B1-D1CB-416D-AB9D-D92956C4921F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EF9062B1-D1CB-416D-AB9D-D92956C4921F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EF9062B1-D1CB-416D-AB9D-D92956C4921F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EF9062B1-D1CB-416D-AB9D-D92956C4921F}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{5BE4A3E4-9F05-4098-A2A9-FE76CE17BCA6} = {D6A4A9C6-F4BD-47A0-A6BC-CE262559E5C6}
{A2505BC2-92D6-42B1-8B2A-3272F02C1EAF} = {F267466D-709D-4CC4-9FC7-7DF4C212FC3E}
{5C0B495C-5C21-4624-8883-720BEC63B8B2} = {D6A4A9C6-F4BD-47A0-A6BC-CE262559E5C6}
{EF9062B1-D1CB-416D-AB9D-D92956C4921F} = {F267466D-709D-4CC4-9FC7-7DF4C212FC3E}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {C4DA8CE4-B0F4-4ACF-A961-1F1A354B6B89}
EndGlobalSection
EndGlobal