Skip to content

Commit e5de945

Browse files
author
Eoin Campbell
committed
Common Props file to bypass Package Warning
As of VS2015.3 & a recent .NET Core & MSBuild revisions, a breaking build change was introduced to make NU1605 a build breaking warning by default. This causes hundreds of build errors in the project due to the presence of newer framework and .net core library versions. This common props file ignores the warning. See: NuGet/Home#5594
1 parent dd54cf2 commit e5de945

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/Directory.Build.props

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<Project>
2+
<PropertyGroup>
3+
<NoWarn>$(NoWarn);NU1605</NoWarn>
4+
</PropertyGroup>
5+
</Project>

0 commit comments

Comments
 (0)