-
Notifications
You must be signed in to change notification settings - Fork 301
/
Copy pathProjectLangVersion.cs
169 lines (139 loc) · 5.88 KB
/
ProjectLangVersion.cs
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
using System.Collections.Generic;
using System.IO;
using System.Xml.Linq;
using System.Xml.XPath;
using NUnit.Framework;
namespace IntegrityTests
{
public class ProjectLangVersion
{
[Test]
public void SnippetsShouldNotHaveLangVersionProperty()
{
new TestRunner("*.csproj", "Snippets projects should not have a LangVersion property")
.IgnoreSamples()
.IgnoreTutorials()
.Run(projectFilePath =>
{
var xdoc = XDocument.Load(projectFilePath);
if (xdoc.Root.Attribute("xmlns") != null)
{
return true;
}
var firstLangVersionElement = xdoc.XPathSelectElement("/Project/PropertyGroup/LangVersion");
return firstLangVersionElement is null;
});
}
[Test]
public void SamplesShouldUseCorrectLangVersion()
{
new TestRunner("*.sln", "Samples must specify the correct LangVersion")
.IgnoreSnippets()
.IgnoreTutorials()
.Run(solutionFilePath =>
{
var samplePath = Path.GetDirectoryName(solutionFilePath);
var projectFiles = Directory.GetFiles(samplePath, "*.csproj", SearchOption.AllDirectories);
int? solutionLangVersion = null;
foreach (var projectFile in projectFiles)
{
//Don't analyze generated project files
if (projectFile.Contains("obj"))
{
continue;
}
var doc = XDocument.Load(projectFile);
if (doc.Root.Attribute("Sdk") == null)
{
continue;
}
string[] projectTfms;
var firstTargetFrameworkElement = doc.XPathSelectElement("/Project/PropertyGroup/TargetFramework");
var tfm = firstTargetFrameworkElement?.Value;
if (tfm is not null)
{
projectTfms = [tfm];
}
else
{
var firstTargetFrameworksElement = doc.XPathSelectElement("/Project/PropertyGroup/TargetFrameworks");
var tfms = firstTargetFrameworksElement?.Value;
projectTfms = tfms.Split(';');
}
var projectLangVersion = GetLangVersionForProject(projectTfms);
if (solutionLangVersion is null || projectLangVersion < solutionLangVersion)
{
solutionLangVersion = projectLangVersion;
}
}
solutionLangVersion ??= fallbackLangVersion;
var solutionLangVersionString = solutionLangVersion.Value.ToString("N1");
bool valid = true;
foreach (var projectFile in projectFiles)
{
//Don't analyze generated project files
if (projectFile.Contains("obj"))
{
continue;
}
var doc = XDocument.Load(projectFile);
if (doc.Root.Attribute("Sdk") == null)
{
continue;
}
var firstLangVersionElement = doc.XPathSelectElement("/Project/PropertyGroup/LangVersion");
var langVersion = firstLangVersionElement?.Value ?? "Unknown";
if (!langVersion.Equals(solutionLangVersionString, System.StringComparison.Ordinal))
{
valid = false;
}
}
return (valid, $"LangVersion should be {solutionLangVersionString}");
});
}
static int? GetLangVersionForProject(string[] tfms)
{
int? projectLangVersion = null;
foreach (var tfm in tfms)
{
if (langVersions.TryGetValue(tfm, out var langVersion))
{
if (projectLangVersion is null || langVersion < projectLangVersion)
{
projectLangVersion = langVersion;
}
}
}
return projectLangVersion;
}
[Test]
public void ShouldHaveLangVersionMappingForEachAllowedTargetFramework()
{
List<string> missingTargetFrameworks = [];
foreach (var tfm in ProjectFrameworks.sdkProjectAllowedTfmList)
{
if (!langVersions.ContainsKey(tfm))
{
missingTargetFrameworks.Add(tfm);
}
}
if (missingTargetFrameworks.Count > 0)
{
Assert.Fail($"The following allowed TargetFrameworks are missing LangVersion mappings:\r\n > {string.Join("\r\n > ", missingTargetFrameworks)}");
}
}
static readonly int fallbackLangVersion = 10;
static readonly Dictionary<string, int?> langVersions = new()
{
// null values here mean we don't want that tfm to be considered in the calculations
{"net48", null },
{"netstandard2.0", null },
{ "net6.0", 10 },
{ "net6.0-windows", 10 },
{ "net8.0", 12 },
{ "net8.0-windows", 12 },
{ "net9.0", 13 },
{ "net9.0-windows", 13 },
};
}
}