Skip to content

Commit 37a6f44

Browse files
Steve Lee (POWERSHELL HE/HIM) (from Dev Box)SteveL-MSFT
authored andcommitted
start include work
1 parent 59a429a commit 37a6f44

File tree

4 files changed

+7
-0
lines changed

4 files changed

+7
-0
lines changed

dsc/include.dsc.resource.json

Whitespace-only changes.

dsc/src/args.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ pub enum SubCommand {
5656
parameters_file: Option<String>,
5757
#[clap(long, hide = true)]
5858
as_group: bool,
59+
// Used for the Microsoft.DSC/Include resource
60+
#[clap(long, hide = true)]
61+
include: Option<String>,
5962
},
6063
#[clap(name = "resource", about = "Invoke a specific DSC resource")]
6164
Resource {

dsc/src/include.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
// Copyright (c) Microsoft Corporation.
2+
// Licensed under the MIT License.
3+

dsc/src/main.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ use crossterm::event;
1616
use std::env;
1717

1818
pub mod args;
19+
pub mod include;
1920
pub mod resource_command;
2021
pub mod subcommand;
2122
pub mod tablewriter;

0 commit comments

Comments
 (0)