Skip to content

Commit

Permalink
Merge pull request #1 from triforcely/ci-testing
Browse files Browse the repository at this point in the history
AppVeyor specific project config
  • Loading branch information
triforcely committed Sep 22, 2017
2 parents c7f0a33 + 22d9507 commit 6452f31
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CollapseLevel.sln
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,13 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CollapseLevel", "CollapseLe
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
AppVeyor|Any CPU = AppVeyor|Any CPU
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{0FA932B1-A271-49E5-9906-15D098940C31}.AppVeyor|Any CPU.ActiveCfg = AppVeyor|Any CPU
{0FA932B1-A271-49E5-9906-15D098940C31}.AppVeyor|Any CPU.Build.0 = AppVeyor|Any CPU
{0FA932B1-A271-49E5-9906-15D098940C31}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0FA932B1-A271-49E5-9906-15D098940C31}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0FA932B1-A271-49E5-9906-15D098940C31}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand Down
16 changes: 9 additions & 7 deletions CollapseLevel/CollapseLevel.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,16 @@
</NuGetPackageImportStamp>
<UseCodebase>true</UseCodebase>
</PropertyGroup>
<PropertyGroup Condition=" '$(IsAppveyorBuild)' != 'true' ">
<SignAssembly>true</SignAssembly>
<PropertyGroup>
<DelaySign>false</DelaySign>
</PropertyGroup>
<PropertyGroup Condition=" '$(IsAppveyorBuild)' != 'true' ">
<AssemblyOriginatorKeyFile>CollapseLevelKey.pfx</AssemblyOriginatorKeyFile>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'AppVeyor|AnyCPU'">
<OutputPath>bin\AppVeyor\</OutputPath>
<DeployExtension>False</DeployExtension>
<CreateVsixContainer>False</CreateVsixContainer>
</PropertyGroup>
<PropertyGroup>
<DelaySign>false</DelaySign>
<SignAssembly>false</SignAssembly>
</PropertyGroup>
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
Expand All @@ -35,8 +37,6 @@
<IncludeDebugSymbolsInLocalVSIXDeployment>true</IncludeDebugSymbolsInLocalVSIXDeployment>
<CopyBuildOutputToOutputDirectory>true</CopyBuildOutputToOutputDirectory>
<CopyOutputSymbolsToOutputDirectory>false</CopyOutputSymbolsToOutputDirectory>
<CreateVsixContainer>True</CreateVsixContainer>
<DeployExtension>True</DeployExtension>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand All @@ -54,6 +54,8 @@
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>CollapseLevelKey.pfx</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Compile Include="Core\TextViewRegistry.cs" />
Expand Down
3 changes: 3 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ environment:

image: Visual Studio 2017

configuration:
- AppVeyor

before_build:
- nuget restore

Expand Down

0 comments on commit 6452f31

Please sign in to comment.