-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCsharpClassOnStack.sln
More file actions
75 lines (75 loc) · 5.01 KB
/
Copy pathCsharpClassOnStack.sln
File metadata and controls
75 lines (75 loc) · 5.01 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
65
66
67
68
69
70
71
72
73
74
75
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "common", "common", "{AD5610EE-CC86-44A0-A269-BD5B3829209E}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
.gitignore = .gitignore
Directory.Packages.props = Directory.Packages.props
README.md = README.md
Directory.Build.props = Directory.Build.props
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{0B4D6899-E1CF-4C55-9A86-2ADC0CDB2D9F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{89DBC2B9-59FE-45AA-8A37-9390BAA81314}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CsharpClassOnStack.Safe", "src\CsharpClassOnStack.Safe\CsharpClassOnStack.Safe.csproj", "{159D0E62-3DE2-48E0-9CCB-921D3E31A0F7}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CsharpClassOnStack.Unsafe", "src\CsharpClassOnStack.Unsafe\CsharpClassOnStack.Unsafe.csproj", "{E0FCE8A2-B623-447A-A68F-F914A0E0FA9A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CsharpClassOnStack.Unsafe.Tests", "tests\CsharpClassOnStack.Unsafe.Tests\CsharpClassOnStack.Unsafe.Tests.csproj", "{0FE4BB71-1E7E-431E-96EC-635EC98BD862}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CsharpClassOnStack.Safe.Tests", "tests\CsharpClassOnStack.Safe.Tests\CsharpClassOnStack.Safe.Tests.csproj", "{53E8F02E-8DC2-4FD0-9B46-7E8A95C2249C}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "benchmark", "benchmark", "{ECEBB8EF-0207-4742-9CC4-CCCA6DA987E9}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CsharpClassOnStack.Safe.Benchmark", "benchmark\CsharpClassOnStack.Safe.Benchmark\CsharpClassOnStack.Safe.Benchmark.csproj", "{8B2101E1-F12F-4654-AD97-287CA48C289E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CsharpClassOnStack.Unsafe.Benchmark", "benchmark\CsharpClassOnStack.Unsafe.Benchmark\CsharpClassOnStack.Unsafe.Benchmark.csproj", "{4DABE28A-FE6C-495E-9F06-49C72CA0077A}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{159D0E62-3DE2-48E0-9CCB-921D3E31A0F7} = {0B4D6899-E1CF-4C55-9A86-2ADC0CDB2D9F}
{E0FCE8A2-B623-447A-A68F-F914A0E0FA9A} = {0B4D6899-E1CF-4C55-9A86-2ADC0CDB2D9F}
{0FE4BB71-1E7E-431E-96EC-635EC98BD862} = {89DBC2B9-59FE-45AA-8A37-9390BAA81314}
{53E8F02E-8DC2-4FD0-9B46-7E8A95C2249C} = {89DBC2B9-59FE-45AA-8A37-9390BAA81314}
{8B2101E1-F12F-4654-AD97-287CA48C289E} = {ECEBB8EF-0207-4742-9CC4-CCCA6DA987E9}
{4DABE28A-FE6C-495E-9F06-49C72CA0077A} = {ECEBB8EF-0207-4742-9CC4-CCCA6DA987E9}
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{159D0E62-3DE2-48E0-9CCB-921D3E31A0F7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{159D0E62-3DE2-48E0-9CCB-921D3E31A0F7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{159D0E62-3DE2-48E0-9CCB-921D3E31A0F7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{159D0E62-3DE2-48E0-9CCB-921D3E31A0F7}.Release|Any CPU.Build.0 = Release|Any CPU
{E0FCE8A2-B623-447A-A68F-F914A0E0FA9A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E0FCE8A2-B623-447A-A68F-F914A0E0FA9A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E0FCE8A2-B623-447A-A68F-F914A0E0FA9A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E0FCE8A2-B623-447A-A68F-F914A0E0FA9A}.Release|Any CPU.Build.0 = Release|Any CPU
{0FE4BB71-1E7E-431E-96EC-635EC98BD862}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0FE4BB71-1E7E-431E-96EC-635EC98BD862}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0FE4BB71-1E7E-431E-96EC-635EC98BD862}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0FE4BB71-1E7E-431E-96EC-635EC98BD862}.Release|Any CPU.Build.0 = Release|Any CPU
{53E8F02E-8DC2-4FD0-9B46-7E8A95C2249C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{53E8F02E-8DC2-4FD0-9B46-7E8A95C2249C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{53E8F02E-8DC2-4FD0-9B46-7E8A95C2249C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{53E8F02E-8DC2-4FD0-9B46-7E8A95C2249C}.Release|Any CPU.Build.0 = Release|Any CPU
{8B2101E1-F12F-4654-AD97-287CA48C289E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8B2101E1-F12F-4654-AD97-287CA48C289E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8B2101E1-F12F-4654-AD97-287CA48C289E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8B2101E1-F12F-4654-AD97-287CA48C289E}.Release|Any CPU.Build.0 = Release|Any CPU
{4DABE28A-FE6C-495E-9F06-49C72CA0077A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4DABE28A-FE6C-495E-9F06-49C72CA0077A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4DABE28A-FE6C-495E-9F06-49C72CA0077A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4DABE28A-FE6C-495E-9F06-49C72CA0077A}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal