-
-
Notifications
You must be signed in to change notification settings - Fork 259
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
54a3fb7
commit 9f13ab5
Showing
24 changed files
with
331 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Roslynator.Analyzers | ||
|
||
A collection of 200+ analyzers for C#, powered by [Roslyn](https://github.com/dotnet/roslyn). | ||
|
||
## Requirements | ||
|
||
* Visual Studio 2022 | ||
* VS Code with [C# for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=ms-dotnettools.csharp) 1.21.13 or higher | ||
* Roslyn 4.0.1 (when used directly, not as a part of IDE) | ||
|
||
## Usage | ||
|
||
* Add package to your project: | ||
```shell | ||
dotnet add package roslynator.formatting.analyzers | ||
``` | ||
|
||
* Use EditorConfig to [configure](https://github.com/josefpihrt/roslynator/blob/master/docs/Configuration.md) analyzers. | ||
|
||
## Feedback | ||
|
||
* File an issue on [GitHub](https://github.com/josefpihrt/roslynator/issues/new) | ||
* Follow on [Twitter](https://twitter.com/roslynator) | ||
|
||
## Related Products | ||
|
||
* [Roslynator for Visual Studio 2022](https://marketplace.visualstudio.com/items?itemName=josefpihrt.Roslynator2022) | ||
* [Roslynator for VS Code](https://marketplace.visualstudio.com/items?itemName=josefpihrt-vscode.roslynator) | ||
* [Roslynator Command-line Tool](https://www.nuget.org/packages/Roslynator.DotNet.Cli) | ||
* [Roslynator Testing Framework](https://www.nuget.org/packages/Roslynator.Testing.CSharp.Xunit) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Roslynator.CSharp.Workspaces | ||
|
||
This package extends functionality of package [Microsoft.CodeAnalysis.CSharp.Workspaces](https://www.nuget.org/packages/Microsoft.CodeAnalysis.CSharp.Workspaces). | ||
|
||
## Feedback | ||
|
||
* File an issue on [GitHub](https://github.com/josefpihrt/roslynator/issues/new) | ||
* Follow on [Twitter](https://twitter.com/roslynator) | ||
|
||
## Related Products | ||
|
||
* [Roslynator for Visual Studio 2022](https://marketplace.visualstudio.com/items?itemName=josefpihrt.Roslynator2022) | ||
* [Roslynator for VS Code](https://marketplace.visualstudio.com/items?itemName=josefpihrt-vscode.roslynator) | ||
* [Roslynator Command-line Tool](https://www.nuget.org/packages/Roslynator.DotNet.Cli) | ||
* [Roslynator Testing Framework](https://www.nuget.org/packages/Roslynator.Testing.CSharp.Xunit) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Roslynator.CSharp | ||
|
||
This package extends functionality of package [Microsoft.CodeAnalysis.CSharp](https://www.nuget.org/packages/Microsoft.CodeAnalysis.CSharp). | ||
|
||
## Feedback | ||
|
||
* File an issue on [GitHub](https://github.com/josefpihrt/roslynator/issues/new) | ||
* Follow on [Twitter](https://twitter.com/roslynator) | ||
|
||
## Related Products | ||
|
||
* [Roslynator for Visual Studio 2022](https://marketplace.visualstudio.com/items?itemName=josefpihrt.Roslynator2022) | ||
* [Roslynator for VS Code](https://marketplace.visualstudio.com/items?itemName=josefpihrt-vscode.roslynator) | ||
* [Roslynator Command-line Tool](https://www.nuget.org/packages/Roslynator.DotNet.Cli) | ||
* [Roslynator Testing Framework](https://www.nuget.org/packages/Roslynator.Testing.CSharp.Xunit) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Roslynator.CodeAnalysis.Analyzers | ||
|
||
A collection of analyzers for Roslyn API, powered by [Roslyn](https://github.com/dotnet/roslyn). | ||
|
||
The package is applicable for projects that reference Roslyn packages (Microsoft.CodeAnalysis*), otherwise it has no effect. | ||
|
||
## Requirements | ||
|
||
* Visual Studio 2022 | ||
* VS Code with [C# for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=ms-dotnettools.csharp) 1.21.13 or higher | ||
* Roslyn 4.0.1 (when used directly, not as a part of IDE) | ||
|
||
## Usage | ||
|
||
* Add package to your project: | ||
```shell | ||
dotnet add package roslynator.formatting.analyzers | ||
``` | ||
|
||
* Use EditorConfig to [configure](https://github.com/josefpihrt/roslynator/blob/master/docs/Configuration.md) analyzers. | ||
|
||
## Feedback | ||
|
||
* File an issue on [GitHub](https://github.com/josefpihrt/roslynator/issues/new) | ||
* Follow on [Twitter](https://twitter.com/roslynator) | ||
|
||
## Related Products | ||
|
||
* [Roslynator for Visual Studio 2022](https://marketplace.visualstudio.com/items?itemName=josefpihrt.Roslynator2022) | ||
* [Roslynator for VS Code](https://marketplace.visualstudio.com/items?itemName=josefpihrt-vscode.roslynator) | ||
* [Roslynator Command-line Tool](https://www.nuget.org/packages/Roslynator.DotNet.Cli) | ||
* [Roslynator Testing Framework](https://www.nuget.org/packages/Roslynator.Testing.CSharp.Xunit) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Roslynator Command-line Tool | ||
|
||
.NET Core global tool that allows to run [Roslyn](https://github.com/dotnet/roslyn) code analysis from command line. | ||
|
||
## Requirements | ||
|
||
.NET Core SDK 5.0 or 6.0. | ||
|
||
## Installation | ||
|
||
Run following command to install Roslynator command-line tool: | ||
```shell | ||
dotnet tool install -g roslynator.dotnet.cli | ||
``` | ||
|
||
## Usage | ||
|
||
Analyze project/solution: | ||
```shell | ||
roslynator analyze | ||
``` | ||
|
||
Fix project/solution: | ||
```shell | ||
roslynator fix | ||
``` | ||
|
||
See [documentation](https://github.com/josefpihrt/roslynator/blob/master/docs/cli/README.md) for a full list of commands. | ||
|
||
## Feedback | ||
|
||
* File an issue on [GitHub](https://github.com/josefpihrt/roslynator/issues/new) | ||
* Follow on [Twitter](https://twitter.com/roslynator) | ||
|
||
## Related Products | ||
|
||
* [Roslynator for Visual Studio 2022](https://marketplace.visualstudio.com/items?itemName=josefpihrt.Roslynator2022) | ||
* [Roslynator for VS Code](https://marketplace.visualstudio.com/items?itemName=josefpihrt-vscode.roslynator) | ||
* [Roslynator Testing Framework](https://www.nuget.org/packages/Roslynator.Testing.CSharp.Xunit) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Roslynator Command-line Tool | ||
|
||
.NET Framework stand-alone application that allows to run [Roslyn](https://github.com/dotnet/roslyn) code analysis from command line. | ||
|
||
## Requirements | ||
|
||
.NET Framework 4.8 or higher. | ||
|
||
## Installation | ||
|
||
No installation required, just run roslynator.exe. | ||
|
||
## Usage | ||
|
||
Analyze project/solution: | ||
```shell | ||
roslynator analyze | ||
``` | ||
|
||
Fix project/solution: | ||
```shell | ||
roslynator fix | ||
``` | ||
|
||
See [documentation](https://github.com/josefpihrt/roslynator/blob/master/docs/cli/README.md) for a full list of commands. | ||
|
||
## Feedback | ||
|
||
* File an issue on [GitHub](https://github.com/josefpihrt/roslynator/issues/new) | ||
* Follow on [Twitter](https://twitter.com/roslynator) | ||
|
||
## Related Products | ||
|
||
* [Roslynator for Visual Studio 2022](https://marketplace.visualstudio.com/items?itemName=josefpihrt.Roslynator2022) | ||
* [Roslynator for VS Code](https://marketplace.visualstudio.com/items?itemName=josefpihrt-vscode.roslynator) | ||
* [Roslynator Testing Framework](https://www.nuget.org/packages/Roslynator.Testing.CSharp.Xunit) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Roslynator.Core | ||
|
||
This package extends functionality of package [Microsoft.CodeAnalysis.Common](https://www.nuget.org/packages/Microsoft.CodeAnalysis.Common). | ||
|
||
## Feedback | ||
|
||
* File an issue on [GitHub](https://github.com/josefpihrt/roslynator/issues/new) | ||
* Follow on [Twitter](https://twitter.com/roslynator) | ||
|
||
## Related Products | ||
|
||
* [Roslynator for Visual Studio 2022](https://marketplace.visualstudio.com/items?itemName=josefpihrt.Roslynator2022) | ||
* [Roslynator for VS Code](https://marketplace.visualstudio.com/items?itemName=josefpihrt-vscode.roslynator) | ||
* [Roslynator Command-line Tool](https://www.nuget.org/packages/Roslynator.DotNet.Cli) | ||
* [Roslynator Testing Framework](https://www.nuget.org/packages/Roslynator.Testing.CSharp.Xunit) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.