refactor(directory): ♻ suppress CS8625 warning from EF-generated migrations proj

This commit is contained in:
Collin M. Barrett 2020-09-07 17:08:25 -05:00
parent a80618ff44
commit a03b7428e0

View file

@ -17,11 +17,11 @@
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;</NoWarn>
<NoWarn>1701;1702;CS8625</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<NoWarn></NoWarn>
<NoWarn>CS8625</NoWarn>
</PropertyGroup>
<ItemGroup>