(version: &str)
| 5 | use std::path::{Path, PathBuf}; |
| 6 | |
| 7 | fn parse_major_version(version: &str) -> Option<u8> { |
| 8 | version.split('.').next()?.parse::<u8>().ok() |
| 9 | } |
| 10 | |
| 11 | pub(crate) fn build_csharp(project_path: &Path, build_debug: bool) -> anyhow::Result<PathBuf> { |
| 12 | // All `dotnet` commands must execute in the project directory, otherwise |
no test coverage detected
searching dependent graphs…