-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCircularStack.sln
49 lines (49 loc) · 2.44 KB
/
CircularStack.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
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27130.2010
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CircularStack", "src\CircularStack.csproj", "{2CFF2597-A555-47E4-9A2F-38E9BB535AB2}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CircularStack.Tests", "tests\CircularStack.Tests.csproj", "{6259D2E4-700E-4C5F-864E-410B8BA4E407}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{0F4DDFFE-D44D-46FF-AF07-EA9E8AB477F7}"
ProjectSection(SolutionItems) = preProject
.gitignore = .gitignore
build.cake = build.cake
build.ps1 = build.ps1
build.sh = build.sh
GitVersion.yml = GitVersion.yml
LICENSE = LICENSE
Nuget.config = Nuget.config
README.md = README.md
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CircularStack.Sample", "sample\CircularStack.Sample.csproj", "{27711C21-1E25-47D3-9602-B4936985205E}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{2CFF2597-A555-47E4-9A2F-38E9BB535AB2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2CFF2597-A555-47E4-9A2F-38E9BB535AB2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2CFF2597-A555-47E4-9A2F-38E9BB535AB2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2CFF2597-A555-47E4-9A2F-38E9BB535AB2}.Release|Any CPU.Build.0 = Release|Any CPU
{6259D2E4-700E-4C5F-864E-410B8BA4E407}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6259D2E4-700E-4C5F-864E-410B8BA4E407}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6259D2E4-700E-4C5F-864E-410B8BA4E407}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6259D2E4-700E-4C5F-864E-410B8BA4E407}.Release|Any CPU.Build.0 = Release|Any CPU
{27711C21-1E25-47D3-9602-B4936985205E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{27711C21-1E25-47D3-9602-B4936985205E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{27711C21-1E25-47D3-9602-B4936985205E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{27711C21-1E25-47D3-9602-B4936985205E}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {FC48B463-3ED8-4B18-8CDB-874799B8C795}
EndGlobalSection
EndGlobal