Skip to content

Commit 4c7e988

Browse files
committed
Manage NoWarn(s) from a single place
Makes sure that global NoWarn(s) can be added/removed without editing each and every project file.
1 parent 6303c67 commit 4c7e988

File tree

11 files changed

+11
-90
lines changed

11 files changed

+11
-90
lines changed

Directory.Build.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
<PropertyGroup>
2121
<IsPackable>false</IsPackable>
2222
<IsPublishable>false</IsPublishable>
23+
<NoWarn>$(NoWarn);CS8002;SA0001</NoWarn>
2324
</PropertyGroup>
2425
</Otherwise>
2526
</Choose>

GazeInputTest/GazeInputTest.csproj

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
1818
<WindowsXamlEnableOverview>true</WindowsXamlEnableOverview>
1919
<AppxPackageSigningEnabled>false</AppxPackageSigningEnabled>
20+
<NoWarn>$(NoWarn);2008</NoWarn>
2021
</PropertyGroup>
2122
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
2223
<DebugSymbols>true</DebugSymbols>
2324
<OutputPath>bin\x86\Debug\</OutputPath>
2425
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
25-
<NoWarn>;2008</NoWarn>
2626
<DebugType>full</DebugType>
2727
<PlatformTarget>x86</PlatformTarget>
2828
<UseVSHostingProcess>false</UseVSHostingProcess>
@@ -33,7 +33,6 @@
3333
<OutputPath>bin\x86\Release\</OutputPath>
3434
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
3535
<Optimize>true</Optimize>
36-
<NoWarn>;2008</NoWarn>
3736
<DebugType>pdbonly</DebugType>
3837
<PlatformTarget>x86</PlatformTarget>
3938
<UseVSHostingProcess>false</UseVSHostingProcess>
@@ -45,7 +44,6 @@
4544
<DebugSymbols>true</DebugSymbols>
4645
<OutputPath>bin\ARM\Debug\</OutputPath>
4746
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
48-
<NoWarn>;2008</NoWarn>
4947
<DebugType>full</DebugType>
5048
<PlatformTarget>ARM</PlatformTarget>
5149
<UseVSHostingProcess>false</UseVSHostingProcess>
@@ -56,7 +54,6 @@
5654
<OutputPath>bin\ARM\Release\</OutputPath>
5755
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
5856
<Optimize>true</Optimize>
59-
<NoWarn>;2008</NoWarn>
6057
<DebugType>pdbonly</DebugType>
6158
<PlatformTarget>ARM</PlatformTarget>
6259
<UseVSHostingProcess>false</UseVSHostingProcess>
@@ -68,7 +65,6 @@
6865
<DebugSymbols>true</DebugSymbols>
6966
<OutputPath>bin\ARM64\Debug\</OutputPath>
7067
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
71-
<NoWarn>;2008</NoWarn>
7268
<DebugType>full</DebugType>
7369
<PlatformTarget>ARM64</PlatformTarget>
7470
<UseVSHostingProcess>false</UseVSHostingProcess>
@@ -79,7 +75,6 @@
7975
<OutputPath>bin\ARM64\Release\</OutputPath>
8076
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
8177
<Optimize>true</Optimize>
82-
<NoWarn>;2008</NoWarn>
8378
<DebugType>pdbonly</DebugType>
8479
<PlatformTarget>ARM64</PlatformTarget>
8580
<UseVSHostingProcess>false</UseVSHostingProcess>
@@ -91,7 +86,6 @@
9186
<DebugSymbols>true</DebugSymbols>
9287
<OutputPath>bin\x64\Debug\</OutputPath>
9388
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
94-
<NoWarn>;2008</NoWarn>
9589
<DebugType>full</DebugType>
9690
<PlatformTarget>x64</PlatformTarget>
9791
<UseVSHostingProcess>false</UseVSHostingProcess>
@@ -102,7 +96,6 @@
10296
<OutputPath>bin\x64\Release\</OutputPath>
10397
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
10498
<Optimize>true</Optimize>
105-
<NoWarn>;2008</NoWarn>
10699
<DebugType>pdbonly</DebugType>
107100
<PlatformTarget>x64</PlatformTarget>
108101
<UseVSHostingProcess>false</UseVSHostingProcess>

