-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathSemVer.sln
More file actions
64 lines (64 loc) · 3.38 KB
/
SemVer.sln
File metadata and controls
64 lines (64 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
58
59
60
61
62
63
64
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.31101.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "SemVer", "src\SemVer\SemVer.fsproj", "{76DC9FA9-1EB2-40D5-9A99-D0E78C16AE9F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "build", "build", "{238E3B97-CDB2-478C-8255-E6182BC0B797}"
ProjectSection(SolutionItems) = preProject
build.cmd = build.cmd
build.fsx = build.fsx
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "sln", "sln", "{499D63F0-488B-4625-9B89-02D62C8DF5AD}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{2FE7A87C-E4C6-40DB-BBBE-2C98A9C6D7A0}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{8F402301-D701-4EBB-B5F7-4F8F67DA3A51}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "nuget", "nuget", "{3839B283-8901-4D9A-BD18-5A967CE97CB0}"
ProjectSection(SolutionItems) = preProject
nuget\SemVer.nuspec = nuget\SemVer.nuspec
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "paket", "paket", "{F9E6DC38-969C-44E9-AE4E-1961BDC6FF2F}"
ProjectSection(SolutionItems) = preProject
paket.dependencies = paket.dependencies
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "references", "references", "{13E136F9-1332-4A35-825D-09BAB62574D8}"
ProjectSection(SolutionItems) = preProject
src\SemVer\Semver.fsproj.paket.references = src\SemVer\SemVer.fsproj.paket.references
tests\SemVer.Tests\Semver.Tests.fsproj.paket.references = tests\SemVer.Tests\SemVer.Tests.fsproj.paket.references
EndProjectSection
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "SemVer.Tests", "tests\SemVer.Tests\SemVer.Tests.fsproj", "{656B285D-DB9B-40B0-B873-64A1F9ED3D32}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{76DC9FA9-1EB2-40D5-9A99-D0E78C16AE9F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{76DC9FA9-1EB2-40D5-9A99-D0E78C16AE9F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{76DC9FA9-1EB2-40D5-9A99-D0E78C16AE9F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{76DC9FA9-1EB2-40D5-9A99-D0E78C16AE9F}.Release|Any CPU.Build.0 = Release|Any CPU
{656B285D-DB9B-40B0-B873-64A1F9ED3D32}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{656B285D-DB9B-40B0-B873-64A1F9ED3D32}.Debug|Any CPU.Build.0 = Debug|Any CPU
{656B285D-DB9B-40B0-B873-64A1F9ED3D32}.Release|Any CPU.ActiveCfg = Release|Any CPU
{656B285D-DB9B-40B0-B873-64A1F9ED3D32}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{76DC9FA9-1EB2-40D5-9A99-D0E78C16AE9F} = {2FE7A87C-E4C6-40DB-BBBE-2C98A9C6D7A0}
{238E3B97-CDB2-478C-8255-E6182BC0B797} = {499D63F0-488B-4625-9B89-02D62C8DF5AD}
{3839B283-8901-4D9A-BD18-5A967CE97CB0} = {499D63F0-488B-4625-9B89-02D62C8DF5AD}
{F9E6DC38-969C-44E9-AE4E-1961BDC6FF2F} = {499D63F0-488B-4625-9B89-02D62C8DF5AD}
{13E136F9-1332-4A35-825D-09BAB62574D8} = {F9E6DC38-969C-44E9-AE4E-1961BDC6FF2F}
{656B285D-DB9B-40B0-B873-64A1F9ED3D32} = {8F402301-D701-4EBB-B5F7-4F8F67DA3A51}
EndGlobalSection
EndGlobal