We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4980b84 commit 8ea2717Copy full SHA for 8ea2717
2 files changed
.gitignore
@@ -278,8 +278,8 @@ __pycache__/
278
*.pyc
279
280
# Cake - Uncomment if you are using it
281
-# tools/**
282
-# !tools/packages.config
+tools/**
+!tools/packages.config
283
284
# Telerik's JustMock configuration file
285
*.jmconfig
build.cake
@@ -9,10 +9,10 @@ var tag = !string.IsNullOrEmpty(@ref) && @ref.StartsWith(prefix) ? @ref.Substrin
9
Task("Build")
10
.Does(() =>
11
{
12
- var settings = new DotNetCoreBuildSettings
+ var settings = new DotNetBuildSettings
13
14
Configuration = "Release",
15
- MSBuildSettings = new DotNetCoreMSBuildSettings()
+ MSBuildSettings = new DotNetMSBuildSettings()
16
};
17
18
if (tag != null)
0 commit comments