Microsoft.Toolkit.Uwp.SampleApp/Microsoft.Toolkit.Uwp.SampleApp.csproj

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
<AppxBundlePlatforms>x86|x64|arm|arm64</AppxBundlePlatforms>
2121
<Win32Resource>MiddleClickScrolling-CursorType.res</Win32Resource>
2222
<AppxPackageSigningEnabled>false</AppxPackageSigningEnabled>
23+
<NoWarn>$(NoWarn);2008</NoWarn>
2324
</PropertyGroup>
2425
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
2526
<DebugSymbols>true</DebugSymbols>
2627
<OutputPath>bin\x86\Debug\</OutputPath>
2728
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
28-
<NoWarn>;2008</NoWarn>
2929
<DebugType>full</DebugType>
3030
<PlatformTarget>x86</PlatformTarget>
3131
<UseVSHostingProcess>false</UseVSHostingProcess>
@@ -37,7 +37,6 @@
3737
<OutputPath>bin\x86\Release\</OutputPath>
3838
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP;REMOTE_DOCS</DefineConstants>
3939
<Optimize>true</Optimize>
40-
<NoWarn>;2008</NoWarn>
4140
<DebugType>pdbonly</DebugType>
4241
<PlatformTarget>x86</PlatformTarget>
4342
<UseVSHostingProcess>false</UseVSHostingProcess>
@@ -52,7 +51,6 @@
5251
<DebugSymbols>true</DebugSymbols>
5352
<OutputPath>bin\ARM\Debug\</OutputPath>
5453
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
55-
<NoWarn>;2008</NoWarn>
5654
<DebugType>full</DebugType>
5755
<PlatformTarget>ARM</PlatformTarget>
5856
<UseVSHostingProcess>false</UseVSHostingProcess>
@@ -63,7 +61,6 @@
6361
<OutputPath>bin\ARM\Release\</OutputPath>
6462
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP;REMOTE_DOCS</DefineConstants>
6563
<Optimize>true</Optimize>
66-
<NoWarn>;2008</NoWarn>
6764
<DebugType>pdbonly</DebugType>
6865
<PlatformTarget>ARM</PlatformTarget>
6966
<UseVSHostingProcess>false</UseVSHostingProcess>
@@ -78,7 +75,6 @@
7875
<DebugSymbols>true</DebugSymbols>
7976
<OutputPath>bin\x64\Debug\</OutputPath>
8077
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
81-
<NoWarn>;2008</NoWarn>
8278
<DebugType>full</DebugType>
8379
<PlatformTarget>x64</PlatformTarget>
8480
<UseVSHostingProcess>false</UseVSHostingProcess>
@@ -89,7 +85,6 @@
8985
<OutputPath>bin\x64\Release\</OutputPath>
9086
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP;REMOTE_DOCS</DefineConstants>
9187
<Optimize>true</Optimize>
92-
<NoWarn>;2008</NoWarn>
9388
<DebugType>pdbonly</DebugType>
9489
<PlatformTarget>x64</PlatformTarget>
9590
<UseVSHostingProcess>false</UseVSHostingProcess>
@@ -1475,15 +1470,13 @@
14751470
<Name>Visual C++ 2015 Runtime for Universal Windows Platform Apps</Name>
14761471
</SDKReference>
14771472
</ItemGroup>
1478-
<ItemGroup />
14791473
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' &lt; '14.0' ">
14801474
<VisualStudioVersion>14.0</VisualStudioVersion>
14811475
</PropertyGroup>
14821476
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM64'">
14831477
<DebugSymbols>true</DebugSymbols>
14841478
<OutputPath>bin\ARM64\Debug\</OutputPath>
14851479
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
1486-
<NoWarn>;2008</NoWarn>
14871480
<NoStdLib>true</NoStdLib>
14881481
<DebugType>full</DebugType>
14891482
<PlatformTarget>ARM64</PlatformTarget>
@@ -1496,7 +1489,6 @@
14961489
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP;REMOTE_DOCS</DefineConstants>
14971490
<Optimize>true</Optimize>
14981491
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
1499-
<NoWarn>;2008</NoWarn>
15001492
<NoStdLib>true</NoStdLib>
15011493
<DebugType>pdbonly</DebugType>
15021494
<PlatformTarget>ARM64</PlatformTarget>

