Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-03-03Update Roslyn and use new step tracking API in incremental tests. (#63978)Jeremy Koritzinsky
2022-02-17Add xargs for dotnet format command (#65090)Jeremy Koritzinsky
* Add xargs for dotnet format command This is needed to correctly pass the file names to `dotnet format` * Update eng/formatting/format.sh
2022-01-22Update format script permissions so it can be called on Unix systems ↵Jeremy Koritzinsky
directly. (#64107)
2021-12-01Fix a few syntax issues in shell scripts (#62102)Adeel Mujahid
* Fix a few syntax issues in shell scripts * Cleanup trailing whitespace in changed files ```sh # git remote add dotnet https://github.com/dotnet/runtime && git pull --rebase dotnet main if uname 2>/devnull | grep -q Darwin; then space=" " fi git show --name-only --pretty="" HEAD...dotnet/main |\ xargs -I{} sh -c "test -f {} && sed -i$space'' 's/[[:space:]]*$//' {}" ``` * Address CR feedback
2021-09-30Fix retry when downloading clang tools (#59806)Jakob Botsch Nielsen
Invoke-WebRequest throws an exception when the download fails, so we should use try-catch instead of status code to check failure. We can use the generic Retry function from tools.ps1 to do this. In addition pass -PassThru to avoid leaving a corrupted download file in case the download fails. This will buffer the download and write it once at the end. Fix #57196
2021-09-24Move clang-format download into dotnet/runtime and add docs for setting up ↵Jeremy Koritzinsky
auto-formatting in the repository (#59374)