Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/debugger-libs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikayla Hutchinson <m.j.hutchinson@gmail.com>2018-05-30 02:45:30 +0300
committerMikayla Hutchinson <m.j.hutchinson@gmail.com>2018-06-05 23:11:03 +0300
commit70e94647a4aa072bdcd833ecd60a05466d703b43 (patch)
tree9401e1fb0623119aecf4e959eb47e0ac845c25ab /UnitTests
parentfb782c9a2e294a41bb5e8c83185bdea9634c7292 (diff)
Suppress unusused variable/member warning noise in test app
There were about 30 of them... and the debuggers tests need them
Diffstat (limited to 'UnitTests')
-rw-r--r--UnitTests/MonoDevelop.Debugger.Tests.TestApp/MonoDevelop.Debugger.Tests.TestApp.csproj10
1 files changed, 6 insertions, 4 deletions
diff --git a/UnitTests/MonoDevelop.Debugger.Tests.TestApp/MonoDevelop.Debugger.Tests.TestApp.csproj b/UnitTests/MonoDevelop.Debugger.Tests.TestApp/MonoDevelop.Debugger.Tests.TestApp.csproj
index 104f212..0dc8065 100644
--- a/UnitTests/MonoDevelop.Debugger.Tests.TestApp/MonoDevelop.Debugger.Tests.TestApp.csproj
+++ b/UnitTests/MonoDevelop.Debugger.Tests.TestApp/MonoDevelop.Debugger.Tests.TestApp.csproj
@@ -20,7 +20,8 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x86</PlatformTarget>
- <NoWarn>1591;1573</NoWarn>
+ <NoWarn>1591;1573;219;414;168</NoWarn>
+ <Prefer32Bit>False</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<DebugType>pdbonly</DebugType>
@@ -29,8 +30,9 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x86</PlatformTarget>
- <NoWarn>1591;1573</NoWarn>
+ <NoWarn>1591;1573;219;414;168</NoWarn>
<DebugSymbols>true</DebugSymbols>
+ <Prefer32Bit>False</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>True</DebugSymbols>
@@ -41,7 +43,7 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>AnyCPU</PlatformTarget>
- <NoWarn>1591;1573</NoWarn>
+ <NoWarn>1591;1573;219;414;168</NoWarn>
<Prefer32Bit>False</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
@@ -51,7 +53,7 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>AnyCPU</PlatformTarget>
- <NoWarn>1591;1573</NoWarn>
+ <NoWarn>1591;1573;219;414;168</NoWarn>
<DebugSymbols>true</DebugSymbols>
<Prefer32Bit>False</Prefer32Bit>
</PropertyGroup>