Skip to content

Commit

Permalink
Clarify supported .NET SDK versions for new arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
flcdrg committed Feb 19, 2019
1 parent 8b24f14 commit 2f22660
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,29 +64,44 @@ public sealed class DotNetCoreRestoreSettings : DotNetCoreSettings
/// <summary>
/// Gets or sets a value indicating whether to stop and wait for user input or action (for example to complete authentication)
/// </summary>
/// <remarks>
/// Supported by .NET SDK version 2.1.400 and above
/// </remarks>
public bool Interactive { get; set; }

/// <summary>
/// Gets or sets a value indicating whether to enable project lock file to be generated and used with restore
/// </summary>
/// <remarks>
/// Supported by .NET SDK version 2.1.500 and above
/// </remarks>
public bool UseLockFile { get; set; }

/// <summary>
/// Gets or sets a value indicating whether to not allow updating project lock file
/// </summary>
/// <remarks>
/// Supported by .NET SDK version 2.1.500 and above
/// </remarks>
public bool LockedMode { get; set; }

/// <summary>
/// Gets or sets a value indicating output location where project lock file is written.
/// </summary>
/// <remarks>
/// If not set, 'dotnet restore' defaults to 'PROJECT_ROOT\packages.lock.json'
/// <para>
/// Supported by .NET SDK version 2.1.500 and above
/// </para>
/// </remarks>
public FilePath LockFilePath { get; set; }

/// <summary>
/// Gets or sets a value indicating whether to force restore to reevaluate all dependencies even if a lock file already exists
/// </summary>
/// <remarks>
/// Supported by .NET SDK version 2.1.500 and above
/// </remarks>
public bool ForceEvaluate { get; set; }

/// <summary>
Expand Down

0 comments on commit 2f22660

Please sign in to comment.