Skip to content

Commit

Permalink
Closes #1 updates cake to 0.33, other nuget packages
Browse files Browse the repository at this point in the history
  • Loading branch information
MihaMarkic committed Apr 18, 2019
1 parent 79e73d5 commit 0fd462e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
12 changes: 6 additions & 6 deletions src/Cake.ResourceHacker.Tests/Cake.ResourceHacker.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Cake.Core" Version="0.30.0" />
<PackageReference Include="Cake.Testing" Version="0.30.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" />
<PackageReference Include="NSubstitute" Version="3.1.0" />
<PackageReference Include="NUnit" Version="3.10.1" />
<PackageReference Include="NUnit3TestAdapter" Version="3.10.0" />
<PackageReference Include="Cake.Core" Version="0.33.0" />
<PackageReference Include="Cake.Testing" Version="0.33.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.0.1" />
<PackageReference Include="NSubstitute" Version="4.0.0" />
<PackageReference Include="NUnit" Version="3.11.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.13.0" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 2 additions & 0 deletions src/Cake.ResourceHacker.Tests/ResourceHackerFixture.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using Cake.Core;
using Cake.Core.Configuration;
using Cake.Core.Diagnostics;
using Cake.Core.IO;
using Cake.Core.Tooling;
Expand All @@ -21,6 +22,7 @@ public class ResourceHackerFixture : ToolFixture<ResourceHackerSettings>, ICakeC
IProcessRunner ICakeContext.ProcessRunner => ProcessRunner;
public IRegistry Registry => Registry;
public ICakeDataResolver Data => throw new NotImplementedException();
ICakeConfiguration ICakeContext.Configuration => throw new NotImplementedException();
public ResourceHackerFixture(): base("ResourceHacker")
{
Tools = Substitute.For<IToolLocator>();
Expand Down
1 change: 1 addition & 0 deletions src/Cake.ResourceHacker.sln
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{3509B976-7BAF-4918-949C-41F194C5E424}"
ProjectSection(SolutionItems) = preProject
..\.appveyor.yml = ..\.appveyor.yml
..\.gitignore = ..\.gitignore
..\nuspec\nuget\Cake.ResourceHacker.nuspec = ..\nuspec\nuget\Cake.ResourceHacker.nuspec
..\LICENSE = ..\LICENSE
..\tools\packages.config = ..\tools\packages.config
Expand Down
2 changes: 1 addition & 1 deletion src/Cake.ResourceHacker/Cake.ResourceHacker.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Cake.Core" Version="0.30.0" PrivateAssets="All" />
<PackageReference Include="Cake.Core" Version="0.33.0" PrivateAssets="All" />
</ItemGroup>

</Project>

0 comments on commit 0fd462e

Please sign in to comment.