Skip to content

Commit f0c80e4

Browse files
Silence NU1510
1 parent f97e597 commit f0c80e4

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

Directory.Build.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<Project>
22
<PropertyGroup>
33
<WarningsAsErrors>IDE2000</WarningsAsErrors>
4+
<NoWarn>$(NoWarn);NU1510</NoWarn>
45
</PropertyGroup>
56

67
<PropertyGroup>

ICSharpCode.Decompiler.Tests/ICSharpCode.Decompiler.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
2222

23-
<NoWarn>1701;1702;1705,67,169,1058,728,1720,649,168,251,660,661,675;1998;162;8632;626;8618;8714;8602;8981</NoWarn>
23+
<NoWarn>$(NoWarn);1701;1702;1705,67,169,1058,728,1720,649,168,251,660,661,675;1998;162;8632;626;8618;8714;8602;8981</NoWarn>
2424
<DefineConstants>ROSLYN;ROSLYN2;ROSLYN3;ROSLYN4;NET60;CS60;CS70;CS71;CS72;CS73;CS80;CS90;CS100;CS110;CS120;CS130</DefineConstants>
2525

2626
<GenerateAssemblyVersionAttribute>False</GenerateAssemblyVersionAttribute>

ICSharpCode.Decompiler/ICSharpCode.Decompiler.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<GenerateDocumentationFile>true</GenerateDocumentationFile>
3333
<SignAssembly>True</SignAssembly>
3434
<AssemblyOriginatorKeyFile>ICSharpCode.Decompiler.snk</AssemblyOriginatorKeyFile>
35-
<NoWarn>1701;1702;1591;1573</NoWarn>
35+
<NoWarn>$(NoWarn);1701;1702;1591;1573</NoWarn>
3636
<WarningsAsErrors>nullable</WarningsAsErrors>
3737

3838
<DebugType>embedded</DebugType>

ILSpy.Tests/ILSpy.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
1717

18-
<NoWarn>1701;1702;1705,67,169,1058,728,1720,649,168,251</NoWarn>
18+
<NoWarn>$(NoWarn);1701;1702;1705,67,169,1058,728,1720,649,168,251</NoWarn>
1919

2020
<EnableDefaultItems>false</EnableDefaultItems>
2121

ILSpy/ILSpy.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,11 @@
110110
</PropertyGroup>
111111

112112
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
113-
<NoWarn>1701;1702;CA1001;CA2213</NoWarn>
113+
<NoWarn>$(NoWarn);1701;1702;CA1001;CA2213</NoWarn>
114114
</PropertyGroup>
115115

116116
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
117-
<NoWarn>1701;1702;CA1001;CA2213</NoWarn>
117+
<NoWarn>$(NoWarn);1701;1702;CA1001;CA2213</NoWarn>
118118
</PropertyGroup>
119119

120120
<Import Project="$(VCToolsVersionPropsFile)" Condition="Exists('$(VCToolsVersionPropsFile)')" />

0 commit comments

Comments
 (0)