-
Notifications
You must be signed in to change notification settings - Fork 24
/
PooledAwait.sln
63 lines (63 loc) · 3.26 KB
/
PooledAwait.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
61
62
63
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29006.145
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{6DC27E35-76A1-4DB4-9A43-BEA952B688E8}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PooledAwait", "src\PooledAwait\PooledAwait.csproj", "{140C1306-3443-4F45-B132-27197EB4D146}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{04573B33-34F0-429A-AC95-376A9D819666}"
ProjectSection(SolutionItems) = preProject
.gitignore = .gitignore
Directory.Build.props = Directory.Build.props
Directory.Build.targets = Directory.Build.targets
global.json = global.json
LICENSE.TXT = LICENSE.TXT
nuget.config = nuget.config
readme.md = readme.md
version.json = version.json
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{AF54CE9C-B78F-4023-8A66-367509185F67}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Benchmark", "tests\Benchmark\Benchmark.csproj", "{CC23CF2D-D42E-4470-8BBD-A847DB7CB8CC}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PooledAwait.Test", "tests\PooledAwait.Test\PooledAwait.Test.csproj", "{1AD2D514-48A4-4631-867E-F4D5D2765C7B}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "docs", "docs", "{9E246D47-3A08-4D10-A66F-DFEEC21BFF34}"
ProjectSection(SolutionItems) = preProject
docs\index.md = docs\index.md
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{140C1306-3443-4F45-B132-27197EB4D146}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{140C1306-3443-4F45-B132-27197EB4D146}.Debug|Any CPU.Build.0 = Debug|Any CPU
{140C1306-3443-4F45-B132-27197EB4D146}.Release|Any CPU.ActiveCfg = Release|Any CPU
{140C1306-3443-4F45-B132-27197EB4D146}.Release|Any CPU.Build.0 = Release|Any CPU
{CC23CF2D-D42E-4470-8BBD-A847DB7CB8CC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CC23CF2D-D42E-4470-8BBD-A847DB7CB8CC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CC23CF2D-D42E-4470-8BBD-A847DB7CB8CC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CC23CF2D-D42E-4470-8BBD-A847DB7CB8CC}.Release|Any CPU.Build.0 = Release|Any CPU
{1AD2D514-48A4-4631-867E-F4D5D2765C7B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1AD2D514-48A4-4631-867E-F4D5D2765C7B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1AD2D514-48A4-4631-867E-F4D5D2765C7B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1AD2D514-48A4-4631-867E-F4D5D2765C7B}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{140C1306-3443-4F45-B132-27197EB4D146} = {6DC27E35-76A1-4DB4-9A43-BEA952B688E8}
{CC23CF2D-D42E-4470-8BBD-A847DB7CB8CC} = {AF54CE9C-B78F-4023-8A66-367509185F67}
{1AD2D514-48A4-4631-867E-F4D5D2765C7B} = {AF54CE9C-B78F-4023-8A66-367509185F67}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {3DCCF6DC-DEB4-48FB-BD2E-2FBC48C054EC}
EndGlobalSection
EndGlobal