mdsf 0.12.1

Format, and lint, markdown code snippets using your favorite tools
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[inline]
pub fn setup_dotnet_command(package_name: &str) -> std::process::Command {
    let mut cmd = std::process::Command::new("dotnet");

    cmd.arg(package_name);

    cmd
}

#[cfg(test)]
mod test_dotnet {
    #[test_with::executable(dotnet)]
    #[test]
    #[ignore]
    fn it_can_execute_packages() {
        todo!()
    }
}