Supress warnings when consuming source package

This commit is contained in:
Patrik Svensson 2021-10-18 20:21:30 +02:00 коммит произвёл Patrik Svensson
Родитель 85833ed6c9
Коммит fc7c78bbc8
5 изменённых файлов: 40 добавлений и 0 удалений

Просмотреть файл

@ -1,3 +1,9 @@
#if WCWIDTH
#pragma warning restore
#else
#pragma warning disable
#endif
using System.Collections.Generic;
namespace Wcwidth

Просмотреть файл

@ -1,3 +1,9 @@
#if WCWIDTH
#pragma warning restore
#else
#pragma warning disable
#endif
using System.Collections.Generic;
namespace Wcwidth

Просмотреть файл

@ -1,3 +1,9 @@
#if WCWIDTH
#pragma warning restore
#else
#pragma warning disable
#endif
using System.ComponentModel;
using System.Diagnostics.CodeAnalysis;

Просмотреть файл

@ -39,6 +39,12 @@
//
// http://www.unicode.org/unicode/reports/tr11/
#if WCWIDTH
#pragma warning restore
#else
#pragma warning disable
#endif
using System.Collections.Generic;
#if NET5_0
using System.Text;

Просмотреть файл

@ -6,6 +6,22 @@
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net5.0|AnyCPU'">
<DefineConstants>$(DefineConstants)TRACE;WCWIDTH</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net5.0|AnyCPU'">
<DefineConstants>$(DefineConstants)TRACE;WCWIDTH</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'">
<DefineConstants>$(DefineConstants)TRACE;WCWIDTH</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
<DefineConstants>$(DefineConstants)TRACE;WCWIDTH</DefineConstants>
</PropertyGroup>
<ItemGroup>
<AdditionalFiles Include="..\stylecop.json" Link="stylecop.json" />
</ItemGroup>