Microsoft.Toolkit.Uwp.Samples.BackgroundTasks/Microsoft.Toolkit.Uwp.Samples.BackgroundTasks.csproj

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
<FileAlignment>512</FileAlignment>
1717
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
1818
<AllowCrossPlatformRetargeting>false</AllowCrossPlatformRetargeting>
19+
<NoWarn>$(NoWarn);2008</NoWarn>
1920
</PropertyGroup>
2021
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2122
<PlatformTarget>AnyCPU</PlatformTarget>
@@ -41,7 +42,6 @@
4142
<DebugSymbols>true</DebugSymbols>
4243
<OutputPath>bin\x86\Debug\</OutputPath>
4344
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
44-
<NoWarn>;2008</NoWarn>
4545
<DebugType>full</DebugType>
4646
<PlatformTarget>x86</PlatformTarget>
4747
<UseVSHostingProcess>false</UseVSHostingProcess>
@@ -52,7 +52,6 @@
5252
<OutputPath>bin\x86\Release\</OutputPath>
5353
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
5454
<Optimize>true</Optimize>
55-
<NoWarn>;2008</NoWarn>
5655
<DebugType>pdbonly</DebugType>
5756
<PlatformTarget>x86</PlatformTarget>
5857
<UseVSHostingProcess>false</UseVSHostingProcess>
@@ -63,7 +62,6 @@
6362
<DebugSymbols>true</DebugSymbols>
6463
<OutputPath>bin\ARM\Debug\</OutputPath>
6564
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
66-
<NoWarn>;2008</NoWarn>
6765
<DebugType>full</DebugType>
6866
<PlatformTarget>ARM</PlatformTarget>
6967
<UseVSHostingProcess>false</UseVSHostingProcess>
@@ -74,7 +72,6 @@
7472
<OutputPath>bin\ARM\Release\</OutputPath>
7573
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
7674
<Optimize>true</Optimize>
77-
<NoWarn>;2008</NoWarn>
7875
<DebugType>pdbonly</DebugType>
7976
<PlatformTarget>ARM</PlatformTarget>
8077
<UseVSHostingProcess>false</UseVSHostingProcess>
@@ -85,7 +82,6 @@
8582
<DebugSymbols>true</DebugSymbols>
8683
<OutputPath>bin\x64\Debug\</OutputPath>
8784
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
88-
<NoWarn>;2008</NoWarn>
8985
<DebugType>full</DebugType>
9086
<PlatformTarget>x64</PlatformTarget>
9187
<UseVSHostingProcess>false</UseVSHostingProcess>
@@ -96,7 +92,6 @@
9692
<OutputPath>bin\x64\Release\</OutputPath>
9793
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
9894
<Optimize>true</Optimize>
99-
<NoWarn>;2008</NoWarn>
10095
<DebugType>pdbonly</DebugType>
10196
<PlatformTarget>x64</PlatformTarget>
10297
<UseVSHostingProcess>false</UseVSHostingProcess>
@@ -127,7 +122,6 @@
127122
<DebugSymbols>true</DebugSymbols>
128123
<OutputPath>bin\ARM64\Debug\</OutputPath>
129124
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
130-
<NoWarn>;2008</NoWarn>
131125
<DebugType>full</DebugType>
132126
<PlatformTarget>ARM64</PlatformTarget>
133127
<UseVSHostingProcess>false</UseVSHostingProcess>
@@ -137,7 +131,6 @@
137131
<OutputPath>bin\ARM64\Release\</OutputPath>
138132
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
139133
<Optimize>true</Optimize>
140-
<NoWarn>;2008</NoWarn>
141134
<DebugType>pdbonly</DebugType>
142135
<PlatformTarget>ARM64</PlatformTarget>
143136
<UseVSHostingProcess>false</UseVSHostingProcess>

