-
-
Notifications
You must be signed in to change notification settings - Fork 148
/
Copy pathThreading.sln
75 lines (74 loc) · 5.23 KB
/
Threading.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
64
65
66
67
68
69
70
71
72
73
74
75
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.28307.1145
MinimumVisualStudioVersion = 10.0.40219.1
Project("{11A8DD76-328B-46DF-9F39-F559912D0360}") = "01-Basic Threading", "01-Basic Threading\01-Basic Threading.nfproj", "{3860F240-90FD-4CEA-BD97-8E42220689EA}"
EndProject
Project("{11A8DD76-328B-46DF-9F39-F559912D0360}") = "02-Passing Parameters", "02-Passing Parameters\02-Passing Parameters.nfproj", "{9A145088-E5CD-4B10-91D4-41C149ED5BFF}"
EndProject
Project("{11A8DD76-328B-46DF-9F39-F559912D0360}") = "03-Retrieving data from threads", "03-Retrieving data from threads\03-Retrieving data from threads.nfproj", "{5A38547F-55BA-4EEE-8D91-3FECE875FE5F}"
EndProject
Project("{11A8DD76-328B-46DF-9F39-F559912D0360}") = "04-Controlling threads", "04-Controlling threads\04-Controlling threads.nfproj", "{7175ABF6-D604-4E95-9388-424FD4F7E1DE}"
EndProject
Project("{11A8DD76-328B-46DF-9F39-F559912D0360}") = "05-ManualResetEvent", "05-ManualResetEvent\05-ManualResetEvent.nfproj", "{B3F04A58-67A5-40BF-A16C-0EDBEC4CE3C4}"
EndProject
Project("{11A8DD76-328B-46DF-9F39-F559912D0360}") = "06-AutoResetEvent", "06-AutoResetEvent\06-AutoResetEvent.nfproj", "{E7BC01C6-1CD8-41B0-82E1-3218328CEB86}"
EndProject
Project("{11A8DD76-328B-46DF-9F39-F559912D0360}") = "07-Sharing resources", "07-Sharing resources\07-Sharing resources.nfproj", "{7C031844-450A-449A-B5D4-A6590361D3A6}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{3860F240-90FD-4CEA-BD97-8E42220689EA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3860F240-90FD-4CEA-BD97-8E42220689EA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3860F240-90FD-4CEA-BD97-8E42220689EA}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{3860F240-90FD-4CEA-BD97-8E42220689EA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3860F240-90FD-4CEA-BD97-8E42220689EA}.Release|Any CPU.Build.0 = Release|Any CPU
{3860F240-90FD-4CEA-BD97-8E42220689EA}.Release|Any CPU.Deploy.0 = Release|Any CPU
{9A145088-E5CD-4B10-91D4-41C149ED5BFF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9A145088-E5CD-4B10-91D4-41C149ED5BFF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9A145088-E5CD-4B10-91D4-41C149ED5BFF}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{9A145088-E5CD-4B10-91D4-41C149ED5BFF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9A145088-E5CD-4B10-91D4-41C149ED5BFF}.Release|Any CPU.Build.0 = Release|Any CPU
{9A145088-E5CD-4B10-91D4-41C149ED5BFF}.Release|Any CPU.Deploy.0 = Release|Any CPU
{5A38547F-55BA-4EEE-8D91-3FECE875FE5F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5A38547F-55BA-4EEE-8D91-3FECE875FE5F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5A38547F-55BA-4EEE-8D91-3FECE875FE5F}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{5A38547F-55BA-4EEE-8D91-3FECE875FE5F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5A38547F-55BA-4EEE-8D91-3FECE875FE5F}.Release|Any CPU.Build.0 = Release|Any CPU
{5A38547F-55BA-4EEE-8D91-3FECE875FE5F}.Release|Any CPU.Deploy.0 = Release|Any CPU
{7175ABF6-D604-4E95-9388-424FD4F7E1DE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7175ABF6-D604-4E95-9388-424FD4F7E1DE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7175ABF6-D604-4E95-9388-424FD4F7E1DE}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{7175ABF6-D604-4E95-9388-424FD4F7E1DE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7175ABF6-D604-4E95-9388-424FD4F7E1DE}.Release|Any CPU.Build.0 = Release|Any CPU
{7175ABF6-D604-4E95-9388-424FD4F7E1DE}.Release|Any CPU.Deploy.0 = Release|Any CPU
{B3F04A58-67A5-40BF-A16C-0EDBEC4CE3C4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B3F04A58-67A5-40BF-A16C-0EDBEC4CE3C4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B3F04A58-67A5-40BF-A16C-0EDBEC4CE3C4}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{B3F04A58-67A5-40BF-A16C-0EDBEC4CE3C4}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B3F04A58-67A5-40BF-A16C-0EDBEC4CE3C4}.Release|Any CPU.Build.0 = Release|Any CPU
{B3F04A58-67A5-40BF-A16C-0EDBEC4CE3C4}.Release|Any CPU.Deploy.0 = Release|Any CPU
{E7BC01C6-1CD8-41B0-82E1-3218328CEB86}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E7BC01C6-1CD8-41B0-82E1-3218328CEB86}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E7BC01C6-1CD8-41B0-82E1-3218328CEB86}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{E7BC01C6-1CD8-41B0-82E1-3218328CEB86}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E7BC01C6-1CD8-41B0-82E1-3218328CEB86}.Release|Any CPU.Build.0 = Release|Any CPU
{E7BC01C6-1CD8-41B0-82E1-3218328CEB86}.Release|Any CPU.Deploy.0 = Release|Any CPU
{7C031844-450A-449A-B5D4-A6590361D3A6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7C031844-450A-449A-B5D4-A6590361D3A6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7C031844-450A-449A-B5D4-A6590361D3A6}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{7C031844-450A-449A-B5D4-A6590361D3A6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7C031844-450A-449A-B5D4-A6590361D3A6}.Release|Any CPU.Build.0 = Release|Any CPU
{7C031844-450A-449A-B5D4-A6590361D3A6}.Release|Any CPU.Deploy.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {AF2CDBA8-0388-48AA-8B52-58FA10F76E85}
EndGlobalSection
EndGlobal