Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/Cake.NuGet/NuGetModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,13 @@
// See the LICENSE file in the project root for more information.

using System;
using Cake.Core.Annotations;
using Cake.Core.Composition;
using Cake.Core.Packaging;
using Cake.Core.Scripting.Processors.Loading;
using Cake.NuGet;

[assembly: CakeModule(typeof(NuGetModule))]
namespace Cake.NuGet
{
/// <summary>
Expand Down
3 changes: 2 additions & 1 deletion src/Cake/Infrastructure/Composition/ModuleSearcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ public sealed class ModuleSearcher : IModuleSearcher
{
private static readonly Dictionary<string, string> _excludedModules = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase)
{
{ "Cake.DotNetTool.Module", "Cake.DotNetTool.Module is now included with Cake, so should no longer be installed separately to module directory or using #module directive" }
{ "Cake.DotNetTool.Module", "Cake.DotNetTool.Module is now included with Cake, so should no longer be installed separately to module directory or using #module directive" },
{ "Cake.NuGet", "Cake.NuGet is included with Cake, so should not be installed separately to module directory or using #module directive" }
};

private readonly IFileSystem _fileSystem;
Expand Down
Loading