Skip to content

Commit 2078e67

Browse files
committed
Made csproj LangVersions consistent and suppressed a needless suggestion.
1 parent aaf25f0 commit 2078e67

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

DomainModeling.Analyzer/DomainModeling.Analyzer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<RootNamespace>Architect.DomainModeling.Analyzer</RootNamespace>
77
<Nullable>Enable</Nullable>
88
<ImplicitUsings>Enable</ImplicitUsings>
9-
<LangVersion>13</LangVersion>
9+
<LangVersion>14</LangVersion>
1010
<IsPackable>False</IsPackable>
1111
<DevelopmentDependency>True</DevelopmentDependency>
1212
<EnforceExtendedAnalyzerRules>True</EnforceExtendedAnalyzerRules>

DomainModeling.CodeFixProviders/DomainModeling.CodeFixProviders.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<RootNamespace>Architect.DomainModeling.CodeFixProviders</RootNamespace>
77
<Nullable>Enable</Nullable>
88
<ImplicitUsings>Enable</ImplicitUsings>
9-
<LangVersion>13</LangVersion>
9+
<LangVersion>14</LangVersion>
1010
<IsPackable>False</IsPackable>
1111
<DevelopmentDependency>True</DevelopmentDependency>
1212
<EnforceExtendedAnalyzerRules>True</EnforceExtendedAnalyzerRules>

DomainModeling.Example/DomainModeling.Example.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414

1515
<PropertyGroup>
1616
<!-- IDE0290: Use primary constructor - domain objects tend to have complex ctor logic, and we want to be consistent even when ctors are simple -->
17-
<NoWarn>IDE0290</NoWarn>
17+
<!-- SYSLIB1045: Use 'GeneratedRegexAttribute' to generate the regular expression implementation at compile-time - simplicity preferred in example project -->
18+
<NoWarn>IDE0290;SYSLIB1045;</NoWarn>
1819
</PropertyGroup>
1920

2021
<ItemGroup>

0 commit comments

Comments
 (0)