forked from Fody/NullGuard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NullGuard.sln
110 lines (110 loc) · 7.42 KB
/
NullGuard.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
102
103
104
105
106
107
108
109
110
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29201.188
MinimumVisualStudioVersion = 16.0.29201.188
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NullGuard.Fody", "NullGuard.Fody\NullGuard.Fody.csproj", "{C3578A7B-09A6-4444-9383-0DEAFA4958BD}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tests", "Tests\Tests.csproj", "{5A86453B-96FB-4B6E-A283-225BB9F753D3}"
ProjectSection(ProjectDependencies) = postProject
{23C29B37-221D-473E-967B-DC423F5F4AB2} = {23C29B37-221D-473E-967B-DC423F5F4AB2}
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AssemblyToProcess", "AssemblyToProcess\AssemblyToProcess.csproj", "{23C29B37-221D-473E-967B-DC423F5F4AB2}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NullGuard", "NullGuard\NullGuard.csproj", "{B5AEB0E8-28F4-4955-A055-9C200F7113F0}"
ProjectSection(ProjectDependencies) = postProject
{C3578A7B-09A6-4444-9383-0DEAFA4958BD} = {C3578A7B-09A6-4444-9383-0DEAFA4958BD}
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AssemblyToProcessExplicit", "AssemblyToProcessExplicit\AssemblyToProcessExplicit.csproj", "{829F9B12-5087-4DDB-9ECF-237F691DAEC2}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestsExplicit", "TestsExplicit\TestsExplicit.csproj", "{7F75DAD1-A440-4B15-AE42-34EAEB515A05}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{80736054-409A-49E0-A30F-44530D83166C}"
ProjectSection(SolutionItems) = preProject
appveyor.yml = appveyor.yml
Directory.Build.props = Directory.Build.props
README.md = README.md
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AssemblyWithAnnotations", "AssemblyWithAnnotations\AssemblyWithAnnotations.csproj", "{E6300522-9050-43C0-8B29-9993E26415FF}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AssemblyWithExternalAnnotations", "AssemblyWithExternalAnnotations\AssemblyWithExternalAnnotations.csproj", "{B834F8CA-7CA6-4BBE-B54F-009F38EE9064}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestsCommon", "TestsCommon\TestsCommon.csproj", "{9B26DD0B-4255-428A-A7FB-D1C2142E6A37}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NetFrameworkSmokeTest", "NetFrameworkSmokeTest\NetFrameworkSmokeTest.csproj", "{09AB176F-9BEA-4A90-818E-2FF49C6199F0}"
ProjectSection(ProjectDependencies) = postProject
{C3578A7B-09A6-4444-9383-0DEAFA4958BD} = {C3578A7B-09A6-4444-9383-0DEAFA4958BD}
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AssemblyToProcessNullableRefTypes", "AssemblyToProcessNullableRefTypes\AssemblyToProcessNullableRefTypes.csproj", "{0DDC6841-2CC6-4437-8080-BA828C731A1D}"
ProjectSection(ProjectDependencies) = postProject
{C3578A7B-09A6-4444-9383-0DEAFA4958BD} = {C3578A7B-09A6-4444-9383-0DEAFA4958BD}
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestsNullableRefTypes", "TestsNullableRefTypes\TestsNullableRefTypes.csproj", "{6388AD66-C283-4185-8833-6E9E9693E821}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{C3578A7B-09A6-4444-9383-0DEAFA4958BD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C3578A7B-09A6-4444-9383-0DEAFA4958BD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C3578A7B-09A6-4444-9383-0DEAFA4958BD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C3578A7B-09A6-4444-9383-0DEAFA4958BD}.Release|Any CPU.Build.0 = Release|Any CPU
{5A86453B-96FB-4B6E-A283-225BB9F753D3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5A86453B-96FB-4B6E-A283-225BB9F753D3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5A86453B-96FB-4B6E-A283-225BB9F753D3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5A86453B-96FB-4B6E-A283-225BB9F753D3}.Release|Any CPU.Build.0 = Release|Any CPU
{23C29B37-221D-473E-967B-DC423F5F4AB2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{23C29B37-221D-473E-967B-DC423F5F4AB2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{23C29B37-221D-473E-967B-DC423F5F4AB2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{23C29B37-221D-473E-967B-DC423F5F4AB2}.Release|Any CPU.Build.0 = Release|Any CPU
{B5AEB0E8-28F4-4955-A055-9C200F7113F0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B5AEB0E8-28F4-4955-A055-9C200F7113F0}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B5AEB0E8-28F4-4955-A055-9C200F7113F0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B5AEB0E8-28F4-4955-A055-9C200F7113F0}.Release|Any CPU.Build.0 = Release|Any CPU
{829F9B12-5087-4DDB-9ECF-237F691DAEC2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{829F9B12-5087-4DDB-9ECF-237F691DAEC2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{829F9B12-5087-4DDB-9ECF-237F691DAEC2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{829F9B12-5087-4DDB-9ECF-237F691DAEC2}.Release|Any CPU.Build.0 = Release|Any CPU
{7F75DAD1-A440-4B15-AE42-34EAEB515A05}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7F75DAD1-A440-4B15-AE42-34EAEB515A05}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7F75DAD1-A440-4B15-AE42-34EAEB515A05}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7F75DAD1-A440-4B15-AE42-34EAEB515A05}.Release|Any CPU.Build.0 = Release|Any CPU
{E6300522-9050-43C0-8B29-9993E26415FF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E6300522-9050-43C0-8B29-9993E26415FF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E6300522-9050-43C0-8B29-9993E26415FF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E6300522-9050-43C0-8B29-9993E26415FF}.Release|Any CPU.Build.0 = Release|Any CPU
{B834F8CA-7CA6-4BBE-B54F-009F38EE9064}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B834F8CA-7CA6-4BBE-B54F-009F38EE9064}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B834F8CA-7CA6-4BBE-B54F-009F38EE9064}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B834F8CA-7CA6-4BBE-B54F-009F38EE9064}.Release|Any CPU.Build.0 = Release|Any CPU
{9B26DD0B-4255-428A-A7FB-D1C2142E6A37}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9B26DD0B-4255-428A-A7FB-D1C2142E6A37}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9B26DD0B-4255-428A-A7FB-D1C2142E6A37}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9B26DD0B-4255-428A-A7FB-D1C2142E6A37}.Release|Any CPU.Build.0 = Release|Any CPU
{09AB176F-9BEA-4A90-818E-2FF49C6199F0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{09AB176F-9BEA-4A90-818E-2FF49C6199F0}.Debug|Any CPU.Build.0 = Debug|Any CPU
{09AB176F-9BEA-4A90-818E-2FF49C6199F0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{09AB176F-9BEA-4A90-818E-2FF49C6199F0}.Release|Any CPU.Build.0 = Release|Any CPU
{0DDC6841-2CC6-4437-8080-BA828C731A1D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0DDC6841-2CC6-4437-8080-BA828C731A1D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0DDC6841-2CC6-4437-8080-BA828C731A1D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0DDC6841-2CC6-4437-8080-BA828C731A1D}.Release|Any CPU.Build.0 = Release|Any CPU
{6388AD66-C283-4185-8833-6E9E9693E821}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6388AD66-C283-4185-8833-6E9E9693E821}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6388AD66-C283-4185-8833-6E9E9693E821}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6388AD66-C283-4185-8833-6E9E9693E821}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {18EBA4D8-4A58-4A2D-890E-58CFDCBDE5E7}
EndGlobalSection
EndGlobal