-
Notifications
You must be signed in to change notification settings - Fork 0
/
JobScheduling.sln
76 lines (76 loc) · 4.9 KB
/
JobScheduling.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
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.8.34309.116
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "JobScheduling.Simplest", "JobScheduling.Simplest\JobScheduling.Simplest.csproj", "{F1D1A5B3-8A3B-4FF0-8FFC-E1D8F6A56859}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "JobScheduling.DependencyInjection", "JobScheduling.DependencyInjection\JobScheduling.DependencyInjection.csproj", "{1237FFEA-C7D7-441C-A635-9B0D793DC03E}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "JobScheduling.HangfireApp", "JobScheduling.HangfireApp\JobScheduling.HangfireApp.csproj", "{8ED31EC9-9A5F-4BDF-B29E-ADC314512FEE}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "JobScheduling.WebApiExample", "JobScheduling.WebApiExample\JobScheduling.WebApiExample.csproj", "{C5B629FB-6F3F-4A33-927C-BB24F631E1F6}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{1F5B5DCD-2B5C-45EA-9EEC-39155A802E2A}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
.gitattributes = .gitattributes
.gitignore = .gitignore
azure-pipelines.yml = azure-pipelines.yml
LICENSE.txt = LICENSE.txt
README.md = README.md
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "JobScheduling.Common", "JobScheduling.Common\JobScheduling.Common.csproj", "{5CD4837E-5146-48D1-AD05-D80EB420C09A}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "JobScheduling.Common.UnitTests", "JobScheduling.Common.UnitTests\JobScheduling.Common.UnitTests.csproj", "{CD206EA5-2462-4AE6-8B88-741D2BF76E15}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{2B7E68AC-EF22-4CB3-A57B-FB2589E72855}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JobScheduling.WebApiExample.HangfireApp", "JobScheduling.WebApiExample.HangfireApp\JobScheduling.WebApiExample.HangfireApp.csproj", "{FDF6D65E-0184-4083-A18E-9AACB5CFC8E7}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{F1D1A5B3-8A3B-4FF0-8FFC-E1D8F6A56859}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F1D1A5B3-8A3B-4FF0-8FFC-E1D8F6A56859}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F1D1A5B3-8A3B-4FF0-8FFC-E1D8F6A56859}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F1D1A5B3-8A3B-4FF0-8FFC-E1D8F6A56859}.Release|Any CPU.Build.0 = Release|Any CPU
{1237FFEA-C7D7-441C-A635-9B0D793DC03E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1237FFEA-C7D7-441C-A635-9B0D793DC03E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1237FFEA-C7D7-441C-A635-9B0D793DC03E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1237FFEA-C7D7-441C-A635-9B0D793DC03E}.Release|Any CPU.Build.0 = Release|Any CPU
{8ED31EC9-9A5F-4BDF-B29E-ADC314512FEE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8ED31EC9-9A5F-4BDF-B29E-ADC314512FEE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8ED31EC9-9A5F-4BDF-B29E-ADC314512FEE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8ED31EC9-9A5F-4BDF-B29E-ADC314512FEE}.Release|Any CPU.Build.0 = Release|Any CPU
{C5B629FB-6F3F-4A33-927C-BB24F631E1F6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C5B629FB-6F3F-4A33-927C-BB24F631E1F6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C5B629FB-6F3F-4A33-927C-BB24F631E1F6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C5B629FB-6F3F-4A33-927C-BB24F631E1F6}.Release|Any CPU.Build.0 = Release|Any CPU
{5CD4837E-5146-48D1-AD05-D80EB420C09A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5CD4837E-5146-48D1-AD05-D80EB420C09A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5CD4837E-5146-48D1-AD05-D80EB420C09A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5CD4837E-5146-48D1-AD05-D80EB420C09A}.Release|Any CPU.Build.0 = Release|Any CPU
{CD206EA5-2462-4AE6-8B88-741D2BF76E15}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CD206EA5-2462-4AE6-8B88-741D2BF76E15}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CD206EA5-2462-4AE6-8B88-741D2BF76E15}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CD206EA5-2462-4AE6-8B88-741D2BF76E15}.Release|Any CPU.Build.0 = Release|Any CPU
{FDF6D65E-0184-4083-A18E-9AACB5CFC8E7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FDF6D65E-0184-4083-A18E-9AACB5CFC8E7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FDF6D65E-0184-4083-A18E-9AACB5CFC8E7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FDF6D65E-0184-4083-A18E-9AACB5CFC8E7}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{CD206EA5-2462-4AE6-8B88-741D2BF76E15} = {2B7E68AC-EF22-4CB3-A57B-FB2589E72855}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {9C650303-995B-4931-85EC-2C2F124B64D3}
EndGlobalSection
EndGlobal