mdsf/runners/
dotnet.rs

1#[inline]
2pub fn setup_dotnet_command(package_name: &str) -> std::process::Command {
3    let mut cmd = std::process::Command::new("dotnet");
4
5    cmd.arg(package_name);
6
7    cmd
8}
9
10#[cfg(test)]
11mod test_dotnet {
12    #[test_with::executable(dotnet)]
13    #[test]
14    #[ignore]
15    fn it_can_execute_packages() {
16        todo!()
17    }
18}