Buildalyzer
Buildalyzer copied to clipboard
A utility to perform design-time builds of .NET projects without having to think too hard about it.
Found on Youtube: [MS Build: Things You Should Know About Project Files - .NET Oxford - January 2020](https://youtu.be/5HEbsyU5E1g).
[FluentAssertions recently changed its license](https://www.infoq.com/news/2025/01/fluent-assertions-v8-license/) to a commercial one. Although we are not directly affected, as this project is open source (and open source projects can keep using it), I...
When creating a `.csproj` file: ``` XML net8.0 Custom value ```` The value of the `` is exposed to the `AnalyzerConfigOptionsProvider.GlobalOptions` within the context of a Roslyn code analyzer. How...
Apparently, .NET MAUI projects are not supported. (https://github.com/stryker-mutator/stryker-net/issues/3181#issuecomment-2633346545) Is this a known issue? Are there plans to support it? Is this documented anywhere?
Both `SolutionInfo` and `ProjectInfo` are immutable objects, describing the solution and its projects under analysis. They reflect the information resolved by calling MS's `SolutionFile`, and our own `ProjectFile`. As a...
While working on something else I got this issue the other way around. Anyway, when a build project with `exe` when no entry point is defined, I would expect the...