Skip to content
This repository was archived by the owner on Nov 8, 2018. It is now read-only.

Commit 09baea2

Browse files
committed
Merge pull request #11 from sharwell/fix-appveyor
Fix AppVeyor builds
2 parents acab714 + ca24e50 commit 09baea2

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

AsyncUsageAnalyzers/AsyncUsageAnalyzers.Vsix/AsyncUsageAnalyzers.Vsix.csproj

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@
2424
<CopyOutputSymbolsToOutputDirectory>false</CopyOutputSymbolsToOutputDirectory>
2525
<VSSDKTargetPlatformRegRootSuffix>Roslyn</VSSDKTargetPlatformRegRootSuffix>
2626
</PropertyGroup>
27+
<PropertyGroup Condition="'$(BuildingInsideVisualStudio)' != 'true'">
28+
<!-- This property disables extension deployment for command line builds; required for AppVeyor and the build script -->
29+
<DeployExtension>False</DeployExtension>
30+
</PropertyGroup>
2731
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2832
<DebugSymbols>true</DebugSymbols>
2933
<DebugType>full</DebugType>
@@ -32,6 +36,7 @@
3236
<DefineConstants>DEBUG;TRACE</DefineConstants>
3337
<ErrorReport>prompt</ErrorReport>
3438
<WarningLevel>4</WarningLevel>
39+
<NoWarn>2008</NoWarn>
3540
</PropertyGroup>
3641
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
3742
<DebugType>pdbonly</DebugType>
@@ -40,6 +45,7 @@
4045
<DefineConstants>TRACE</DefineConstants>
4146
<ErrorReport>prompt</ErrorReport>
4247
<WarningLevel>4</WarningLevel>
48+
<NoWarn>2008</NoWarn>
4349
</PropertyGroup>
4450
<PropertyGroup>
4551
<StartAction>Program</StartAction>

0 commit comments

Comments
 (0)