1
1
using Cake . Common . Tools . DotNet ;
2
- using Cake . Common . Tools . DotNetCore ;
3
2
using Cake . Core ;
4
3
using Cake . Core . IO ;
5
4
using Cake . Core . Tooling ;
@@ -37,7 +36,7 @@ public sealed class IgnoredDotNetSettings : DotNetSettings
37
36
{
38
37
}
39
38
40
- public sealed class DotNetAddReferenceRunner : DotNetCoreTool < IgnoredDotNetSettings >
39
+ public sealed class DotNetAddReferenceRunner : DotNetTool < IgnoredDotNetSettings >
41
40
{
42
41
public DotNetAddReferenceRunner ( IFileSystem fileSystem , ICakeEnvironment environment , IProcessRunner processRunner , IToolLocator tools )
43
42
: base ( fileSystem , environment , processRunner , tools )
@@ -57,7 +56,7 @@ public void AddReference(FilePath project, FilePath referencedProject, IgnoredDo
57
56
}
58
57
}
59
58
60
- public sealed class DotNetRemoveReferenceRunner : DotNetCoreTool < IgnoredDotNetSettings >
59
+ public sealed class DotNetRemoveReferenceRunner : DotNetTool < IgnoredDotNetSettings >
61
60
{
62
61
public DotNetRemoveReferenceRunner ( IFileSystem fileSystem , ICakeEnvironment environment , IProcessRunner processRunner , IToolLocator tools )
63
62
: base ( fileSystem , environment , processRunner , tools )
@@ -77,7 +76,7 @@ public void RemoveReference(FilePath project, FilePath referencedProject, Ignore
77
76
}
78
77
}
79
78
80
- public sealed class DotNetAddPackageRunner : DotNetCoreTool < IgnoredDotNetSettings >
79
+ public sealed class DotNetAddPackageRunner : DotNetTool < IgnoredDotNetSettings >
81
80
{
82
81
public DotNetAddPackageRunner ( IFileSystem fileSystem , ICakeEnvironment environment , IProcessRunner processRunner , IToolLocator tools )
83
82
: base ( fileSystem , environment , processRunner , tools )
@@ -116,7 +115,7 @@ public void AddPackage(FilePath project, string packageName, string? version, st
116
115
}
117
116
}
118
117
119
- public sealed class DotNetRemovePackageRunner : DotNetCoreTool < IgnoredDotNetSettings >
118
+ public sealed class DotNetRemovePackageRunner : DotNetTool < IgnoredDotNetSettings >
120
119
{
121
120
public DotNetRemovePackageRunner ( IFileSystem fileSystem , ICakeEnvironment environment , IProcessRunner processRunner , IToolLocator tools )
122
121
: base ( fileSystem , environment , processRunner , tools )
0 commit comments