Skip to content

Commit f6170ff

Browse files
committed
!!temporary!! Suppress NU5118 and NU5129 warnings
1 parent e8f18a5 commit f6170ff

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

src/Mvc/Mvc.Razor.RuntimeCompilation/src/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.csproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
32
<PropertyGroup>
43
<Description>Runtime compilation support for Razor views and Razor Pages in ASP.NET Core MVC.</Description>
54
<TargetFramework>$(DefaultNetCoreTargetFramework)</TargetFramework>
65
<NoWarn>$(NoWarn);CS1591</NoWarn>
6+
7+
<!-- !!! Temporary workaround while we switch TFMs. -->
8+
<NoWarn>$(NoWarn);NU5129</NoWarn>
9+
710
<GenerateDocumentationFile>true</GenerateDocumentationFile>
811
<PackageTags>aspnetcore;aspnetcoremvc;razor</PackageTags>
912
<IsPackable>true</IsPackable>

src/Mvc/Mvc.Testing/src/Microsoft.AspNetCore.Mvc.Testing.csproj

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
32
<PropertyGroup>
43
<Description>Support for writing functional tests for MVC applications.</Description>
54
<TargetFramework>$(DefaultNetCoreTargetFramework)</TargetFramework>
65
<NoWarn>$(NoWarn);CS1591</NoWarn>
6+
7+
<!-- !!! Temporary workaround while we switch TFMs. -->
8+
<NoWarn>$(NoWarn);NU5129</NoWarn>
9+
710
<GenerateDocumentationFile>true</GenerateDocumentationFile>
811
<PackageTags>aspnetcore;aspnetcoremvc;aspnetcoremvctesting</PackageTags>
912
<IsPackable>true</IsPackable>
@@ -21,5 +24,4 @@
2124
<ItemGroup>
2225
<Content Include="Microsoft.AspNetCore.Mvc.Testing.targets" Pack="true" PackagePath="build/$(TargetFramework)/" />
2326
</ItemGroup>
24-
2527
</Project>

src/Tools/Directory.Build.props

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22
<PropertyGroup>
33
<ToolSharedSourceRoot>$(MSBuildThisFileDirectory)Shared\</ToolSharedSourceRoot>
44
<DisablePubternalApiCheck>true</DisablePubternalApiCheck>
5+
6+
<!-- !!! Temporary workaround while we switch TFMs. -->
7+
<NoWarn>$(NoWarn);NU5118</NoWarn>
58
</PropertyGroup>
69

710
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory)..\, Directory.Build.props))\Directory.Build.props" />
8-
911
</Project>

0 commit comments

Comments
 (0)