SmokeTests/SmokeTest.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<AppxBundle>Always</AppxBundle>
3131
<UapAppxPackageBuildMode>StoreUpload</UapAppxPackageBuildMode>
3232
<PlatformTarget>$(Platform)</PlatformTarget>
33-
<NoWarn>;2008;SA0001;SA1601</NoWarn>
33+
<NoWarn>$(NoWarn);2008;SA1601</NoWarn>
3434
<Prefer32Bit>true</Prefer32Bit>
3535
<ErrorReport>prompt</ErrorReport>
3636
<UseVSHostingProcess>false</UseVSHostingProcess>

UITests/UITests.App/UITests.App.csproj

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@
2626
<AppxPackageSigningTimestampDigestAlgorithm>SHA256</AppxPackageSigningTimestampDigestAlgorithm>
2727
<GenerateAppxPackageOnBuild>true</GenerateAppxPackageOnBuild>
2828
<AppxPackageSigningEnabled>True</AppxPackageSigningEnabled>
29+
<NoWarn>$(NoWarn);2008</NoWarn>
2930
<IsTestHost>true</IsTestHost>
3031
</PropertyGroup>
3132
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
3233
<DebugSymbols>true</DebugSymbols>
3334
<OutputPath>bin\x86\Debug\</OutputPath>
3435
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
35-
<NoWarn>;2008</NoWarn>
3636
<DebugType>full</DebugType>
3737
<PlatformTarget>x86</PlatformTarget>
3838
<UseVSHostingProcess>false</UseVSHostingProcess>
@@ -43,7 +43,6 @@
4343
<OutputPath>bin\x86\Release\</OutputPath>
4444
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
4545
<Optimize>true</Optimize>
46-
<NoWarn>;2008</NoWarn>
4746
<DebugType>pdbonly</DebugType>
4847
<PlatformTarget>x86</PlatformTarget>
4948
<UseVSHostingProcess>false</UseVSHostingProcess>
@@ -55,7 +54,6 @@
5554
<DebugSymbols>true</DebugSymbols>
5655
<OutputPath>bin\ARM\Debug\</OutputPath>
5756
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
58-
<NoWarn>;2008</NoWarn>
5957
<DebugType>full</DebugType>
6058
<PlatformTarget>ARM</PlatformTarget>
6159
<UseVSHostingProcess>false</UseVSHostingProcess>
@@ -66,7 +64,6 @@
6664
<OutputPath>bin\ARM\Release\</OutputPath>
6765
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
6866
<Optimize>true</Optimize>
69-
<NoWarn>;2008</NoWarn>
7067
<DebugType>pdbonly</DebugType>
7168
<PlatformTarget>ARM</PlatformTarget>
7269
<UseVSHostingProcess>false</UseVSHostingProcess>
@@ -78,7 +75,6 @@
7875
<DebugSymbols>true</DebugSymbols>
7976
<OutputPath>bin\ARM64\Debug\</OutputPath>
8077
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
81-
<NoWarn>;2008</NoWarn>
8278
<DebugType>full</DebugType>
8379
<PlatformTarget>ARM64</PlatformTarget>
8480
<UseVSHostingProcess>false</UseVSHostingProcess>
@@ -90,7 +86,6 @@
9086
<OutputPath>bin\ARM64\Release\</OutputPath>
9187
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
9288
<Optimize>true</Optimize>
93-
<NoWarn>;2008</NoWarn>
9489
<DebugType>pdbonly</DebugType>
9590
<PlatformTarget>ARM64</PlatformTarget>
9691
<UseVSHostingProcess>false</UseVSHostingProcess>
@@ -102,7 +97,6 @@
10297
<DebugSymbols>true</DebugSymbols>
10398
<OutputPath>bin\x64\Debug\</OutputPath>
10499
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
105-
<NoWarn>;2008</NoWarn>
106100
<DebugType>full</DebugType>
107101
<PlatformTarget>x64</PlatformTarget>
108102
<UseVSHostingProcess>false</UseVSHostingProcess>
@@ -113,7 +107,6 @@
113107
<OutputPath>bin\x64\Release\</OutputPath>
114108
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
115109
<Optimize>true</Optimize>
116-
<NoWarn>;2008</NoWarn>
117110
<DebugType>pdbonly</DebugType>
118111
<PlatformTarget>x64</PlatformTarget>
119112
<UseVSHostingProcess>false</UseVSHostingProcess>

