├── .gitignore ├── CleanCode.NET.Common ├── CleanCode.NET.Common.csproj ├── Settings.cs └── Signature.snk ├── CleanCode.NET.Metapackage └── CleanCode.NET.Metapackage.csproj ├── CleanCode.NET.VSIX ├── CleanCode.NET.VSIX.csproj ├── Key.snk ├── OptionPageGrid.cs ├── OptionsPackage.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ └── OptionsPackage.ico ├── VSPackage.resx ├── packages.config └── source.extension.vsixmanifest ├── CleanCode.NET.sln ├── CleanCodeNet.nuspec ├── ConstructorNullAnalyzer ├── ConstructorNullAnalyzer.Test │ ├── ConstructorNullAnalyzer.Test.csproj │ └── ConstructorNullAnalyzerUnitTests.cs ├── ConstructorNullAnalyzer.Vsix │ ├── ConstructorNullAnalyzer.Vsix.csproj │ └── source.extension.vsixmanifest └── ConstructorNullAnalyzer │ ├── ConstructorNullAnalyzer.cs │ ├── ConstructorNullAnalyzer.csproj │ ├── ConstructorNullAnalyzerCodeFixProvider.cs │ ├── FixType.cs │ └── tools │ ├── install.ps1 │ └── uninstall.ps1 ├── Docs ├── CleanCodeNetOptions.png └── PackageAnalyzersOptions.png ├── Exceptions ├── ExceptionsAnalyzer.Test │ ├── ExceptionsAnalyzer.Test.csproj │ └── ExceptionsAnalyzerUnitTests.cs ├── ExceptionsAnalyzer.Vsix │ ├── ExceptionsAnalyzer.Vsix.csproj │ └── source.extension.vsixmanifest └── ExceptionsAnalyzer │ ├── Descriptors.cs │ ├── ExceptionsAnalyzer.cs │ ├── ExceptionsAnalyzer.csproj │ ├── ExceptionsAnalyzerCodeFixProvider.cs │ ├── StatementAnalysisResult.cs │ └── tools │ ├── install.ps1 │ └── uninstall.ps1 ├── LICENSE.txt ├── NamedParametersAnalyzer ├── NamedParametersAnalyzer.Test │ ├── NamedParametersAnalyzer.Test.csproj │ └── NamedParametersAnalyzerUnitTests.cs ├── NamedParametersAnalyzer.Vsix │ ├── NamedParametersAnalyzer.Vsix.csproj │ └── source.extension.vsixmanifest └── NamedParametersAnalyzer │ ├── NamedParametersAnalyzer.cs │ ├── NamedParametersAnalyzer.csproj │ ├── NamedParametersAnalyzerCodeFixProvider.cs │ ├── ParametersHelper.cs │ └── tools │ ├── install.ps1 │ └── uninstall.ps1 ├── Readme.md ├── SwitchAnalyzer ├── README.md ├── SwitchAnalyzer.Test │ ├── ClassSwitchAnalyzerTests.cs │ ├── EnumSwitchAnalyzerTests.cs │ ├── InterfaceSwitchAnalyzerTests.cs │ ├── SwitchAnalyzer.Test.csproj │ ├── TestClass.cs │ └── TestClass2.cs └── SwitchAnalyzer │ ├── ClassAnalyzer.cs │ ├── DefaultCaseCheck.cs │ ├── EnumAnalyzer.cs │ ├── InterfaceAnalyzer.cs │ ├── PatternMatchingHelper.cs │ ├── SwitchAnalyzer.cs │ ├── SwitchAnalyzer.csproj │ ├── SwitchAnalyzerCodeFixProvider.cs │ ├── SwitchArgumentTypeItem.cs │ └── tools │ ├── install.ps1 │ └── uninstall.ps1 └── TestCommon ├── Helpers ├── CodeFixVerifier.Helper.cs ├── DiagnosticResult.cs └── DiagnosticVerifier.Helper.cs ├── TestCommon.csproj └── Verifiers ├── CodeFixVerifier.cs └── DiagnosticVerifier.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/.gitignore -------------------------------------------------------------------------------- /CleanCode.NET.Common/CleanCode.NET.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/CleanCode.NET.Common/CleanCode.NET.Common.csproj -------------------------------------------------------------------------------- /CleanCode.NET.Common/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/CleanCode.NET.Common/Settings.cs -------------------------------------------------------------------------------- /CleanCode.NET.Common/Signature.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/CleanCode.NET.Common/Signature.snk -------------------------------------------------------------------------------- /CleanCode.NET.Metapackage/CleanCode.NET.Metapackage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/CleanCode.NET.Metapackage/CleanCode.NET.Metapackage.csproj -------------------------------------------------------------------------------- /CleanCode.NET.VSIX/CleanCode.NET.VSIX.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/CleanCode.NET.VSIX/CleanCode.NET.VSIX.csproj -------------------------------------------------------------------------------- /CleanCode.NET.VSIX/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/CleanCode.NET.VSIX/Key.snk -------------------------------------------------------------------------------- /CleanCode.NET.VSIX/OptionPageGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/CleanCode.NET.VSIX/OptionPageGrid.cs -------------------------------------------------------------------------------- /CleanCode.NET.VSIX/OptionsPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/CleanCode.NET.VSIX/OptionsPackage.cs -------------------------------------------------------------------------------- /CleanCode.NET.VSIX/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/CleanCode.NET.VSIX/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CleanCode.NET.VSIX/Resources/OptionsPackage.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/CleanCode.NET.VSIX/Resources/OptionsPackage.ico -------------------------------------------------------------------------------- /CleanCode.NET.VSIX/VSPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/CleanCode.NET.VSIX/VSPackage.resx -------------------------------------------------------------------------------- /CleanCode.NET.VSIX/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/CleanCode.NET.VSIX/packages.config -------------------------------------------------------------------------------- /CleanCode.NET.VSIX/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/CleanCode.NET.VSIX/source.extension.vsixmanifest -------------------------------------------------------------------------------- /CleanCode.NET.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/CleanCode.NET.sln -------------------------------------------------------------------------------- /CleanCodeNet.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/CleanCodeNet.nuspec -------------------------------------------------------------------------------- /ConstructorNullAnalyzer/ConstructorNullAnalyzer.Test/ConstructorNullAnalyzer.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/ConstructorNullAnalyzer/ConstructorNullAnalyzer.Test/ConstructorNullAnalyzer.Test.csproj -------------------------------------------------------------------------------- /ConstructorNullAnalyzer/ConstructorNullAnalyzer.Test/ConstructorNullAnalyzerUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/ConstructorNullAnalyzer/ConstructorNullAnalyzer.Test/ConstructorNullAnalyzerUnitTests.cs -------------------------------------------------------------------------------- /ConstructorNullAnalyzer/ConstructorNullAnalyzer.Vsix/ConstructorNullAnalyzer.Vsix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/ConstructorNullAnalyzer/ConstructorNullAnalyzer.Vsix/ConstructorNullAnalyzer.Vsix.csproj -------------------------------------------------------------------------------- /ConstructorNullAnalyzer/ConstructorNullAnalyzer.Vsix/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/ConstructorNullAnalyzer/ConstructorNullAnalyzer.Vsix/source.extension.vsixmanifest -------------------------------------------------------------------------------- /ConstructorNullAnalyzer/ConstructorNullAnalyzer/ConstructorNullAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/ConstructorNullAnalyzer/ConstructorNullAnalyzer/ConstructorNullAnalyzer.cs -------------------------------------------------------------------------------- /ConstructorNullAnalyzer/ConstructorNullAnalyzer/ConstructorNullAnalyzer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/ConstructorNullAnalyzer/ConstructorNullAnalyzer/ConstructorNullAnalyzer.csproj -------------------------------------------------------------------------------- /ConstructorNullAnalyzer/ConstructorNullAnalyzer/ConstructorNullAnalyzerCodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/ConstructorNullAnalyzer/ConstructorNullAnalyzer/ConstructorNullAnalyzerCodeFixProvider.cs -------------------------------------------------------------------------------- /ConstructorNullAnalyzer/ConstructorNullAnalyzer/FixType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/ConstructorNullAnalyzer/ConstructorNullAnalyzer/FixType.cs -------------------------------------------------------------------------------- /ConstructorNullAnalyzer/ConstructorNullAnalyzer/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/ConstructorNullAnalyzer/ConstructorNullAnalyzer/tools/install.ps1 -------------------------------------------------------------------------------- /ConstructorNullAnalyzer/ConstructorNullAnalyzer/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/ConstructorNullAnalyzer/ConstructorNullAnalyzer/tools/uninstall.ps1 -------------------------------------------------------------------------------- /Docs/CleanCodeNetOptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/Docs/CleanCodeNetOptions.png -------------------------------------------------------------------------------- /Docs/PackageAnalyzersOptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/Docs/PackageAnalyzersOptions.png -------------------------------------------------------------------------------- /Exceptions/ExceptionsAnalyzer.Test/ExceptionsAnalyzer.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/Exceptions/ExceptionsAnalyzer.Test/ExceptionsAnalyzer.Test.csproj -------------------------------------------------------------------------------- /Exceptions/ExceptionsAnalyzer.Test/ExceptionsAnalyzerUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/Exceptions/ExceptionsAnalyzer.Test/ExceptionsAnalyzerUnitTests.cs -------------------------------------------------------------------------------- /Exceptions/ExceptionsAnalyzer.Vsix/ExceptionsAnalyzer.Vsix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/Exceptions/ExceptionsAnalyzer.Vsix/ExceptionsAnalyzer.Vsix.csproj -------------------------------------------------------------------------------- /Exceptions/ExceptionsAnalyzer.Vsix/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/Exceptions/ExceptionsAnalyzer.Vsix/source.extension.vsixmanifest -------------------------------------------------------------------------------- /Exceptions/ExceptionsAnalyzer/Descriptors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/Exceptions/ExceptionsAnalyzer/Descriptors.cs -------------------------------------------------------------------------------- /Exceptions/ExceptionsAnalyzer/ExceptionsAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/Exceptions/ExceptionsAnalyzer/ExceptionsAnalyzer.cs -------------------------------------------------------------------------------- /Exceptions/ExceptionsAnalyzer/ExceptionsAnalyzer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/Exceptions/ExceptionsAnalyzer/ExceptionsAnalyzer.csproj -------------------------------------------------------------------------------- /Exceptions/ExceptionsAnalyzer/ExceptionsAnalyzerCodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/Exceptions/ExceptionsAnalyzer/ExceptionsAnalyzerCodeFixProvider.cs -------------------------------------------------------------------------------- /Exceptions/ExceptionsAnalyzer/StatementAnalysisResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/Exceptions/ExceptionsAnalyzer/StatementAnalysisResult.cs -------------------------------------------------------------------------------- /Exceptions/ExceptionsAnalyzer/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/Exceptions/ExceptionsAnalyzer/tools/install.ps1 -------------------------------------------------------------------------------- /Exceptions/ExceptionsAnalyzer/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/Exceptions/ExceptionsAnalyzer/tools/uninstall.ps1 -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NamedParametersAnalyzer/NamedParametersAnalyzer.Test/NamedParametersAnalyzer.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/NamedParametersAnalyzer/NamedParametersAnalyzer.Test/NamedParametersAnalyzer.Test.csproj -------------------------------------------------------------------------------- /NamedParametersAnalyzer/NamedParametersAnalyzer.Test/NamedParametersAnalyzerUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/NamedParametersAnalyzer/NamedParametersAnalyzer.Test/NamedParametersAnalyzerUnitTests.cs -------------------------------------------------------------------------------- /NamedParametersAnalyzer/NamedParametersAnalyzer.Vsix/NamedParametersAnalyzer.Vsix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/NamedParametersAnalyzer/NamedParametersAnalyzer.Vsix/NamedParametersAnalyzer.Vsix.csproj -------------------------------------------------------------------------------- /NamedParametersAnalyzer/NamedParametersAnalyzer.Vsix/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/NamedParametersAnalyzer/NamedParametersAnalyzer.Vsix/source.extension.vsixmanifest -------------------------------------------------------------------------------- /NamedParametersAnalyzer/NamedParametersAnalyzer/NamedParametersAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/NamedParametersAnalyzer/NamedParametersAnalyzer/NamedParametersAnalyzer.cs -------------------------------------------------------------------------------- /NamedParametersAnalyzer/NamedParametersAnalyzer/NamedParametersAnalyzer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/NamedParametersAnalyzer/NamedParametersAnalyzer/NamedParametersAnalyzer.csproj -------------------------------------------------------------------------------- /NamedParametersAnalyzer/NamedParametersAnalyzer/NamedParametersAnalyzerCodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/NamedParametersAnalyzer/NamedParametersAnalyzer/NamedParametersAnalyzerCodeFixProvider.cs -------------------------------------------------------------------------------- /NamedParametersAnalyzer/NamedParametersAnalyzer/ParametersHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/NamedParametersAnalyzer/NamedParametersAnalyzer/ParametersHelper.cs -------------------------------------------------------------------------------- /NamedParametersAnalyzer/NamedParametersAnalyzer/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/NamedParametersAnalyzer/NamedParametersAnalyzer/tools/install.ps1 -------------------------------------------------------------------------------- /NamedParametersAnalyzer/NamedParametersAnalyzer/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/NamedParametersAnalyzer/NamedParametersAnalyzer/tools/uninstall.ps1 -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/Readme.md -------------------------------------------------------------------------------- /SwitchAnalyzer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/SwitchAnalyzer/README.md -------------------------------------------------------------------------------- /SwitchAnalyzer/SwitchAnalyzer.Test/ClassSwitchAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/SwitchAnalyzer/SwitchAnalyzer.Test/ClassSwitchAnalyzerTests.cs -------------------------------------------------------------------------------- /SwitchAnalyzer/SwitchAnalyzer.Test/EnumSwitchAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/SwitchAnalyzer/SwitchAnalyzer.Test/EnumSwitchAnalyzerTests.cs -------------------------------------------------------------------------------- /SwitchAnalyzer/SwitchAnalyzer.Test/InterfaceSwitchAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/SwitchAnalyzer/SwitchAnalyzer.Test/InterfaceSwitchAnalyzerTests.cs -------------------------------------------------------------------------------- /SwitchAnalyzer/SwitchAnalyzer.Test/SwitchAnalyzer.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/SwitchAnalyzer/SwitchAnalyzer.Test/SwitchAnalyzer.Test.csproj -------------------------------------------------------------------------------- /SwitchAnalyzer/SwitchAnalyzer.Test/TestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/SwitchAnalyzer/SwitchAnalyzer.Test/TestClass.cs -------------------------------------------------------------------------------- /SwitchAnalyzer/SwitchAnalyzer.Test/TestClass2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/SwitchAnalyzer/SwitchAnalyzer.Test/TestClass2.cs -------------------------------------------------------------------------------- /SwitchAnalyzer/SwitchAnalyzer/ClassAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/SwitchAnalyzer/SwitchAnalyzer/ClassAnalyzer.cs -------------------------------------------------------------------------------- /SwitchAnalyzer/SwitchAnalyzer/DefaultCaseCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/SwitchAnalyzer/SwitchAnalyzer/DefaultCaseCheck.cs -------------------------------------------------------------------------------- /SwitchAnalyzer/SwitchAnalyzer/EnumAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/SwitchAnalyzer/SwitchAnalyzer/EnumAnalyzer.cs -------------------------------------------------------------------------------- /SwitchAnalyzer/SwitchAnalyzer/InterfaceAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/SwitchAnalyzer/SwitchAnalyzer/InterfaceAnalyzer.cs -------------------------------------------------------------------------------- /SwitchAnalyzer/SwitchAnalyzer/PatternMatchingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/SwitchAnalyzer/SwitchAnalyzer/PatternMatchingHelper.cs -------------------------------------------------------------------------------- /SwitchAnalyzer/SwitchAnalyzer/SwitchAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/SwitchAnalyzer/SwitchAnalyzer/SwitchAnalyzer.cs -------------------------------------------------------------------------------- /SwitchAnalyzer/SwitchAnalyzer/SwitchAnalyzer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/SwitchAnalyzer/SwitchAnalyzer/SwitchAnalyzer.csproj -------------------------------------------------------------------------------- /SwitchAnalyzer/SwitchAnalyzer/SwitchAnalyzerCodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/SwitchAnalyzer/SwitchAnalyzer/SwitchAnalyzerCodeFixProvider.cs -------------------------------------------------------------------------------- /SwitchAnalyzer/SwitchAnalyzer/SwitchArgumentTypeItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/SwitchAnalyzer/SwitchAnalyzer/SwitchArgumentTypeItem.cs -------------------------------------------------------------------------------- /SwitchAnalyzer/SwitchAnalyzer/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/SwitchAnalyzer/SwitchAnalyzer/tools/install.ps1 -------------------------------------------------------------------------------- /SwitchAnalyzer/SwitchAnalyzer/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/SwitchAnalyzer/SwitchAnalyzer/tools/uninstall.ps1 -------------------------------------------------------------------------------- /TestCommon/Helpers/CodeFixVerifier.Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/TestCommon/Helpers/CodeFixVerifier.Helper.cs -------------------------------------------------------------------------------- /TestCommon/Helpers/DiagnosticResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/TestCommon/Helpers/DiagnosticResult.cs -------------------------------------------------------------------------------- /TestCommon/Helpers/DiagnosticVerifier.Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/TestCommon/Helpers/DiagnosticVerifier.Helper.cs -------------------------------------------------------------------------------- /TestCommon/TestCommon.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/TestCommon/TestCommon.csproj -------------------------------------------------------------------------------- /TestCommon/Verifiers/CodeFixVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/TestCommon/Verifiers/CodeFixVerifier.cs -------------------------------------------------------------------------------- /TestCommon/Verifiers/DiagnosticVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denis-prodan/clean-code-net/HEAD/TestCommon/Verifiers/DiagnosticVerifier.cs --------------------------------------------------------------------------------