Skip to content

Commit 4ee616b

Browse files
committed
Update cacke script to use DotNet instread of DotNetCORE
1 parent f2744b7 commit 4ee616b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.Build/Build.cake

+5-5
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Task("Restore")
3030
.IsDependentOn("Clean")
3131
.Does(() =>
3232
{
33-
DotNetCoreRestore(solution);
33+
DotNetRestore(solution);
3434
});
3535

3636
// Patches the version of the library
@@ -70,9 +70,9 @@ Task("Build")
7070
.IsDependentOn("PatchVersion")
7171
.Does(() =>
7272
{
73-
DotNetCoreBuild(
73+
DotNetBuild(
7474
solution,
75-
new DotNetCoreBuildSettings()
75+
new DotNetBuildSettings()
7676
{
7777
Configuration = configuration
7878
});
@@ -85,9 +85,9 @@ Task("Pack")
8585
{
8686
foreach (var project in GetFiles(libDirectory.ToString() + "/**/*.csproj"))
8787
{
88-
DotNetCorePack(
88+
DotNetPack(
8989
project.ToString(),
90-
new DotNetCorePackSettings()
90+
new DotNetPackSettings()
9191
{
9292
Configuration = configuration,
9393
OutputDirectory = outputDirectory

.Build/tools/cache/Build.cake.dll

0 Bytes
Binary file not shown.

.Build/tools/cache/Build.cake.hash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
F59B8734996B76BA54F9898501DD5BBBF961F8A12823BB3250048F3E8E6D06F51176C8D5A128A5BCEBD1E8394EC604EDC9642CB7C2C1DE024BE373147D355FFB
1+
C433B1DA214E03C3E7CF166A37A5B789F69668DA42F838F6E270B3BCFE319C18452D85455C621537281C436E4D90CCFE2BBDE5C5B5B39CAFD5B1157AE86AECCA

0 commit comments

Comments
 (0)