-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLazySequence.sln
60 lines (60 loc) · 3.07 KB
/
LazySequence.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
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.31112.61
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LazySequence", "src\LazySequence\LazySequence.csproj", "{4264E9CE-516B-415E-A4C8-7E1FB94EBD08}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LazySequence.Test", "tests\LazySequence.Test\LazySequence.Test.csproj", "{20505FEC-DC3D-4913-AC07-7E1CD9D38009}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SolutionItems", "SolutionItems", "{DA8902B3-6565-4C1A-83F7-FCB8E5C6CC86}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
Directory.build.props = Directory.build.props
global.json = global.json
nuget.config = nuget.config
README.md = README.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{D5272045-B6C6-42C8-9F4A-6F025C3AE60D}"
ProjectSection(SolutionItems) = preProject
tests\.editorconfig = tests\.editorconfig
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{347C15FA-00F1-41BA-AE07-8DF71C76E8B6}"
ProjectSection(SolutionItems) = preProject
src\.editorconfig = src\.editorconfig
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Samples", "samples\Samples\Samples.csproj", "{D6E46BF5-99B4-4639-90C5-73C80DC84AA5}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{4264E9CE-516B-415E-A4C8-7E1FB94EBD08}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4264E9CE-516B-415E-A4C8-7E1FB94EBD08}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4264E9CE-516B-415E-A4C8-7E1FB94EBD08}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4264E9CE-516B-415E-A4C8-7E1FB94EBD08}.Release|Any CPU.Build.0 = Release|Any CPU
{20505FEC-DC3D-4913-AC07-7E1CD9D38009}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{20505FEC-DC3D-4913-AC07-7E1CD9D38009}.Debug|Any CPU.Build.0 = Debug|Any CPU
{20505FEC-DC3D-4913-AC07-7E1CD9D38009}.Release|Any CPU.ActiveCfg = Release|Any CPU
{20505FEC-DC3D-4913-AC07-7E1CD9D38009}.Release|Any CPU.Build.0 = Release|Any CPU
{D6E46BF5-99B4-4639-90C5-73C80DC84AA5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D6E46BF5-99B4-4639-90C5-73C80DC84AA5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D6E46BF5-99B4-4639-90C5-73C80DC84AA5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D6E46BF5-99B4-4639-90C5-73C80DC84AA5}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{4264E9CE-516B-415E-A4C8-7E1FB94EBD08} = {347C15FA-00F1-41BA-AE07-8DF71C76E8B6}
{20505FEC-DC3D-4913-AC07-7E1CD9D38009} = {D5272045-B6C6-42C8-9F4A-6F025C3AE60D}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {3CA42292-1C6E-428B-A5F4-1A3A1CAE88AC}
EndGlobalSection
EndGlobal