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

github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-02-04Fix lint job in CI (#2581)Vitek Karas
It did run linter, but didn't fail if any changes were to be applied, instead it actually applied them (and then dropped). So the job would actually never fail.
2021-11-22Fix some analyzer warnings (#2386)Sven Boemer
These were causing dotnet format to produce warnings because they didn't have code fixes available. There are still some IDE0060 rule violations left over that I am not fixing here because they occur in test projects (and I didn't want to silence all such warnings in the test projects). Co-authored-by: vitek-karas <10670590+vitek-karas@users.noreply.github.com>
2021-11-16Update to 6.0 SDK and use included dotnet-format (#2371)Sven Boemer
2021-03-11Fix lint to avoid generating binlog file (#1879)Vitek Karas
Latest lint writes formatDiagnosticLog.binlong next to the solution file when running with --verbosity diagnostic. There's no way to redirect or disable this - https://github.com/dotnet/format/issues/1041. So this change disables --verbosity diagnostic for local runs of lint and adds it only to the CI (where the machine will clean the enlistment anyway).
2021-03-03[main] Update dependencies from dotnet/arcade (#1864)dotnet-maestro[bot]
[main] Update dependencies from dotnet/arcade - Fix arguments passing to dotnet-format to work with net6
2021-03-01Enable more analyzers (#1862)Marek Safar
2020-11-25Remove deprecated dotnet-format options (#1646)Mateo Torres-Ruiz
2020-09-30Update to latest dotnet-format versionMarek Safar
and fix breaking changes
2020-05-11[master] Update dependencies from dotnet/arcade (#1180)dotnet-maestro[bot]
* Update dependencies from https://github.com/dotnet/arcade build 20200506.5 - Microsoft.DotNet.ApiCompat: 5.0.0-beta.20228.4 -> 5.0.0-beta.20256.5 - Microsoft.DotNet.Arcade.Sdk: 5.0.0-beta.20228.4 -> 5.0.0-beta.20256.5 * Add restore to lint.sh/cmd * Remove lint restore from azure-pipelines.yml * Make sure the Lint step fails on violations * Disable https listening in WebApiTest.cs It doesn't play nice with CI environments. * Disable WebApi test on CI on macOS Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com> Co-authored-by: Alexander Köplinger <alex.koeplinger@outlook.com>
2020-05-06Fix build and improve auto-formatting (#1172)Vitek Karas
Fixes command line build on windows in the analyzer project (latest Arcade has conflicts when building net core and net desktop projects at the same time. since we don't need desktop I removed it) Fixes editorconfig to correctly specify LF as EOL character so that it works on Windows. Added running the lint (auto-formatter) in command line (lint.sh/lint.cmd). CI now runs this command in a `--dry-run` mode so using it before submitting a PR should guarantee correct formatting.