forked from microsoft/PSRule
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improved VSCode packaging microsoft#1755
- Loading branch information
1 parent
308a89b
commit 2bfe3b1
Showing
24 changed files
with
3,249 additions
and
146 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// Copyright (c) Microsoft Corporation. | ||
// Licensed under the MIT License. | ||
|
||
namespace PSRule.CommandLine.Models; | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public sealed class ModuleOptions | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string[]? Path { get; set; } | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string[]? Module { get; set; } | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public bool Force { get; set; } | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string? Version { get; set; } | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public bool SkipVerification { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Copyright (c) Microsoft Corporation. | ||
// Licensed under the MIT License. | ||
|
||
namespace PSRule.CommandLine.Models; | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public sealed class RestoreOptions | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string[]? Path { get; set; } | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public bool Force { get; set; } | ||
} |
Oops, something went wrong.