-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
RandomizedTesting.sln
101 lines (101 loc) · 5.73 KB
/
RandomizedTesting.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.12.35506.116 d17.12
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".build", ".build", "{57E113A5-805B-46F8-90A6-A041800F03E0}"
ProjectSection(SolutionItems) = preProject
azure-pipelines.yml = azure-pipelines.yml
.build\dependencies.props = .build\dependencies.props
.build\key.snk = .build\key.snk
.build\nuget.props = .build\nuget.props
.build\runbuild.ps1 = .build\runbuild.ps1
.build\TestReferences.Common.targets = .build\TestReferences.Common.targets
.build\TestTargetFramework.props = .build\TestTargetFramework.props
version.json = version.json
.build\version.ps1 = .build\version.ps1
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{9545F378-6BE8-4930-AAF2-E07FFA31E1A5}"
ProjectSection(SolutionItems) = preProject
src\Directory.Build.props = src\Directory.Build.props
src\Directory.Build.targets = src\Directory.Build.targets
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{DD8E38DD-3D0A-42F5-9931-E3EAB1020623}"
ProjectSection(SolutionItems) = preProject
tests\Directory.Build.props = tests\Directory.Build.props
tests\Directory.Build.targets = tests\Directory.Build.targets
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RandomizedTesting.Generators", "src\RandomizedTesting.Generators\RandomizedTesting.Generators.csproj", "{BA223233-E6D0-4E9C-A73E-FC7E57C2F8FE}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RandomizedTesting.Generators.Tests", "tests\RandomizedTesting.Generators.Tests\RandomizedTesting.Generators.Tests.csproj", "{483E1111-BAEC-4CB6-AE7D-31742F6FD17B}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{0B6C0697-7AD4-4DCB-8C28-C65A9C4BF9DC}"
ProjectSection(SolutionItems) = preProject
.gitattributes = .gitattributes
.gitignore = .gitignore
build = build
build.bat = build.bat
build.ps1 = build.ps1
Directory.Build.props = Directory.Build.props
Directory.Build.targets = Directory.Build.targets
FUNDING.yml = FUNDING.yml
NuGet.config = NuGet.config
README.md = README.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "azure-templates", "azure-templates", "{D38AFCA4-6C93-43BF-BE6E-A071E0E6FB41}"
ProjectSection(SolutionItems) = preProject
.build\azure-templates\build-pack-and-publish-libraries.yml = .build\azure-templates\build-pack-and-publish-libraries.yml
.build\azure-templates\gitversioning-increment-and-persist-versions.yml = .build\azure-templates\gitversioning-increment-and-persist-versions.yml
.build\azure-templates\install-dotnet-sdk.yml = .build\azure-templates\install-dotnet-sdk.yml
.build\azure-templates\publish-nuget-packages.yml = .build\azure-templates\publish-nuget-packages.yml
.build\azure-templates\publish-test-results-for-test-projects.yml = .build\azure-templates\publish-test-results-for-test-projects.yml
.build\azure-templates\publish-test-results.yml = .build\azure-templates\publish-test-results.yml
.build\azure-templates\run-tests-on-os.yml = .build\azure-templates\run-tests-on-os.yml
.build\azure-templates\show-all-environment-variables.yml = .build\azure-templates\show-all-environment-variables.yml
.build\azure-templates\show-all-files.yml = .build\azure-templates\show-all-files.yml
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RandomizedTesting", "src\RandomizedTesting\RandomizedTesting.csproj", "{2306F824-22C5-403D-A586-21AA2516F8DD}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "docs", "docs", "{0BD3BA38-6C60-4064-9129-D73C5A6BE71F}"
ProjectSection(SolutionItems) = preProject
docs\building-and-testing.md = docs\building-and-testing.md
docs\make-release.md = docs\make-release.md
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{BA223233-E6D0-4E9C-A73E-FC7E57C2F8FE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BA223233-E6D0-4E9C-A73E-FC7E57C2F8FE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BA223233-E6D0-4E9C-A73E-FC7E57C2F8FE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BA223233-E6D0-4E9C-A73E-FC7E57C2F8FE}.Release|Any CPU.Build.0 = Release|Any CPU
{483E1111-BAEC-4CB6-AE7D-31742F6FD17B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{483E1111-BAEC-4CB6-AE7D-31742F6FD17B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{483E1111-BAEC-4CB6-AE7D-31742F6FD17B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{483E1111-BAEC-4CB6-AE7D-31742F6FD17B}.Release|Any CPU.Build.0 = Release|Any CPU
{2306F824-22C5-403D-A586-21AA2516F8DD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2306F824-22C5-403D-A586-21AA2516F8DD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2306F824-22C5-403D-A586-21AA2516F8DD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2306F824-22C5-403D-A586-21AA2516F8DD}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{BA223233-E6D0-4E9C-A73E-FC7E57C2F8FE} = {9545F378-6BE8-4930-AAF2-E07FFA31E1A5}
{483E1111-BAEC-4CB6-AE7D-31742F6FD17B} = {DD8E38DD-3D0A-42F5-9931-E3EAB1020623}
{D38AFCA4-6C93-43BF-BE6E-A071E0E6FB41} = {57E113A5-805B-46F8-90A6-A041800F03E0}
{2306F824-22C5-403D-A586-21AA2516F8DD} = {9545F378-6BE8-4930-AAF2-E07FFA31E1A5}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {230DB6D3-967C-4F2E-A1F1-604590B020E5}
EndGlobalSection
EndGlobal