Skip to content

Commit 8ea2717

Browse files
committed
Fix dotnet cake
1 parent 4980b84 commit 8ea2717

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,8 +278,8 @@ __pycache__/
278278
*.pyc
279279

280280
# Cake - Uncomment if you are using it
281-
# tools/**
282-
# !tools/packages.config
281+
tools/**
282+
!tools/packages.config
283283

284284
# Telerik's JustMock configuration file
285285
*.jmconfig

build.cake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ var tag = !string.IsNullOrEmpty(@ref) && @ref.StartsWith(prefix) ? @ref.Substrin
99
Task("Build")
1010
.Does(() =>
1111
{
12-
var settings = new DotNetCoreBuildSettings
12+
var settings = new DotNetBuildSettings
1313
{
1414
Configuration = "Release",
15-
MSBuildSettings = new DotNetCoreMSBuildSettings()
15+
MSBuildSettings = new DotNetMSBuildSettings()
1616
};
1717

1818
if (tag != null)

0 commit comments

Comments
 (0)