-
-
Notifications
You must be signed in to change notification settings - Fork 765
Expand file tree
/
Copy pathDotNetAliases.cs
More file actions
21 lines (19 loc) · 822 Bytes
/
DotNetAliases.cs
File metadata and controls
21 lines (19 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Cake.Core.Annotations;
namespace Cake.Common.Tools.DotNet
{
/// <summary>
/// <para>Contains functionality related to <see href="https://github.com/dotnet/cli">.NET CLI</see>.</para>
/// <para>
/// In order to use the commands for this alias, the .NET CLI tools will need to be installed on the machine where
/// the Cake script is being executed. See this <see href="https://www.microsoft.com/net/core">page</see> for information
/// on how to install.
/// </para>
/// </summary>
[CakeAliasCategory("DotNet")]
public static partial class DotNetAliases
{
}
}