Skip to content

Commit

Permalink
Prevent VSIX deployment on AppVeyor CI
Browse files Browse the repository at this point in the history
Close #300.
  • Loading branch information
dungpa committed Mar 9, 2015
1 parent 5ff605a commit 9e13bdd
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'VSRelease'">
<DeployExtension>True</DeployExtension>
<DeployExtension Condition="'$(AppVeyor)' != ''">False</DeployExtension>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<DeployExtension>True</DeployExtension>
<DeployExtension Condition="'$(AppVeyor)' != ''">False</DeployExtension>
</PropertyGroup>
<Import Project="..\..\FSharp.Common.props" />
<PropertyGroup>
Expand All @@ -52,7 +52,7 @@
<FSharpSourcesRoot Condition="'$(FSharpSourcesRoot)' == ''">..\..\..</FSharpSourcesRoot>
<!-- Eliminate MSBuild warning due to including FSI.exe which is x86 -->
<ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>None</ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>
<DeployExtension>True</DeployExtension>
<DeployExtension Condition="'$(AppVeyor)' != ''">False</DeployExtension>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' or '$(Configuration)' == 'VSDebug' ">
<StartAction>Program</StartAction>
Expand Down

0 comments on commit 9e13bdd

Please sign in to comment.