forked from phatcher/CsvReader
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCsvReader.sln
More file actions
57 lines (57 loc) · 3.38 KB
/
Copy pathCsvReader.sln
File metadata and controls
57 lines (57 loc) · 3.38 KB
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
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30621.155
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{D23ED3F3-7347-4369-B8AA-4E622924D01E}"
ProjectSection(SolutionItems) = preProject
build.fsx = build.fsx
License.md = License.md
README.md = README.md
RELEASE_NOTES.md = RELEASE_NOTES.md
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CsvReader", "code\CsvReader\CsvReader.csproj", "{E69D96B2-7645-43C4-93FD-1EE1CF725A23}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CsvReader.UnitTests", "code\CsvReader.UnitTests\CsvReader.UnitTests.csproj", "{D3DDAF03-7495-4EB2-BEF2-870B575340BF}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CsvReader.WebDemo", "code\CsvReader.WebDemo\CsvReader.WebDemo.csproj", "{3D5D1F4A-42B3-43BC-94A5-4AC9F46F6937}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CsvReader.Benchmarks", "code\CsvReader.Benchmarks\CsvReader.Benchmarks.csproj", "{1A1D3D3C-8115-4AD6-A1ED-D6D9EA376AAC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CsvReader.WpfDemo", "code\CsvReader.WpfDemo\CsvReader.WpfDemo.csproj", "{D0447E76-A566-4059-AAF7-8849E00836EE}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{E69D96B2-7645-43C4-93FD-1EE1CF725A23}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E69D96B2-7645-43C4-93FD-1EE1CF725A23}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E69D96B2-7645-43C4-93FD-1EE1CF725A23}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E69D96B2-7645-43C4-93FD-1EE1CF725A23}.Release|Any CPU.Build.0 = Release|Any CPU
{D3DDAF03-7495-4EB2-BEF2-870B575340BF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D3DDAF03-7495-4EB2-BEF2-870B575340BF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D3DDAF03-7495-4EB2-BEF2-870B575340BF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D3DDAF03-7495-4EB2-BEF2-870B575340BF}.Release|Any CPU.Build.0 = Release|Any CPU
{3D5D1F4A-42B3-43BC-94A5-4AC9F46F6937}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3D5D1F4A-42B3-43BC-94A5-4AC9F46F6937}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3D5D1F4A-42B3-43BC-94A5-4AC9F46F6937}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3D5D1F4A-42B3-43BC-94A5-4AC9F46F6937}.Release|Any CPU.Build.0 = Release|Any CPU
{1A1D3D3C-8115-4AD6-A1ED-D6D9EA376AAC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1A1D3D3C-8115-4AD6-A1ED-D6D9EA376AAC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1A1D3D3C-8115-4AD6-A1ED-D6D9EA376AAC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1A1D3D3C-8115-4AD6-A1ED-D6D9EA376AAC}.Release|Any CPU.Build.0 = Release|Any CPU
{D0447E76-A566-4059-AAF7-8849E00836EE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D0447E76-A566-4059-AAF7-8849E00836EE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D0447E76-A566-4059-AAF7-8849E00836EE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D0447E76-A566-4059-AAF7-8849E00836EE}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {3773E523-1B98-4B66-BB91-E91B55197A2A}
EndGlobalSection
EndGlobal