forked from coretech/SqsPoller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SqsPoller.sln
70 lines (70 loc) · 5.1 KB
/
SqsPoller.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
Microsoft Visual Studio Solution File, Format Version 12.00
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{A29714F8-CF39-4A9D-A0A2-188249010260}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SqsPoller", "src\SqsPoller\SqsPoller.csproj", "{28A53530-EDA7-41AC-9C64-F8BA11C755EA}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "sample", "sample", "{805825C5-05D7-46BA-829A-3B565DD8D923}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SqsPoller.Sample.Publisher", "sample\SqsPoller.Sample.Publisher\SqsPoller.Sample.Publisher.csproj", "{DCD48435-D462-4122-AF52-233FCBAAFF1A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SqsPoller.Sample.Subscriber", "sample\SqsPoller.Sample.Subscriber\SqsPoller.Sample.Subscriber.csproj", "{005E71E3-AF7C-443B-A576-E422F637D17C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SqsPoller.Extensions.Publisher", "src\SqsPoller.Extensions.Publisher\SqsPoller.Extensions.Publisher.csproj", "{678BCD73-E26A-445E-BDD2-95301BC18AC1}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{082D2643-6761-496F-BAED-BA0073C64FCB}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SqsPoller.Extensions.Publisher.Tests.Integration", "test\SqsPoller.Extensions.Publisher.Tests.Integration\SqsPoller.Extensions.Publisher.Tests.Integration.csproj", "{7E030327-77F3-4301-AF26-A79A309E1BB1}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SqsPoller.Tests.Unit", "test\SqsPoller.Tests.Unit\SqsPoller.Tests.Unit.csproj", "{30FC0190-4E1C-495B-BF00-7D3322594B33}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "solution items", "solution items", "{E2A4C7CB-756F-496D-85C1-292A3D885F90}"
ProjectSection(SolutionItems) = preProject
docker-compose.yml = docker-compose.yml
build\localstack-init\04_create_second_poller_sqs.sh = build\localstack-init\04_create_second_poller_sqs.sh
build\localstack-init\03_create_poller_sns_subscription_into_poller_sqs.sh = build\localstack-init\03_create_poller_sns_subscription_into_poller_sqs.sh
build\localstack-init\02_create_poller_sqs.sh = build\localstack-init\02_create_poller_sqs.sh
build\localstack-init\01_create_poller_sns.sh = build\localstack-init\01_create_poller_sns.sh
build\localstack-init\05_create_third_poller_sqs.sh = build\localstack-init\05_create_third_poller_sqs.sh
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{28A53530-EDA7-41AC-9C64-F8BA11C755EA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{28A53530-EDA7-41AC-9C64-F8BA11C755EA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{28A53530-EDA7-41AC-9C64-F8BA11C755EA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{28A53530-EDA7-41AC-9C64-F8BA11C755EA}.Release|Any CPU.Build.0 = Release|Any CPU
{DCD48435-D462-4122-AF52-233FCBAAFF1A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DCD48435-D462-4122-AF52-233FCBAAFF1A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DCD48435-D462-4122-AF52-233FCBAAFF1A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DCD48435-D462-4122-AF52-233FCBAAFF1A}.Release|Any CPU.Build.0 = Release|Any CPU
{005E71E3-AF7C-443B-A576-E422F637D17C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{005E71E3-AF7C-443B-A576-E422F637D17C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{005E71E3-AF7C-443B-A576-E422F637D17C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{005E71E3-AF7C-443B-A576-E422F637D17C}.Release|Any CPU.Build.0 = Release|Any CPU
{678BCD73-E26A-445E-BDD2-95301BC18AC1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{678BCD73-E26A-445E-BDD2-95301BC18AC1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{678BCD73-E26A-445E-BDD2-95301BC18AC1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{678BCD73-E26A-445E-BDD2-95301BC18AC1}.Release|Any CPU.Build.0 = Release|Any CPU
{7E030327-77F3-4301-AF26-A79A309E1BB1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7E030327-77F3-4301-AF26-A79A309E1BB1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7E030327-77F3-4301-AF26-A79A309E1BB1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7E030327-77F3-4301-AF26-A79A309E1BB1}.Release|Any CPU.Build.0 = Release|Any CPU
{30FC0190-4E1C-495B-BF00-7D3322594B33}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{30FC0190-4E1C-495B-BF00-7D3322594B33}.Debug|Any CPU.Build.0 = Debug|Any CPU
{30FC0190-4E1C-495B-BF00-7D3322594B33}.Release|Any CPU.ActiveCfg = Release|Any CPU
{30FC0190-4E1C-495B-BF00-7D3322594B33}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{28A53530-EDA7-41AC-9C64-F8BA11C755EA} = {A29714F8-CF39-4A9D-A0A2-188249010260}
{DCD48435-D462-4122-AF52-233FCBAAFF1A} = {805825C5-05D7-46BA-829A-3B565DD8D923}
{005E71E3-AF7C-443B-A576-E422F637D17C} = {805825C5-05D7-46BA-829A-3B565DD8D923}
{678BCD73-E26A-445E-BDD2-95301BC18AC1} = {A29714F8-CF39-4A9D-A0A2-188249010260}
{7E030327-77F3-4301-AF26-A79A309E1BB1} = {082D2643-6761-496F-BAED-BA0073C64FCB}
{30FC0190-4E1C-495B-BF00-7D3322594B33} = {082D2643-6761-496F-BAED-BA0073C64FCB}
EndGlobalSection
EndGlobal