-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVersion.props
More file actions
72 lines (62 loc) · 5.28 KB
/
Version.props
File metadata and controls
72 lines (62 loc) · 5.28 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
69
70
71
72
<Project>
<!--
LOCAL OVERRIDE — ANcpLua.Analyzers (NOT the SDK source-of-truth)
Imported by Directory.Packages.props AFTER the SDK-shipped Version.props,
so locals win. The SDK truth file lives inside the published nupkg at
~/.nuget/packages/ancplua.net.sdk/<ver>/Build/Common/Version.props.
INVARIANT: keep only entries AHEAD of the SDK. If an entry equals SDK or
has fallen BEHIND, delete it — the SDK value flows through. BEHIND drift =
silent regression, not a feature.
-->
<PropertyGroup Label="SDK Version (Auto-generated)">
<ANcpSdkPackageVersion>999.9.9</ANcpSdkPackageVersion>
</PropertyGroup>
<PropertyGroup Label=".NET SDK">
<DotNetSdkRollForward>latestMinor</DotNetSdkRollForward>
</PropertyGroup>
<!-- ═══════════════════════════════════════════════════════════════════════
ROSLYN.UTILITIES (Runtime package)
═══════════════════════════════════════════════════════════════════════ -->
<PropertyGroup Label="Roslyn.Utilities">
<ANcpLuaRoslynUtilitiesVersion>2.0.7</ANcpLuaRoslynUtilitiesVersion>
</PropertyGroup>
<!-- ═══════════════════════════════════════════════════════════════════════
ROSLYN.UTILITIES.SOURCES (Source-only package for generators)
═══════════════════════════════════════════════════════════════════════ -->
<PropertyGroup Label="Roslyn.Utilities.Sources">
<ANcpLuaRoslynUtilitiesSourcesVersion>2.0.7</ANcpLuaRoslynUtilitiesSourcesVersion>
</PropertyGroup>
<!-- ═══════════════════════════════════════════════════════════════════════
ROSLYN.UTILITIES.POLYFILLS (Source-only polyfills for netstandard2.0)
═══════════════════════════════════════════════════════════════════════ -->
<PropertyGroup Label="Roslyn.Utilities.Polyfills">
<ANcpLuaRoslynUtilitiesPolyfillsVersion>2.0.7</ANcpLuaRoslynUtilitiesPolyfillsVersion>
</PropertyGroup>
<!-- ═══════════════════════════════════════════════════════════════════════
ROSLYN.UTILITIES.TESTING (Analyzer/CodeFix/Generator test infrastructure)
═══════════════════════════════════════════════════════════════════════ -->
<PropertyGroup Label="Roslyn.Utilities.Testing">
<ANcpLuaRoslynUtilitiesTestingVersion>2.0.7</ANcpLuaRoslynUtilitiesTestingVersion>
</PropertyGroup>
<!-- ═══════════════════════════════════════════════════════════════════════
MEZIANTOU PACKAGES
Used by: SDK, Roslyn.Utilities
═══════════════════════════════════════════════════════════════════════ -->
<PropertyGroup Label="Meziantou">
<MeziantouAnalyzerVersion>3.0.44</MeziantouAnalyzerVersion>
</PropertyGroup>
<!-- ═══════════════════════════════════════════════════════════════════════
ANALYZERS (SDK-injected)
═══════════════════════════════════════════════════════════════════════ -->
<PropertyGroup Label="Analyzers">
<ANcpLuaAnalyzersVersion>1.27.6</ANcpLuaAnalyzersVersion>
<JonSkeetAnalyzersVersion>1.0.0-beta.6</JonSkeetAnalyzersVersion>
</PropertyGroup>
<!-- ═══════════════════════════════════════════════════════════════════════
LEGACY ALIASES (backward compatibility)
═══════════════════════════════════════════════════════════════════════ -->
<PropertyGroup Label="Aliases">
<XunitMtpVersion>$(XunitV3Version)</XunitMtpVersion>
<MvcTestingVersion>$(AspNetCoreVersion)</MvcTestingVersion>
</PropertyGroup>
</Project>