Skip to content

Commit

Permalink
Merge branch 'release/0.9.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalberger committed Apr 4, 2018
2 parents 93539d0 + b713429 commit 5d6d343
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 8 deletions.
1 change: 0 additions & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,4 @@ branches:
# Build Cache #
#---------------------------------#
cache:
- src\packages -> src\**\packages.config
- tools -> setup.cake
7 changes: 4 additions & 3 deletions nuspec/nuget/Cake.Gulp.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@
<summary>Adds Gulp helpers for Cake</summary>
<description>A set of aliases for Cake to help with running Gulp scripts as part of a build</description>
<tags>Cake Script Build Gulp</tags>
<releaseNotes>https://github.com/cake-contrib/Cake.Gulp/releases/tag/0.9.0</releaseNotes>
</metadata>
<files>
<file src="Cake.Gulp.xml" target="lib\net46" />
<file src="Cake.Gulp.dll" target="lib\net46" />
<file src="Cake.Gulp.xml" target="lib\net46" />
<file src="net46\Cake.Gulp.dll" target="lib\net46" />
<file src="net46\Cake.Gulp.pdb" target="lib\net46" />
<file src="net46\Cake.Gulp.xml" target="lib\net46" />
</files>
</package>
2 changes: 1 addition & 1 deletion setup.cake
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ BuildParameters.SetParameters(context: Context,
sourceDirectoryPath: "./src",
title: "Cake.Gulp",
repositoryOwner: "cake-contrib",
repositoryName: "cake-gulp",
repositoryName: "Cake.Gulp",
appVeyorAccountName: "cakecontrib",
shouldRunDupFinder: false,
shouldRunInspectCode: false);
Expand Down
2 changes: 1 addition & 1 deletion src/Cake.Gulp.Tests/Cake.Gulp.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Cake.Testing" Version="0.22.0" />
<PackageReference Include="Cake.Testing" Version="0.26.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.3.0" />
<PackageReference Include="Microsoft.TestPlatform.TestHost" Version="15.3.0" />
<PackageReference Include="Shouldly" Version="2.8.3" />
Expand Down
10 changes: 9 additions & 1 deletion src/Cake.Gulp/Cake.Gulp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,20 @@
<DebugType>portable</DebugType>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>bin\Debug\net46\Cake.Gulp.xml</DocumentationFile>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Release\net46\Cake.Gulp.xml</DocumentationFile>
</PropertyGroup>

<ItemGroup>
<Compile Include="..\SolutionInfo.cs" Link="SolutionInfo.cs" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Cake.Core" Version="0.22.0">
<PackageReference Include="Cake.Core" Version="0.26.0">
<PrivateAssets>All</PrivateAssets>
</PackageReference>
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion tools/packages.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Cake" version="0.21.1" />
<package id="Cake" version="0.25.0" />
</packages>

0 comments on commit 5d6d343

Please sign in to comment.