Skip to content

Commit 3dcc6b6

Browse files
author
TGP
committed
Merge branch 'feat/fix-build' into develop
2 parents 096f94d + ba4b767 commit 3dcc6b6

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

build.cake

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#tool "nuget:?package=GitVersion.CommandLine&version=5.0.1"
2-
#addin nuget:?package=Cake.Json
2+
#addin nuget:?package=Cake.Json&version=4.0.0
33
#addin nuget:?package=Newtonsoft.Json
44
#addin nuget:?package=System.Net.Http&version=4.3.4
55
#addin nuget:?package=System.Text.Encodings.Web&version=4.7.1
@@ -95,7 +95,10 @@ Task("Clean")
9595
{
9696
if (DirectoryExists(artifactsDir))
9797
{
98-
DeleteDirectory(artifactsDir, recursive:true);
98+
DeleteDirectory(artifactsDir, new DeleteDirectorySettings {
99+
Recursive = true,
100+
Force = true
101+
});
99102
}
100103
CreateDirectory(artifactsDir);
101104
});

src/Ocelot.Administration/Ocelot.Administration.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
<PackageId>Ocelot.Administration</PackageId>
1010
<PackageTags>API Gateway;.NET core</PackageTags>
1111
<PackageProjectUrl>https://github.com/ThreeMammals/Ocelot.Administration</PackageProjectUrl>
12-
<PackageProjectUrl>https://github.com/ThreeMammals/Ocelot.Administration</PackageProjectUrl>
1312
<PackageIconUrl>https://raw.githubusercontent.com/ThreeMammals/Ocelot/develop/images/ocelot_logo.png</PackageIconUrl>
1413
<RuntimeIdentifiers>win10-x64;osx.10.11-x64;osx.10.12-x64;win7-x64</RuntimeIdentifiers>
1514
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>

src/Ocelot.Provider.Consul/Ocelot.Provider.Consul.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
<PackageId>Ocelot.Provider.Consul</PackageId>
1010
<PackageTags>API Gateway;.NET core</PackageTags>
1111
<PackageProjectUrl>https://github.com/ThreeMammals/Ocelot.Provider.Consul</PackageProjectUrl>
12-
<PackageProjectUrl>https://github.com/ThreeMammals/Ocelot.Provider.Consul</PackageProjectUrl>
1312
<PackageIconUrl>https://raw.githubusercontent.com/ThreeMammals/Ocelot/develop/images/ocelot_logo.png</PackageIconUrl>
1413
<RuntimeIdentifiers>win10-x64;osx.10.11-x64;osx.10.12-x64;win7-x64</RuntimeIdentifiers>
1514
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>

0 commit comments

Comments
 (0)