UnitTests/UnitTests.HighPerformance.UWP/UnitTests.HighPerformance.UWP.csproj

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
<UnitTestPlatformVersion Condition="'$(UnitTestPlatformVersion)' == ''">$(VisualStudioVersion)</UnitTestPlatformVersion>
1919
<AppxPackageSigningEnabled>false</AppxPackageSigningEnabled>
2020
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
21+
<NoWarn>$(NoWarn);2008</NoWarn>
2122
</PropertyGroup>
2223
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
2324
<DebugSymbols>true</DebugSymbols>
2425
<OutputPath>bin\x86\Debug\</OutputPath>
2526
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
26-
<NoWarn>;2008</NoWarn>
2727
<DebugType>full</DebugType>
2828
<PlatformTarget>x86</PlatformTarget>
2929
<UseVSHostingProcess>false</UseVSHostingProcess>
@@ -34,7 +34,6 @@
3434
<OutputPath>bin\x86\Release\</OutputPath>
3535
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
3636
<Optimize>true</Optimize>
37-
<NoWarn>;2008</NoWarn>
3837
<DebugType>pdbonly</DebugType>
3938
<PlatformTarget>x86</PlatformTarget>
4039
<UseVSHostingProcess>false</UseVSHostingProcess>
@@ -46,7 +45,6 @@
4645
<DebugSymbols>true</DebugSymbols>
4746
<OutputPath>bin\ARM\Debug\</OutputPath>
4847
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
49-
<NoWarn>;2008</NoWarn>
5048
<DebugType>full</DebugType>
5149
<PlatformTarget>ARM</PlatformTarget>
5250
<UseVSHostingProcess>false</UseVSHostingProcess>
@@ -57,7 +55,6 @@
5755
<OutputPath>bin\ARM\Release\</OutputPath>
5856
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
5957
<Optimize>true</Optimize>
60-
<NoWarn>;2008</NoWarn>
6158
<DebugType>pdbonly</DebugType>
6259
<PlatformTarget>ARM</PlatformTarget>
6360
<UseVSHostingProcess>false</UseVSHostingProcess>
@@ -69,7 +66,6 @@
6966
<DebugSymbols>true</DebugSymbols>
7067
<OutputPath>bin\ARM64\Debug\</OutputPath>
7168
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
72-
<NoWarn>;2008</NoWarn>
7369
<DebugType>full</DebugType>
7470
<PlatformTarget>ARM64</PlatformTarget>
7571
<UseVSHostingProcess>false</UseVSHostingProcess>
@@ -81,7 +77,6 @@
8177
<OutputPath>bin\ARM64\Release\</OutputPath>
8278
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
8379
<Optimize>true</Optimize>
84-
<NoWarn>;2008</NoWarn>
8580
<DebugType>pdbonly</DebugType>
8681
<PlatformTarget>ARM64</PlatformTarget>
8782
<UseVSHostingProcess>false</UseVSHostingProcess>
@@ -93,7 +88,6 @@
9388
<DebugSymbols>true</DebugSymbols>
9489
<OutputPath>bin\x64\Debug\</OutputPath>
9590
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
96-
<NoWarn>;2008</NoWarn>
9791
<DebugType>full</DebugType>
9892
<PlatformTarget>x64</PlatformTarget>
9993
<UseVSHostingProcess>false</UseVSHostingProcess>
@@ -104,7 +98,6 @@
10498
<OutputPath>bin\x64\Release\</OutputPath>
10599
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
106100
<Optimize>true</Optimize>
107-
<NoWarn>;2008</NoWarn>
108101
<DebugType>pdbonly</DebugType>
109102
<PlatformTarget>x64</PlatformTarget>
110103
<UseVSHostingProcess>false</UseVSHostingProcess>

0 commit comments

Comments
 (0)