-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathProgressBar.sln
More file actions
68 lines (68 loc) · 4.06 KB
/
ProgressBar.sln
File metadata and controls
68 lines (68 loc) · 4.06 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
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30804.86
MinimumVisualStudioVersion = 15.0.26124.0
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ConsoleProgressBar.Tests", "test\ConsoleProgressBar.Tests\ConsoleProgressBar.Tests.csproj", "{07406E62-2DC0-42A6-B675-2B9FCF2E50AF}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ConsoleProgressBar", "src\ConsoleProgressBar\ConsoleProgressBar.csproj", "{A05C85C9-F6CC-4558-883C-51DE0DB9882D}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ConsoleProgressBar.Demo", "demo\ConsoleProgressBar.Demo.csproj", "{02D511CF-C886-498C-B281-32900FE73C42}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ProgressHierarchy", "src\ProgressHierarchy\ProgressHierarchy.csproj", "{DA962F75-3437-48DC-A94E-D17F37ED92C8}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ProgressHierarchy.Tests", "test\ProgressHierarchy.Tests\ProgressHierarchy.Tests.csproj", "{F705D623-7298-4E9F-9038-D090BC88B778}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Shared", "Shared", "{10CE443A-B478-4B2A-97DA-6EFF3F1AEBC8}"
ProjectSection(SolutionItems) = preProject
Directory.Build.props = Directory.Build.props
Directory.Packages.props = Directory.Packages.props
.github\workflows\ci.yml = .github\workflows\ci.yml
.editorconfig = .editorconfig
global.json = global.json
README.md = README.md
LICENSE = LICENSE
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{1B78E54A-7584-40C4-AA0F-A691C04754E2}"
ProjectSection(SolutionItems) = preProject
test\Directory.Build.props = test\Directory.Build.props
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{07406E62-2DC0-42A6-B675-2B9FCF2E50AF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{07406E62-2DC0-42A6-B675-2B9FCF2E50AF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{07406E62-2DC0-42A6-B675-2B9FCF2E50AF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{07406E62-2DC0-42A6-B675-2B9FCF2E50AF}.Release|Any CPU.Build.0 = Release|Any CPU
{A05C85C9-F6CC-4558-883C-51DE0DB9882D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A05C85C9-F6CC-4558-883C-51DE0DB9882D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A05C85C9-F6CC-4558-883C-51DE0DB9882D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A05C85C9-F6CC-4558-883C-51DE0DB9882D}.Release|Any CPU.Build.0 = Release|Any CPU
{02D511CF-C886-498C-B281-32900FE73C42}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{02D511CF-C886-498C-B281-32900FE73C42}.Debug|Any CPU.Build.0 = Debug|Any CPU
{02D511CF-C886-498C-B281-32900FE73C42}.Release|Any CPU.ActiveCfg = Release|Any CPU
{02D511CF-C886-498C-B281-32900FE73C42}.Release|Any CPU.Build.0 = Release|Any CPU
{DA962F75-3437-48DC-A94E-D17F37ED92C8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DA962F75-3437-48DC-A94E-D17F37ED92C8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DA962F75-3437-48DC-A94E-D17F37ED92C8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DA962F75-3437-48DC-A94E-D17F37ED92C8}.Release|Any CPU.Build.0 = Release|Any CPU
{F705D623-7298-4E9F-9038-D090BC88B778}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F705D623-7298-4E9F-9038-D090BC88B778}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F705D623-7298-4E9F-9038-D090BC88B778}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F705D623-7298-4E9F-9038-D090BC88B778}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {7A5762A1-175E-452B-9DCF-01CA073CC0D1}
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{07406E62-2DC0-42A6-B675-2B9FCF2E50AF} = {1B78E54A-7584-40C4-AA0F-A691C04754E2}
{F705D623-7298-4E9F-9038-D090BC88B778} = {1B78E54A-7584-40C4-AA0F-A691C04754E2}
EndGlobalSection
EndGlobal