Skip to content

Commit

Permalink
Fixed bootstrapper issue & updated to Cake 0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
devlead committed Apr 18, 2016
1 parent 2ca6222 commit 4037d29
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
2 changes: 2 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
### New in 0.3.0 (Released 2016/04/18)
* Updated to Cake 0.10.1
### New in 0.2.0 (Released 2015/12/07)
* Added support for Slack message attachments
### New in 0.1.2 (Released 2015/12/01)
Expand Down
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ if (Test-Path $PACKAGES_CONFIG)
# Install just Cake if missing config
else
{
Invoke-Expression "&`"$NUGET_EXE`" install Cake -ExcludeVersion -PreRelease -Source `"https://www.myget.org/F/cake`""
Invoke-Expression "&`"$NUGET_EXE`" install Cake -ExcludeVersion"
}
Pop-Location
if ($LASTEXITCODE -ne 0)
Expand Down
8 changes: 4 additions & 4 deletions src/Cake.Slack/Cake.Slack.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<Reference Include="Cake.Common, Version=0.9.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Cake.Common.0.9.0\lib\net45\Cake.Common.dll</HintPath>
<Reference Include="Cake.Common, Version=0.10.1.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Cake.Common.0.10.1\lib\net45\Cake.Common.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Cake.Core, Version=0.9.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Cake.Core.0.9.0\lib\net45\Cake.Core.dll</HintPath>
<Reference Include="Cake.Core, Version=0.10.1.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Cake.Core.0.10.1\lib\net45\Cake.Core.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
Expand Down
4 changes: 2 additions & 2 deletions src/Cake.Slack/packages.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Cake.Common" version="0.9.0" targetFramework="net45" />
<package id="Cake.Core" version="0.9.0" targetFramework="net45" />
<package id="Cake.Common" version="0.10.1" targetFramework="net45" />
<package id="Cake.Core" version="0.10.1" targetFramework="net45" />
</packages>
6 changes: 3 additions & 3 deletions src/SolutionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
[assembly: AssemblyDescription("Cake Slack AddIn")]
[assembly: AssemblyCompany("WCOM AB")]
[assembly: AssemblyProduct("Cake.Slack")]
[assembly: AssemblyVersion("0.2.0")]
[assembly: AssemblyFileVersion("0.2.0")]
[assembly: AssemblyInformationalVersion("0.2.0")]
[assembly: AssemblyVersion("0.3.0")]
[assembly: AssemblyFileVersion("0.3.0")]
[assembly: AssemblyInformationalVersion("0.3.0")]
[assembly: AssemblyCopyright("Copyright © WCOM AB 2016")]
[assembly: CLSCompliant(true)]

0 comments on commit 4037d29

Please sign in to comment.