├── .config └── tsaoptions.json ├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS └── workflows │ └── backport.yml ├── .gitignore ├── .globalconfig ├── .vsts-ci.yml ├── .vsts-pr.yaml ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── Directory.Build.props ├── Directory.Build.targets ├── LICENSE.txt ├── NuGet.config ├── README.md ├── Roslyn-SDK.sln ├── SECURITY.md ├── Samples.sln ├── eng ├── Build.props ├── PRBuild.cmd ├── Publishing.props ├── Signing.props ├── TSAConfig.gdntsa ├── Version.Details.xml ├── Versions.props └── common │ ├── BuildConfiguration │ └── build-configuration.json │ ├── CIBuild.cmd │ ├── PSScriptAnalyzerSettings.psd1 │ ├── README.md │ ├── SetupNugetSources.ps1 │ ├── SetupNugetSources.sh │ ├── build.ps1 │ ├── build.sh │ ├── cibuild.sh │ ├── cross │ ├── arm │ │ ├── sources.list.bionic │ │ ├── sources.list.focal │ │ ├── sources.list.jammy │ │ ├── sources.list.jessie │ │ ├── sources.list.xenial │ │ ├── sources.list.zesty │ │ └── tizen │ │ │ └── tizen.patch │ ├── arm64 │ │ ├── sources.list.bionic │ │ ├── sources.list.buster │ │ ├── sources.list.focal │ │ ├── sources.list.jammy │ │ ├── sources.list.stretch │ │ ├── sources.list.xenial │ │ ├── sources.list.zesty │ │ └── tizen │ │ │ └── tizen.patch │ ├── armel │ │ ├── armel.jessie.patch │ │ ├── sources.list.jessie │ │ └── tizen │ │ │ └── tizen.patch │ ├── armv6 │ │ └── sources.list.buster │ ├── build-android-rootfs.sh │ ├── build-rootfs.sh │ ├── ppc64le │ │ └── sources.list.bionic │ ├── riscv64 │ │ └── sources.list.sid │ ├── s390x │ │ └── sources.list.bionic │ ├── tizen-build-rootfs.sh │ ├── tizen-fetch.sh │ ├── toolchain.cmake │ ├── x64 │ │ ├── sources.list.bionic │ │ ├── sources.list.xenial │ │ └── tizen │ │ │ └── tizen.patch │ └── x86 │ │ ├── sources.list.bionic │ │ ├── sources.list.focal │ │ ├── sources.list.jammy │ │ ├── sources.list.xenial │ │ └── tizen │ │ └── tizen.patch │ ├── darc-init.ps1 │ ├── darc-init.sh │ ├── dotnet-install.cmd │ ├── dotnet-install.ps1 │ ├── dotnet-install.sh │ ├── enable-cross-org-publishing.ps1 │ ├── generate-locproject.ps1 │ ├── generate-sbom-prep.ps1 │ ├── generate-sbom-prep.sh │ ├── helixpublish.proj │ ├── init-tools-native.cmd │ ├── init-tools-native.ps1 │ ├── init-tools-native.sh │ ├── internal-feed-operations.ps1 │ ├── internal-feed-operations.sh │ ├── internal │ ├── Directory.Build.props │ ├── NuGet.config │ └── Tools.csproj │ ├── loc │ └── P22DotNetHtmlLocalization.lss │ ├── msbuild.ps1 │ ├── msbuild.sh │ ├── native │ ├── CommonLibrary.psm1 │ ├── common-library.sh │ ├── init-compiler.sh │ ├── init-distro-rid.sh │ ├── init-os-and-arch.sh │ ├── install-cmake-test.sh │ ├── install-cmake.sh │ └── install-tool.ps1 │ ├── pipeline-logging-functions.ps1 │ ├── pipeline-logging-functions.sh │ ├── post-build │ ├── add-build-to-channel.ps1 │ ├── check-channel-consistency.ps1 │ ├── nuget-validation.ps1 │ ├── nuget-verification.ps1 │ ├── post-build-utils.ps1 │ ├── publish-using-darc.ps1 │ ├── sourcelink-validation.ps1 │ ├── symbols-validation.ps1 │ └── trigger-subscriptions.ps1 │ ├── retain-build.ps1 │ ├── sdk-task.ps1 │ ├── sdl │ ├── NuGet.config │ ├── configure-sdl-tool.ps1 │ ├── execute-all-sdl-tools.ps1 │ ├── extract-artifact-archives.ps1 │ ├── extract-artifact-packages.ps1 │ ├── init-sdl.ps1 │ ├── packages.config │ ├── run-sdl.ps1 │ ├── sdl.ps1 │ └── trim-assets-version.ps1 │ ├── templates-official │ ├── job │ │ ├── job.yml │ │ ├── onelocbuild.yml │ │ ├── publish-build-assets.yml │ │ ├── source-build.yml │ │ └── source-index-stage1.yml │ ├── jobs │ │ ├── codeql-build.yml │ │ ├── jobs.yml │ │ └── source-build.yml │ ├── post-build │ │ ├── common-variables.yml │ │ ├── post-build.yml │ │ ├── setup-maestro-vars.yml │ │ └── trigger-subscription.yml │ ├── steps │ │ ├── add-build-to-channel.yml │ │ ├── build-reason.yml │ │ ├── component-governance.yml │ │ ├── enable-internal-runtimes.yml │ │ ├── execute-codeql.yml │ │ ├── execute-sdl.yml │ │ ├── generate-sbom.yml │ │ ├── get-delegation-sas.yml │ │ ├── get-federated-access-token.yml │ │ ├── publish-logs.yml │ │ ├── retain-build.yml │ │ ├── send-to-helix.yml │ │ └── source-build.yml │ └── variables │ │ ├── pool-providers.yml │ │ └── sdl-variables.yml │ ├── templates │ ├── job │ │ ├── execute-sdl.yml │ │ ├── job.yml │ │ ├── onelocbuild.yml │ │ ├── publish-build-assets.yml │ │ ├── source-build.yml │ │ └── source-index-stage1.yml │ ├── jobs │ │ ├── codeql-build.yml │ │ ├── jobs.yml │ │ └── source-build.yml │ ├── post-build │ │ ├── common-variables.yml │ │ ├── post-build.yml │ │ ├── setup-maestro-vars.yml │ │ └── trigger-subscription.yml │ ├── steps │ │ ├── add-build-to-channel.yml │ │ ├── build-reason.yml │ │ ├── component-governance.yml │ │ ├── enable-internal-runtimes.yml │ │ ├── execute-codeql.yml │ │ ├── execute-sdl.yml │ │ ├── generate-sbom.yml │ │ ├── get-delegation-sas.yml │ │ ├── get-federated-access-token.yml │ │ ├── publish-logs.yml │ │ ├── retain-build.yml │ │ ├── run-on-unix.yml │ │ ├── run-on-windows.yml │ │ ├── run-script-ifequalelse.yml │ │ ├── send-to-helix.yml │ │ ├── source-build.yml │ │ ├── telemetry-end.yml │ │ └── telemetry-start.yml │ └── variables │ │ ├── pool-providers.yml │ │ └── sdl-variables.yml │ ├── tools.ps1 │ └── tools.sh ├── es-metadata.yml ├── global.json ├── restore.cmd ├── samples ├── .editorconfig ├── CSharp │ ├── APISamples │ │ ├── APISamples.CSharp.UnitTests.csproj │ │ ├── Compilations.cs │ │ ├── FAQ.cs │ │ ├── Parsing.cs │ │ ├── SymbolsAndSemantics.cs │ │ └── SyntaxTrees.cs │ ├── Analyzers │ │ ├── Analyzers.Implementation │ │ │ ├── AdditionalFileAnalyzers │ │ │ │ ├── SimpleAdditionalFileAnalyzer.cs │ │ │ │ └── XmlAdditionalFileAnalyzer.cs │ │ │ ├── Analyzers.CSharp.csproj │ │ │ ├── DiagnosticCategories.cs │ │ │ ├── DiagnosticIds.cs │ │ │ ├── StatefulAnalyzers │ │ │ │ ├── CodeBlockStartedAnalyzer.cs │ │ │ │ ├── CompilationStartedAnalyzer.cs │ │ │ │ └── CompilationStartedAnalyzerWithCompilationWideAnalysis.cs │ │ │ ├── StatelessAnalyzers │ │ │ │ ├── CodeBlockAnalyzer.cs │ │ │ │ ├── CompilationAnalyzer.cs │ │ │ │ ├── IOperationAnalyzer.cs │ │ │ │ ├── SemanticModelAnalyzer.cs │ │ │ │ ├── SymbolAnalyzer.cs │ │ │ │ ├── SyntaxNodeAnalyzer.cs │ │ │ │ └── SyntaxTreeAnalyzer.cs │ │ │ └── tools │ │ │ │ ├── install.ps1 │ │ │ │ └── uninstall.ps1 │ │ ├── Analyzers.Test │ │ │ ├── Analyzers.CSharp.UnitTests.csproj │ │ │ └── Tests │ │ │ │ ├── CodeBlockAnalyzerUnitTests.cs │ │ │ │ ├── CodeBlockStartedAnalyzerUnitTests.cs │ │ │ │ ├── CompilationAnalyzerUnitTests.cs │ │ │ │ ├── CompilationStartedAnalyzerUnitTests.cs │ │ │ │ ├── CompilationStartedAnalyzerWithCompilationWideAnalysisUnitTests.cs │ │ │ │ ├── SemanticModelAnalyzerUnitTests.cs │ │ │ │ ├── SymbolAnalyzerUnitTests.cs │ │ │ │ ├── SyntaxNodeAnalyzerUnitTests.cs │ │ │ │ └── SyntaxTreeAnalyzerUnitTests.cs │ │ └── Analyzers.Vsix │ │ │ ├── Analyzers.CSharp.Vsix.csproj │ │ │ └── source.extension.vsixmanifest │ ├── CSharpToVisualBasicConverter │ │ ├── CSharpToVisualBasicConverter.Lib │ │ │ ├── CSharpToVisualBasicConverter.csproj │ │ │ ├── Cleanup │ │ │ │ ├── CurlyCleanup.cs │ │ │ │ ├── MissingCurlyCleanup.cs │ │ │ │ ├── NewLineCleanup.cs │ │ │ │ └── WhiteSpaceCleanup.cs │ │ │ ├── Converting │ │ │ │ ├── Converter.NodeVisitor.cs │ │ │ │ ├── Converter.StatementVisitor.ForStatement.cs │ │ │ │ ├── Converter.StatementVisitor.cs │ │ │ │ └── Converter.cs │ │ │ └── Utilities │ │ │ │ ├── CSharpExtensions.cs │ │ │ │ ├── EnumerableExtensions.cs │ │ │ │ └── StringExtensions.cs │ │ └── CSharpToVisualBasicConverter.Test │ │ │ ├── CSharpToVisualBasicConverter.UnitTests.csproj │ │ │ ├── CSharpToVisualBasicConverterTests.cs │ │ │ └── TestFiles │ │ │ ├── AllConstructs.cs │ │ │ ├── AllConstructs.txt │ │ │ └── TestFilesHelper.cs │ ├── ConsoleClassifier │ │ ├── ConsoleClassifier.CSharp.csproj │ │ ├── Program.cs │ │ └── Range.cs │ ├── ConvertToAutoProperty │ │ ├── ConvertToAutoProperty.Implementation │ │ │ ├── ConvertToAutoProperty.CSharp.csproj │ │ │ ├── ConvertToAutoPropertyCodeRefactoringProvider.cs │ │ │ └── PropertyRewriter.cs │ │ └── ConvertToAutoProperty.Vsix │ │ │ ├── ConvertToAutoProperty.CSharp.Vsix.csproj │ │ │ └── source.extension.vsixmanifest │ ├── ConvertToConditional │ │ ├── ConvertToConditional.Implementation │ │ │ ├── ConditionalAnalyzer.cs │ │ │ ├── ConvertToConditional.CSharp.csproj │ │ │ ├── ConvertToConditionalCodeRefactoringProvider.cs │ │ │ ├── Extensions.cs │ │ │ ├── ReturnConditionalAnalyzer.cs │ │ │ └── tools │ │ │ │ ├── install.ps1 │ │ │ │ └── uninstall.ps1 │ │ ├── ConvertToConditional.Test │ │ │ ├── ConvertToConditional.CSharp.UnitTests.csproj │ │ │ └── ConvertToConditionalUnitTests.cs │ │ └── ConvertToConditional.Vsix │ │ │ ├── ConvertToConditional.CSharp.Vsix.csproj │ │ │ └── source.extension.vsixmanifest │ ├── FormatSolution │ │ ├── FormatSolution.CSharp.csproj │ │ └── Program.cs │ ├── ImplementNotifyPropertyChanged │ │ ├── ImplementNotifyPropertyChanged.Vsix │ │ │ ├── ImplementNotifyPropertyChanged.CSharp.Vsix.csproj │ │ │ └── source.extension.vsixmanifest │ │ └── ImplementNotifyPropertyChanged │ │ │ ├── CodeGeneration.cs │ │ │ ├── ExpandablePropertyInfo.cs │ │ │ ├── ExpansionChecker.cs │ │ │ ├── ImplementNotifyPropertyChanged.CSharp.csproj │ │ │ └── ImplementNotifyPropertyChangedCodeRefactoringProvider.cs │ ├── MakeConst │ │ ├── MakeConst.Implementation │ │ │ ├── MakeConst.CSharp.csproj │ │ │ ├── MakeConstAnalyzer.cs │ │ │ ├── MakeConstCodeFixProvider.cs │ │ │ └── tools │ │ │ │ ├── install.ps1 │ │ │ │ └── uninstall.ps1 │ │ └── MakeConst.Vsix │ │ │ ├── MakeConst.CSharp.Vsix.csproj │ │ │ └── source.extension.vsixmanifest │ ├── RefOutModifier │ │ ├── RefOutModifier.Implementation │ │ │ ├── AddOutOrRefCodeAction.cs │ │ │ ├── ApplicableActionFinder.cs │ │ │ ├── Extensions.cs │ │ │ ├── Properties │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ └── xlf │ │ │ │ │ ├── Resources.cs.xlf │ │ │ │ │ ├── Resources.de.xlf │ │ │ │ │ ├── Resources.es.xlf │ │ │ │ │ ├── Resources.fr.xlf │ │ │ │ │ ├── Resources.it.xlf │ │ │ │ │ ├── Resources.ja.xlf │ │ │ │ │ ├── Resources.ko.xlf │ │ │ │ │ ├── Resources.pl.xlf │ │ │ │ │ ├── Resources.pt-BR.xlf │ │ │ │ │ ├── Resources.ru.xlf │ │ │ │ │ ├── Resources.tr.xlf │ │ │ │ │ ├── Resources.zh-Hans.xlf │ │ │ │ │ └── Resources.zh-Hant.xlf │ │ │ ├── RefOutModifier.CSharp.csproj │ │ │ ├── RefOutModifierCodeRefactoringProvider.cs │ │ │ └── RemoveOutOrRefCodeAction.cs │ │ └── RefOutModifier.Vsix │ │ │ ├── RefOutModifier.CSharp.Vsix.csproj │ │ │ └── source.extension.vsixmanifest │ ├── SolutionExplorer │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Behaviors │ │ │ ├── MouseDoubleClickBehaviors.cs │ │ │ └── TextBoxBehaviors.cs │ │ ├── Extensions.cs │ │ ├── Framework │ │ │ ├── NotifyTaskCompletion.cs │ │ │ ├── PropertyChangedEventArgsCache.cs │ │ │ ├── ViewModel_CommandBindings.cs │ │ │ ├── ViewModel_INotifyPropertyChanged.cs │ │ │ └── ViewModel`1.cs │ │ ├── Logging │ │ │ ├── Extensions.cs │ │ │ ├── OutputLogger.cs │ │ │ └── OutputLoggerProvider.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ ├── Settings.settings │ │ │ └── xlf │ │ │ │ ├── Resources.cs.xlf │ │ │ │ ├── Resources.de.xlf │ │ │ │ ├── Resources.es.xlf │ │ │ │ ├── Resources.fr.xlf │ │ │ │ ├── Resources.it.xlf │ │ │ │ ├── Resources.ja.xlf │ │ │ │ ├── Resources.ko.xlf │ │ │ │ ├── Resources.pl.xlf │ │ │ │ ├── Resources.pt-BR.xlf │ │ │ │ ├── Resources.ru.xlf │ │ │ │ ├── Resources.tr.xlf │ │ │ │ ├── Resources.zh-Hans.xlf │ │ │ │ └── Resources.zh-Hant.xlf │ │ ├── Resources │ │ │ └── Images.xaml │ │ ├── Services │ │ │ ├── BaseService.cs │ │ │ ├── MSBuildService.cs │ │ │ ├── OpenDocumentService.cs │ │ │ ├── OutputService.cs │ │ │ └── WorkspaceService.cs │ │ ├── SolutionExplorer.csproj │ │ ├── ViewModels │ │ │ ├── DocumentPageViewModel.cs │ │ │ ├── DocumentViewModel.cs │ │ │ ├── FolderViewModel.cs │ │ │ ├── HierarchyItemViewModel.cs │ │ │ ├── LogViewModel.cs │ │ │ ├── MainWindowViewModel.cs │ │ │ ├── MetadataReferenceViewModel.cs │ │ │ ├── PageViewModel.cs │ │ │ ├── ProjectReferenceViewModel.cs │ │ │ ├── ProjectViewModel.cs │ │ │ ├── ReferencesFolderViewModel.cs │ │ │ └── SolutionViewModel.cs │ │ └── Views │ │ │ ├── DocumentView.xaml │ │ │ ├── LogView.xaml │ │ │ └── MainWindowView.xaml │ ├── SourceGenerators │ │ ├── GeneratedDemo │ │ │ ├── CSharpGeneratedDemo.csproj │ │ │ ├── Cars.csv │ │ │ ├── Geometry.math │ │ │ ├── MainSettings.xmlsettings │ │ │ ├── People.csv │ │ │ ├── Program.cs │ │ │ ├── UseAutoNotifyGenerator.cs │ │ │ ├── UseCsvGenerator.cs │ │ │ ├── UseHelloWorldGenerator.cs │ │ │ ├── UseMathsGenerator.cs │ │ │ ├── UseMustacheGenerator.cs │ │ │ └── UseXmlSettingsGenerator.cs │ │ ├── README.md │ │ ├── SourceGeneratorSamples │ │ │ ├── AutoNotifyGenerator.cs │ │ │ ├── CSharpSourceGeneratorSamples.csproj │ │ │ ├── CsvGenerator.cs │ │ │ ├── CsvGenerator.props │ │ │ ├── HelloWorldGenerator.cs │ │ │ ├── MathsGenerator.cs │ │ │ ├── MustacheGenerator.cs │ │ │ └── SettingsXmlGenerator.cs │ │ └── SourceGenerators.sln │ └── TreeTransforms │ │ ├── TransformVisitor.cs │ │ ├── Transforms.cs │ │ ├── TreeTransformTests.cs │ │ └── TreeTransforms.CSharp.UnitTests.csproj ├── Directory.Build.props ├── Directory.Build.targets ├── Shared │ └── UnitTestFramework │ │ ├── CodeActionProviderTestFixture.cs │ │ ├── CodeRefactoringProviderTestFixture.cs │ │ ├── DictionaryExtensions.cs │ │ ├── EnumerableExtensions.ComparisonComparer.cs │ │ ├── EnumerableExtensions.cs │ │ ├── MarkupTestFile.cs │ │ └── Roslyn.UnitTestFramework.csproj └── VisualBasic │ ├── APISamples │ ├── APISamples.VisualBasic.UnitTests.vbproj │ ├── Compilations.vb │ ├── Extensions.vb │ ├── FAQ.vb │ ├── Parsing.vb │ ├── SymbolsAndSemantics.vb │ ├── SyntaxTrees.vb │ └── TestCodeContainer.vb │ ├── Analyzers │ ├── Analyzers.Implementation │ │ ├── AdditionalFileAnalyzers │ │ │ ├── SimpleAdditionalFileAnalyzer.vb │ │ │ └── XmlAdditionalFileAnalyzer.vb │ │ ├── Analyzers.VisualBasic.vbproj │ │ ├── DiagnosticCategories.vb │ │ ├── DiagnosticIds.vb │ │ ├── My Project │ │ │ ├── Resources.Designer.vb │ │ │ └── Resources.resx │ │ ├── StatefulAnalyzers │ │ │ ├── CodeBlockStartedAnalyzer.vb │ │ │ ├── CompilationStartedAnalyzer.vb │ │ │ └── CompilationStartedAnalyzerWithCompilationWideAnalysis.vb │ │ ├── StatelessAnalyzers │ │ │ ├── CodeBlockAnalyzer.vb │ │ │ ├── CompilationAnalyzer.vb │ │ │ ├── SemanticModelAnalyzer.vb │ │ │ ├── SymbolAnalyzer.vb │ │ │ ├── SyntaxNodeAnalyzer.vb │ │ │ └── SyntaxTreeAnalyzer.vb │ │ └── tools │ │ │ ├── install.ps1 │ │ │ └── uninstall.ps1 │ └── Analyzers.Vsix │ │ ├── Analyzers.VisualBasic.Vsix.vbproj │ │ ├── My Project │ │ └── AssemblyInfo.vb │ │ └── source.extension.vsixmanifest │ ├── ConsoleClassifier │ ├── ConsoleClassifier.VisualBasic.vbproj │ ├── Program.vb │ └── Range.vb │ ├── ConvertToAutoProperty │ ├── ConvertToAutoProperty.Vsix │ │ ├── ConvertToAutoProperty.VisualBasic.Vsix.vbproj │ │ ├── My Project │ │ │ └── AssemblyInfo.vb │ │ └── source.extension.vsixmanifest │ └── ConvertToAutoProperty │ │ ├── CodeRefactoringProvider.vb │ │ ├── ConvertToAutoProperty.VisualBasic.vbproj │ │ └── ReferenceRewriter.vb │ ├── FormatSolution │ ├── FormatSolution.VisualBasic.vbproj │ └── FormatSolution.vb │ ├── ImplementNotifyPropertyChanged │ ├── ImplementNotifyPropertyChanged.Vsix │ │ ├── ImplementNotifyPropertyChanged.VisualBasic.Vsix.vbproj │ │ ├── My Project │ │ │ └── AssemblyInfo.vb │ │ └── source.extension.vsixmanifest │ └── ImplementNotifyPropertyChanged │ │ ├── CodeGeneration.vb │ │ ├── ExpandablePropertyInfo.vb │ │ ├── ExpansionChecker.vb │ │ ├── ImplementNotifyPropertyChanged.VisualBasic.vbproj │ │ └── ImplementNotifyPropertyChangedCodeRefactoringProvider.vb │ ├── MakeConst │ ├── MakeConst.Test │ │ ├── MakeConst.VisualBasic.UnitTests.vbproj │ │ └── MakeConstUnitTests.vb │ ├── MakeConst.Vsix │ │ ├── MakeConst.VisualBasic.Vsix.vbproj │ │ ├── My Project │ │ │ └── AssemblyInfo.vb │ │ └── source.extension.vsixmanifest │ └── MakeConst │ │ ├── MakeConst.VisualBasic.vbproj │ │ ├── MakeConstAnalyzer.vb │ │ ├── MakeConstCodeFixProvider.vb │ │ ├── My Project │ │ ├── Resources.Designer.vb │ │ └── Resources.resx │ │ └── tools │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── RemoveByVal │ ├── RemoveByVal.Vsix │ │ ├── My Project │ │ │ └── AssemblyInfo.vb │ │ ├── RemoveByVal.VisualBasic.Vsix.vbproj │ │ └── source.extension.vsixmanifest │ └── RemoveByVal │ │ ├── CodeRefactoringProvider.vb │ │ └── RemoveByVal.VisualBasic.vbproj │ ├── SourceGenerators │ ├── GeneratedDemo │ │ ├── Cars.csv │ │ ├── MainSettings.xmlsettings │ │ ├── People.csv │ │ ├── Program.vb │ │ ├── UseAutoNotifyGenerator.vb │ │ ├── UseCsvGenerator.vb │ │ ├── UseHelloWorldGenerator.vb │ │ ├── UseXmlSettingsGenerator.vb │ │ └── VisualBasicGeneratedDemo.vbproj │ ├── README.md │ ├── SourceGeneratorSamples │ │ ├── AutoNotifyGenerator.vb │ │ ├── CsvGenerator.props │ │ ├── CsvGenerator.vb │ │ ├── HelloWorldGenerator.vb │ │ ├── SettingsXmlGenerator.vb │ │ └── VisualBasicSourceGeneratorSamples.vbproj │ └── SourceGenerators.sln │ ├── TreeTransforms │ ├── TransformVisitor.vb │ ├── Transforms.vb │ ├── TreeTransforms.VisualBasic.UnitTests.vbproj │ └── TreeTransforms.vb │ └── VisualBasicToCSharpConverter │ ├── VisualBasicToCSharpConverter.Lib │ ├── Converter.vb │ ├── NodeConvertingVisitor.vb │ ├── QueryClauseConvertingVisitor.vb │ └── VisualBasicToCSharpConverter.Lib.vbproj │ └── VisualBasicToCSharpConverter.Test │ ├── My Project │ ├── Resources.Designer.vb │ ├── Resources.resx │ └── xlf │ │ ├── Resources.cs.xlf │ │ ├── Resources.de.xlf │ │ ├── Resources.es.xlf │ │ ├── Resources.fr.xlf │ │ ├── Resources.it.xlf │ │ ├── Resources.ja.xlf │ │ ├── Resources.ko.xlf │ │ ├── Resources.pl.xlf │ │ ├── Resources.pt-BR.xlf │ │ ├── Resources.ru.xlf │ │ ├── Resources.tr.xlf │ │ ├── Resources.zh-Hans.xlf │ │ └── Resources.zh-Hant.xlf │ ├── Resources │ └── VBAllInOne.txt │ ├── UnitTest1.vb │ └── VisualBasicToCSharpConverter.UnitTests.vbproj ├── src ├── Directory.Build.props ├── Directory.Build.targets ├── Microsoft.CodeAnalysis.Testing │ ├── Directory.Build.props │ ├── Directory.Build.targets │ ├── Microsoft.CodeAnalysis.Analyzer.Testing │ │ ├── AnalyzerInfo.cs │ │ ├── AnalyzerTest`1.cs │ │ ├── AnalyzerVerifier`3.cs │ │ ├── CodeActionTest`1.cs │ │ ├── CodeActionValidationMode.cs │ │ ├── CompilerDiagnostics.cs │ │ ├── DefaultVerifier.cs │ │ ├── DiagnosticLocation.cs │ │ ├── DiagnosticLocationOptions.cs │ │ ├── DiagnosticOptions.cs │ │ ├── DiagnosticResult.cs │ │ ├── EmptyDiagnosticAnalyzer.cs │ │ ├── EnsureNoWorkspacesDesktopReferenceA.cs │ │ ├── ExceptionUtilities.cs │ │ ├── ExportProviderFactory.cs │ │ ├── Extensions │ │ │ ├── AnalyzerOptionsExtensions.cs │ │ │ ├── CodeActionExtensions.cs │ │ │ ├── CompilationWithAnalyzersExtensions.cs │ │ │ ├── ComposableCatalogExtensions.cs │ │ │ ├── DiagnosticExtensions.cs │ │ │ ├── DictionaryExtensions.cs │ │ │ ├── ExportProviderExtensions.cs │ │ │ ├── IEnumerableExtensions.cs │ │ │ ├── IVerifierExtensions.cs │ │ │ ├── ProjectExtensions.cs │ │ │ └── SolutionExtensions.cs │ │ ├── IVerifier.cs │ │ ├── Lightup │ │ │ ├── AnalysisResultWrapper.cs │ │ │ ├── DiagnosticSuppressorWrapper.cs │ │ │ ├── LightupHelpers.cs │ │ │ ├── ProgrammaticSuppressionInfoWrapper.cs │ │ │ └── SuppressionDescriptorWrapper.cs │ │ ├── MarkupMode.cs │ │ ├── MarkupOptions.cs │ │ ├── MetadataReferenceCollection.cs │ │ ├── MetadataReferences.cs │ │ ├── Microsoft.CodeAnalysis.Analyzer.Testing.csproj │ │ ├── Model │ │ │ └── EvaluatedProjectState.cs │ │ ├── ObsoleteMessages.cs │ │ ├── PackageIdentity.cs │ │ ├── ProjectCollection.cs │ │ ├── ProjectState.cs │ │ ├── PublicAPI.Shipped.txt │ │ ├── PublicAPI.Unshipped.txt │ │ ├── ReferenceAssemblies+FileSystemSemaphore.cs │ │ ├── ReferenceAssemblies.cs │ │ ├── RoslynDebug.cs │ │ ├── SolutionState.cs │ │ ├── SourceFileCollection.cs │ │ ├── SourceFileList.cs │ │ ├── StateInheritanceMode.cs │ │ ├── TestBehaviors.cs │ │ ├── TestFileMarkupParser.cs │ │ ├── TestXmlReferenceResolver.cs │ │ └── WeightedMatch.cs │ ├── Microsoft.CodeAnalysis.CSharp.Analyzer.Testing │ │ ├── CSharpAnalyzerTest`2.cs │ │ ├── CSharpAnalyzerVerifier`2.cs │ │ ├── Microsoft.CodeAnalysis.CSharp.Analyzer.Testing.csproj │ │ ├── PublicAPI.Shipped.txt │ │ └── PublicAPI.Unshipped.txt │ ├── Microsoft.CodeAnalysis.CSharp.CodeFix.Testing │ │ ├── CSharpCodeFixTest`3.cs │ │ ├── CSharpCodeFixVerifier`3.cs │ │ ├── Microsoft.CodeAnalysis.CSharp.CodeFix.Testing.csproj │ │ ├── PublicAPI.Shipped.txt │ │ └── PublicAPI.Unshipped.txt │ ├── Microsoft.CodeAnalysis.CSharp.CodeRefactoring.Testing │ │ ├── CSharpCodeRefactoringTest`2.cs │ │ ├── CSharpCodeRefactoringVerifier`2.cs │ │ ├── Microsoft.CodeAnalysis.CSharp.CodeRefactoring.Testing.csproj │ │ ├── PublicAPI.Shipped.txt │ │ └── PublicAPI.Unshipped.txt │ ├── Microsoft.CodeAnalysis.CSharp.SourceGenerators.Testing │ │ ├── CSharpSourceGeneratorTest`2.cs │ │ ├── CSharpSourceGeneratorVerifier`2.cs │ │ ├── Microsoft.CodeAnalysis.CSharp.SourceGenerators.Testing.csproj │ │ ├── PublicAPI.Shipped.txt │ │ └── PublicAPI.Unshipped.txt │ ├── Microsoft.CodeAnalysis.CodeFix.Testing │ │ ├── CodeFixTestBehaviors.cs │ │ ├── CodeFixTest`1.cs │ │ ├── CodeFixValidationMode.cs │ │ ├── CodeFixVerifier`4.cs │ │ ├── EmptyCodeFixProvider.cs │ │ ├── EnsureNoWorkspacesDesktopReferenceB.cs │ │ ├── Extensions │ │ │ └── FixAllContextExtensions.cs │ │ ├── Microsoft.CodeAnalysis.CodeFix.Testing.csproj │ │ ├── PublicAPI.Shipped.txt │ │ ├── PublicAPI.Unshipped.txt │ │ └── TestDiagnosticProvider.cs │ ├── Microsoft.CodeAnalysis.CodeRefactoring.Testing │ │ ├── CodeRefactoringTest`1.cs │ │ ├── CodeRefactoringVerifier`3.cs │ │ ├── EmptyCodeRefactoringProvider.cs │ │ ├── EnsureNoWorkspacesDesktopReferenceB.cs │ │ ├── Microsoft.CodeAnalysis.CodeRefactoring.Testing.csproj │ │ ├── PublicAPI.Shipped.txt │ │ └── PublicAPI.Unshipped.txt │ ├── Microsoft.CodeAnalysis.SourceGenerators.Testing │ │ ├── EmptySourceGeneratorProvider.cs │ │ ├── Microsoft.CodeAnalysis.SourceGenerators.Testing.csproj │ │ ├── PublicAPI.Shipped.txt │ │ ├── PublicAPI.Unshipped.txt │ │ ├── SourceGeneratorTest`1.cs │ │ └── SourceGeneratorVerifier`3.cs │ ├── Microsoft.CodeAnalysis.VisualBasic.Analyzer.Testing │ │ ├── Microsoft.CodeAnalysis.VisualBasic.Analyzer.Testing.vbproj │ │ ├── PublicAPI.Shipped.txt │ │ ├── PublicAPI.Unshipped.txt │ │ ├── VisualBasicAnalyzerTest.vb │ │ └── VisualBasicAnalyzerVerifier.vb │ ├── Microsoft.CodeAnalysis.VisualBasic.CodeFix.Testing │ │ ├── Microsoft.CodeAnalysis.VisualBasic.CodeFix.Testing.vbproj │ │ ├── PublicAPI.Shipped.txt │ │ ├── PublicAPI.Unshipped.txt │ │ ├── VisualBasicCodeFixTest.vb │ │ └── VisualBasicCodefixVerifier.vb │ ├── Microsoft.CodeAnalysis.VisualBasic.CodeRefactoring.Testing │ │ ├── Microsoft.CodeAnalysis.VisualBasic.CodeRefactoring.Testing.vbproj │ │ ├── PublicAPI.Shipped.txt │ │ ├── PublicAPI.Unshipped.txt │ │ ├── VisualBasicCodeRefactoringTest`2.vb │ │ └── VisualBasicCodeRefactoringVerifier`2.vb │ ├── Microsoft.CodeAnalysis.VisualBasic.SourceGenerators.Testing │ │ ├── Microsoft.CodeAnalysis.VisualBasic.SourceGenerators.Testing.vbproj │ │ ├── PublicAPI.Shipped.txt │ │ ├── PublicAPI.Unshipped.txt │ │ ├── VisualBasicSourceGeneratorTest`2.vb │ │ └── VisualBasicSourceGeneratorVerifier`2.vb │ └── README.md └── VisualStudio.Roslyn.SDK │ ├── AssemblyVersionGenerator │ ├── AssemblyVersionGenerator.cs │ └── AssemblyVersionGenerator.csproj │ ├── ComponentDebugger │ ├── CommandLineArgumentsDataSource.cs │ ├── ComponentDebuggerLaunchProfile.xaml │ ├── Constants.cs │ ├── DebugProfileProvider.cs │ ├── LaunchSettingsManager.cs │ ├── ProjectUtilities.cs │ ├── Roslyn.ComponentDebugger.csproj │ ├── RuleExporter.cs │ ├── TargetProjectEnumProvider.cs │ └── xlf │ │ ├── ComponentDebuggerLaunchProfile.xaml.cs.xlf │ │ ├── ComponentDebuggerLaunchProfile.xaml.de.xlf │ │ ├── ComponentDebuggerLaunchProfile.xaml.es.xlf │ │ ├── ComponentDebuggerLaunchProfile.xaml.fr.xlf │ │ ├── ComponentDebuggerLaunchProfile.xaml.it.xlf │ │ ├── ComponentDebuggerLaunchProfile.xaml.ja.xlf │ │ ├── ComponentDebuggerLaunchProfile.xaml.ko.xlf │ │ ├── ComponentDebuggerLaunchProfile.xaml.pl.xlf │ │ ├── ComponentDebuggerLaunchProfile.xaml.pt-BR.xlf │ │ ├── ComponentDebuggerLaunchProfile.xaml.ru.xlf │ │ ├── ComponentDebuggerLaunchProfile.xaml.tr.xlf │ │ ├── ComponentDebuggerLaunchProfile.xaml.zh-Hans.xlf │ │ └── ComponentDebuggerLaunchProfile.xaml.zh-Hant.xlf │ ├── EULA.rtf │ ├── Roslyn.SDK.Template.Wizard │ ├── Roslyn.SDK.Template.Wizard.csproj │ ├── RoslynSDKAnalyzerTemplateWizard.cs │ ├── RoslynSDKChildTemplateWizard.InterfaceMembers.cs │ ├── RoslynSDKChildTemplateWizard.cs │ ├── RoslynSDKCodeFixTemplateWizard.cs │ ├── RoslynSDKPackageTemplateWizard.cs │ ├── RoslynSDKRootTemplateWizard.InterfaceMembers.cs │ ├── RoslynSDKRootTemplateWizard.cs │ ├── RoslynSDKTestTemplateWizard.cs │ ├── RoslynSDKVsixTemplateWizardSecondProject.cs │ └── RoslynSDKVsixTemplateWizardThirdProject.cs │ ├── Roslyn.SDK │ ├── CSRef.vstemplate │ ├── CSharpDiagnostic.vstemplate │ ├── CodeInformation.ico │ ├── Directory.Build.props │ ├── ItemTemplates │ │ ├── CSharp │ │ │ ├── Analyzer │ │ │ │ ├── Analyzer.cs │ │ │ │ └── CSharpAnalyzer.vstemplate │ │ │ ├── CodeFix │ │ │ │ ├── CSharpCodeFix.vstemplate │ │ │ │ └── CodeFix.cs │ │ │ └── Refactoring │ │ │ │ ├── CSharpRefactoring.vstemplate │ │ │ │ └── Refactoring.cs │ │ └── VisualBasic │ │ │ ├── Analyzer │ │ │ ├── Analyzer.vb │ │ │ └── VBAnalyzer.vstemplate │ │ │ ├── CodeFix │ │ │ ├── CodeFix.vb │ │ │ └── VBCodeFix.vstemplate │ │ │ └── Refactoring │ │ │ ├── Refactoring.vb │ │ │ └── VBRefactoring.vstemplate │ ├── ProjectTemplates │ │ ├── CSharp │ │ │ ├── CodeRefactoring │ │ │ │ ├── Ref │ │ │ │ │ ├── CSharpCodeRefactoring.vstemplate │ │ │ │ │ ├── CodeRefactoring.csproj │ │ │ │ │ └── CodeRefactoringProvider.cs │ │ │ │ └── Vsix │ │ │ │ │ ├── Deployment.csproj │ │ │ │ │ ├── Deployment.vstemplate │ │ │ │ │ └── source.extension.vsixmanifest │ │ │ ├── ConsoleApplication │ │ │ │ ├── CSharpConsoleApplication.vstemplate │ │ │ │ ├── CodeAnalysisConsole.ico │ │ │ │ ├── ConsoleApplication.csproj │ │ │ │ └── Program.cs │ │ │ └── Diagnostic │ │ │ │ ├── Analyzer │ │ │ │ ├── DiagnosticAnalyzer.cs │ │ │ │ ├── DiagnosticAnalyzer.csproj │ │ │ │ ├── DiagnosticAnalyzer.vstemplate │ │ │ │ ├── Resources.Designer.cs │ │ │ │ └── Resources.resx │ │ │ │ ├── CodeFix │ │ │ │ ├── CodeFixProvider.cs │ │ │ │ ├── CodeFixProvider.csproj │ │ │ │ ├── CodeFixProvider.vstemplate │ │ │ │ ├── CodeFixResources.Designer.cs │ │ │ │ └── CodeFixResources.resx │ │ │ │ ├── Package │ │ │ │ ├── Package.csproj │ │ │ │ ├── Package.vstemplate │ │ │ │ ├── install.ps1 │ │ │ │ └── uninstall.ps1 │ │ │ │ ├── Test │ │ │ │ ├── Test.csproj │ │ │ │ ├── Test.vstemplate │ │ │ │ ├── UnitTests.cs │ │ │ │ └── Verifiers │ │ │ │ │ ├── CSAnalyzer+Test.cs │ │ │ │ │ ├── CSAnalyzer.cs │ │ │ │ │ ├── CSCodeFix+Test.cs │ │ │ │ │ ├── CSCodeFix.cs │ │ │ │ │ ├── CSHelper.cs │ │ │ │ │ ├── CSRefactoring+Test.cs │ │ │ │ │ ├── CSRefactoring.cs │ │ │ │ │ ├── VBAnalyzer+Test.cs │ │ │ │ │ ├── VBAnalyzer.cs │ │ │ │ │ ├── VBCodeFix+Test.cs │ │ │ │ │ ├── VBCodeFix.cs │ │ │ │ │ ├── VBRefactoring+Test.cs │ │ │ │ │ └── VBRefactoring.cs │ │ │ │ └── Vsix │ │ │ │ ├── Deployment.csproj │ │ │ │ ├── Deployment.vstemplate │ │ │ │ └── source.extension.vsixmanifest │ │ └── VisualBasic │ │ │ ├── CodeRefactoring │ │ │ ├── Ref │ │ │ │ ├── CodeRefactoring.vbproj │ │ │ │ ├── CodeRefactoringProvider.vb │ │ │ │ └── VBCodeRefactoring.vstemplate │ │ │ └── Vsix │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ ├── Deployment.vbproj │ │ │ │ ├── Deployment.vstemplate │ │ │ │ └── source.extension.vsixmanifest │ │ │ ├── ConsoleApplication │ │ │ ├── CodeAnalysisConsole.ico │ │ │ ├── ConsoleApplication.vbproj │ │ │ ├── Module1.vb │ │ │ └── VBConsoleApplication.vstemplate │ │ │ └── Diagnostic │ │ │ ├── Analyzer │ │ │ ├── Diagnostic.vbproj │ │ │ ├── DiagnosticAnalyzer.vb │ │ │ ├── DiagnosticAnalyzer.vstemplate │ │ │ ├── Resources.Designer.vb │ │ │ └── Resources.resx │ │ │ ├── CodeFix │ │ │ ├── CodeFixProvider.vb │ │ │ ├── CodeFixProvider.vbproj │ │ │ ├── CodeFixProvider.vstemplate │ │ │ ├── CodeFixResources.Designer.vb │ │ │ └── CodeFixResources.resx │ │ │ ├── Package │ │ │ ├── Package.vbproj │ │ │ ├── Package.vstemplate │ │ │ ├── install.ps1 │ │ │ └── uninstall.ps1 │ │ │ ├── Test │ │ │ ├── CodeFixVerifier.Helper.vb │ │ │ ├── DiagnosticVerifier.Helper.vb │ │ │ ├── Test.vstemplate │ │ │ ├── UnitTestProject.vbproj │ │ │ ├── UnitTests.vb │ │ │ └── Verifiers │ │ │ │ ├── CSAnalyzer+Test.vb │ │ │ │ ├── CSAnalyzer.vb │ │ │ │ ├── CSCodeFix+Test.vb │ │ │ │ ├── CSCodeFix.vb │ │ │ │ ├── CSHelper.vb │ │ │ │ ├── CSRefactoring+Test.vb │ │ │ │ ├── CSRefactoring.vb │ │ │ │ ├── VBAnalyzer+Test.vb │ │ │ │ ├── VBAnalyzer.vb │ │ │ │ ├── VBCodeFix+Test.vb │ │ │ │ ├── VBCodeFix.vb │ │ │ │ ├── VBRefactoring+Test.vb │ │ │ │ └── VBRefactoring.vb │ │ │ └── Vsix │ │ │ ├── Deployment.vbproj │ │ │ ├── Deployment.vstemplate │ │ │ └── source.extension.vsixmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── launchSettings.json │ ├── Roslyn.SDK.csproj │ ├── VBDiagnostic.vstemplate │ ├── VBRef.vstemplate │ └── source.extension.vsixmanifest │ ├── SyntaxVisualizer │ ├── Roslyn.SyntaxVisualizer.Control │ │ ├── CancellationSeries.cs │ │ ├── ColorHelpers.cs │ │ ├── ColorPicker.xaml │ │ ├── ColorPicker.xaml.cs │ │ ├── ColorPickerViewModel.cs │ │ ├── ColorPickerWindow.xaml │ │ ├── ColorPickerWindow.xaml.cs │ │ ├── ControlExtensions.cs │ │ ├── DotNetFrameworkUtilities.cs │ │ ├── FontsAndColorsHelper.cs │ │ ├── HuePicker.xaml │ │ ├── HuePicker.xaml.cs │ │ ├── HueToColorConverter.cs │ │ ├── PercentConverter.cs │ │ ├── Roslyn.SyntaxVisualizer.Control.csproj │ │ ├── SaturationBrightnessPicker.xaml │ │ ├── SaturationBrightnessPicker.xaml.cs │ │ ├── SymbolDisplay │ │ │ ├── BasePropertyGridAdapter.cs │ │ │ └── SymbolPropertyGridAdapter.cs │ │ ├── SyntaxGraph.ico │ │ ├── SyntaxKindHelper.cs │ │ ├── SyntaxVisualizerControl.xaml │ │ ├── SyntaxVisualizerControl.xaml.cs │ │ └── TabStopPanel.cs │ ├── Roslyn.SyntaxVisualizer.DgmlHelper │ │ ├── ObjectInfoHelper.vb │ │ ├── Resources.resx │ │ ├── Roslyn.SyntaxVisualizer.DgmlHelper.vbproj │ │ ├── SyntaxDgmlHelper.vb │ │ ├── SyntaxKindHelper.vb │ │ └── xlf │ │ │ ├── Resources.cs.xlf │ │ │ ├── Resources.de.xlf │ │ │ ├── Resources.es.xlf │ │ │ ├── Resources.fr.xlf │ │ │ ├── Resources.it.xlf │ │ │ ├── Resources.ja.xlf │ │ │ ├── Resources.ko.xlf │ │ │ ├── Resources.pl.xlf │ │ │ ├── Resources.pt-BR.xlf │ │ │ ├── Resources.ru.xlf │ │ │ ├── Resources.tr.xlf │ │ │ ├── Resources.zh-Hans.xlf │ │ │ └── Resources.zh-Hant.xlf │ └── Roslyn.SyntaxVisualizer.Extension │ │ ├── GuidList.cs │ │ ├── HelperExtensionMethods.cs │ │ ├── PkgCmdIDList.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Resources.resx │ │ ├── Roslyn.SyntaxVisualizer.Extension.csproj │ │ ├── SyntaxTree.bmp │ │ ├── SyntaxTree.ico │ │ ├── SyntaxVisualizerContainer.xaml │ │ ├── SyntaxVisualizerContainer.xaml.cs │ │ ├── SyntaxVisualizerExtension.vsct │ │ ├── SyntaxVisualizerExtensionPackage.cs │ │ ├── SyntaxVisualizerToolWindow.cs │ │ ├── VSPackage.resx │ │ ├── source.extension.vsixmanifest │ │ └── xlf │ │ ├── Resources.cs.xlf │ │ ├── Resources.de.xlf │ │ ├── Resources.es.xlf │ │ ├── Resources.fr.xlf │ │ ├── Resources.it.xlf │ │ ├── Resources.ja.xlf │ │ ├── Resources.ko.xlf │ │ ├── Resources.pl.xlf │ │ ├── Resources.pt-BR.xlf │ │ ├── Resources.ru.xlf │ │ ├── Resources.tr.xlf │ │ ├── Resources.zh-Hans.xlf │ │ ├── Resources.zh-Hant.xlf │ │ ├── SyntaxVisualizerExtension.vsct.cs.xlf │ │ ├── SyntaxVisualizerExtension.vsct.de.xlf │ │ ├── SyntaxVisualizerExtension.vsct.es.xlf │ │ ├── SyntaxVisualizerExtension.vsct.fr.xlf │ │ ├── SyntaxVisualizerExtension.vsct.it.xlf │ │ ├── SyntaxVisualizerExtension.vsct.ja.xlf │ │ ├── SyntaxVisualizerExtension.vsct.ko.xlf │ │ ├── SyntaxVisualizerExtension.vsct.pl.xlf │ │ ├── SyntaxVisualizerExtension.vsct.pt-BR.xlf │ │ ├── SyntaxVisualizerExtension.vsct.ru.xlf │ │ ├── SyntaxVisualizerExtension.vsct.tr.xlf │ │ ├── SyntaxVisualizerExtension.vsct.zh-Hans.xlf │ │ ├── SyntaxVisualizerExtension.vsct.zh-Hant.xlf │ │ ├── VSPackage.cs.xlf │ │ ├── VSPackage.de.xlf │ │ ├── VSPackage.es.xlf │ │ ├── VSPackage.fr.xlf │ │ ├── VSPackage.it.xlf │ │ ├── VSPackage.ja.xlf │ │ ├── VSPackage.ko.xlf │ │ ├── VSPackage.pl.xlf │ │ ├── VSPackage.pt-BR.xlf │ │ ├── VSPackage.ru.xlf │ │ ├── VSPackage.tr.xlf │ │ ├── VSPackage.zh-Hans.xlf │ │ └── VSPackage.zh-Hant.xlf │ └── ThirdPartyNotices.rtf ├── stylecop.json ├── test.cmd └── tests ├── Microsoft.CodeAnalysis.Testing ├── Directory.Build.props ├── Directory.Build.targets ├── Microsoft.CodeAnalysis.Analyzer.Testing.UnitTests │ ├── AdditionalFilesTests.cs │ ├── AnalyzerConfigFilesTests.cs │ ├── AnalyzerTestTests.cs │ ├── AutoExclusionTests.cs │ ├── CompilerErrorTests.cs │ ├── DiagnosticLocationTests.cs │ ├── DiagnosticResultTests.cs │ ├── DiagnosticSuppressorTests.cs │ ├── MarkupParserTests.cs │ ├── MarkupTests.cs │ ├── MetadataReferenceTests.cs │ ├── Microsoft.CodeAnalysis.Analyzer.Testing.UnitTests.csproj │ ├── MultipleProjectsTests.cs │ ├── SourceGeneratorTests.cs │ ├── TestAnalyzers │ │ ├── CSharpAnalyzerTest`1.cs │ │ ├── CSharpAnalyzerWithSourceGeneratorTest`2.cs │ │ ├── CSharpSuppressorTest`2.cs │ │ ├── VisualBasicAnalyzerTest`1.cs │ │ └── VisualBasicAnalyzerWithSourceGeneratorTest`2.cs │ └── VerifierExtensionsTests.cs ├── Microsoft.CodeAnalysis.CSharp.Analyzer.Testing.UnitTests │ ├── Microsoft.CodeAnalysis.CSharp.Analyzer.Testing.UnitTests.csproj │ └── PlaceholderTest.cs ├── Microsoft.CodeAnalysis.CSharp.CodeFix.Testing.UnitTests │ ├── Microsoft.CodeAnalysis.CSharp.CodeFix.Testing.UnitTests.csproj │ └── PlaceholderTest.cs ├── Microsoft.CodeAnalysis.CSharp.CodeRefactoring.Testing.UnitTests │ ├── Microsoft.CodeAnalysis.CSharp.CodeRefactoring.Testing.UnitTests.csproj │ └── PlaceholderTest.cs ├── Microsoft.CodeAnalysis.CSharp.SourceGenerators.Testing.UnitTests │ ├── Microsoft.CodeAnalysis.CSharp.SourceGenerators.Testing.UnitTests.csproj │ └── PlaceholderTest.cs ├── Microsoft.CodeAnalysis.CodeFix.Testing.UnitTests │ ├── AdditionalFilesFixTests.cs │ ├── AnalyzerConfigFilesFixTests.cs │ ├── CodeFixIterationTests.cs │ ├── CodeFixValidationTests.cs │ ├── FixMultipleProjectsTests.cs │ ├── IncludeDiagnosticsMentionedByCodeFixTests.cs │ ├── Microsoft.CodeAnalysis.CodeFix.Testing.UnitTests.csproj │ ├── MissingCodeFixMarkupTests.cs │ ├── MissingCodeFixTests.cs │ ├── MultipleCodeFixesTests.cs │ ├── NonLocalDiagnosticsTests.cs │ ├── SourceGeneratorTests.cs │ └── TestFixes │ │ ├── CSharpCodeFixTest`2.cs │ │ ├── CSharpCodeFixWithSourceGeneratorTest`3.cs │ │ ├── VisualBasicCodeFixTest`2.cs │ │ └── VisualBasicCodeFixWithSourceGeneratorTest`3.cs ├── Microsoft.CodeAnalysis.CodeRefactoring.Testing.UnitTests │ ├── Microsoft.CodeAnalysis.CodeRefactoring.Testing.UnitTests.csproj │ └── RefactoringValidationTests.cs ├── Microsoft.CodeAnalysis.SourceGenerators.Testing.UnitTests │ ├── Microsoft.CodeAnalysis.SourceGenerators.Testing.UnitTests.csproj │ └── SourceGeneratorValidationTests.cs ├── Microsoft.CodeAnalysis.Testing.Utilities │ ├── Microsoft.CodeAnalysis.Testing.Utilities.csproj │ ├── StringExtensions.cs │ ├── TestAnalyzers │ │ ├── AbstractHighlightBracesAnalyzer.cs │ │ ├── AbstractHighlightTokensAnalyzer.cs │ │ ├── HighlightBracesAnalyzer.cs │ │ └── LiteralUnderFiveAnalyzer.cs │ ├── TestFixes │ │ └── IncrementFix.cs │ ├── TestGenerators │ │ ├── AddEmptyFile.cs │ │ ├── AddEmptyFileWithDiagnostic.cs │ │ ├── AddFileWithCompileError.cs │ │ └── AddTwoEmptyFiles.cs │ └── WorkItemAttribute.cs ├── Microsoft.CodeAnalysis.VisualBasic.Analyzer.Testing.UnitTests │ ├── Microsoft.CodeAnalysis.VisualBasic.Analyzer.Testing.UnitTests.vbproj │ └── PlaceholderTest.vb ├── Microsoft.CodeAnalysis.VisualBasic.CodeFix.Testing.UnitTests │ ├── Microsoft.CodeAnalysis.VisualBasic.CodeFix.Testing.UnitTests.vbproj │ └── PlaceholderTest.vb ├── Microsoft.CodeAnalysis.VisualBasic.CodeRefactoring.Testing.UnitTests │ ├── Microsoft.CodeAnalysis.VisualBasic.CodeRefactoring.Testing.UnitTests.vbproj │ └── PlaceholderTest.vb └── Microsoft.CodeAnalysis.VisualBasic.SourceGenerators.Testing.UnitTests │ ├── Microsoft.CodeAnalysis.VisualBasic.SourceGenerators.Testing.UnitTests.vbproj │ └── PlaceholderTest.vb └── VisualStudio.Roslyn.SDK ├── Directory.Build.props ├── Directory.Build.targets ├── Roslyn.SDK.IntegrationTests ├── AbstractIntegrationTest.cs ├── CreateProjectTests.cs ├── InProcess │ ├── EditorInProcess.cs │ ├── ErrorListExtensions.cs │ ├── ErrorListInProcess.cs │ └── SolutionExplorerInProcess.cs ├── Roslyn.SDK.IntegrationTests.csproj ├── WellKnownProjectTemplates.cs └── XUnitAssemblyInfo.cs └── Roslyn.SDK.UnitTests ├── ResourceLocationTests.cs └── Roslyn.SDK.UnitTests.csproj /.config/tsaoptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/.config/tsaoptions.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/backport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/.github/workflows/backport.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.globalconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/.globalconfig -------------------------------------------------------------------------------- /.vsts-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/.vsts-ci.yml -------------------------------------------------------------------------------- /.vsts-pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/.vsts-pr.yaml -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/README.md -------------------------------------------------------------------------------- /Roslyn-SDK.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/Roslyn-SDK.sln -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Samples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/Samples.sln -------------------------------------------------------------------------------- /eng/Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/Build.props -------------------------------------------------------------------------------- /eng/PRBuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/PRBuild.cmd -------------------------------------------------------------------------------- /eng/Publishing.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/Publishing.props -------------------------------------------------------------------------------- /eng/Signing.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/Signing.props -------------------------------------------------------------------------------- /eng/TSAConfig.gdntsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/TSAConfig.gdntsa -------------------------------------------------------------------------------- /eng/Version.Details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/Version.Details.xml -------------------------------------------------------------------------------- /eng/Versions.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/Versions.props -------------------------------------------------------------------------------- /eng/common/BuildConfiguration/build-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/BuildConfiguration/build-configuration.json -------------------------------------------------------------------------------- /eng/common/CIBuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/CIBuild.cmd -------------------------------------------------------------------------------- /eng/common/PSScriptAnalyzerSettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/PSScriptAnalyzerSettings.psd1 -------------------------------------------------------------------------------- /eng/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/README.md -------------------------------------------------------------------------------- /eng/common/SetupNugetSources.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/SetupNugetSources.ps1 -------------------------------------------------------------------------------- /eng/common/SetupNugetSources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/SetupNugetSources.sh -------------------------------------------------------------------------------- /eng/common/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/build.ps1 -------------------------------------------------------------------------------- /eng/common/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/build.sh -------------------------------------------------------------------------------- /eng/common/cibuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cibuild.sh -------------------------------------------------------------------------------- /eng/common/cross/arm/sources.list.bionic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/arm/sources.list.bionic -------------------------------------------------------------------------------- /eng/common/cross/arm/sources.list.focal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/arm/sources.list.focal -------------------------------------------------------------------------------- /eng/common/cross/arm/sources.list.jammy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/arm/sources.list.jammy -------------------------------------------------------------------------------- /eng/common/cross/arm/sources.list.jessie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/arm/sources.list.jessie -------------------------------------------------------------------------------- /eng/common/cross/arm/sources.list.xenial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/arm/sources.list.xenial -------------------------------------------------------------------------------- /eng/common/cross/arm/sources.list.zesty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/arm/sources.list.zesty -------------------------------------------------------------------------------- /eng/common/cross/arm/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/arm/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/arm64/sources.list.bionic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/arm64/sources.list.bionic -------------------------------------------------------------------------------- /eng/common/cross/arm64/sources.list.buster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/arm64/sources.list.buster -------------------------------------------------------------------------------- /eng/common/cross/arm64/sources.list.focal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/arm64/sources.list.focal -------------------------------------------------------------------------------- /eng/common/cross/arm64/sources.list.jammy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/arm64/sources.list.jammy -------------------------------------------------------------------------------- /eng/common/cross/arm64/sources.list.stretch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/arm64/sources.list.stretch -------------------------------------------------------------------------------- /eng/common/cross/arm64/sources.list.xenial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/arm64/sources.list.xenial -------------------------------------------------------------------------------- /eng/common/cross/arm64/sources.list.zesty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/arm64/sources.list.zesty -------------------------------------------------------------------------------- /eng/common/cross/arm64/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/arm64/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/armel/armel.jessie.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/armel/armel.jessie.patch -------------------------------------------------------------------------------- /eng/common/cross/armel/sources.list.jessie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/armel/sources.list.jessie -------------------------------------------------------------------------------- /eng/common/cross/armel/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/armel/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/armv6/sources.list.buster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/armv6/sources.list.buster -------------------------------------------------------------------------------- /eng/common/cross/build-android-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/build-android-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/build-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/build-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/ppc64le/sources.list.bionic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/ppc64le/sources.list.bionic -------------------------------------------------------------------------------- /eng/common/cross/riscv64/sources.list.sid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/riscv64/sources.list.sid -------------------------------------------------------------------------------- /eng/common/cross/s390x/sources.list.bionic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/s390x/sources.list.bionic -------------------------------------------------------------------------------- /eng/common/cross/tizen-build-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/tizen-build-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/tizen-fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/tizen-fetch.sh -------------------------------------------------------------------------------- /eng/common/cross/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/toolchain.cmake -------------------------------------------------------------------------------- /eng/common/cross/x64/sources.list.bionic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/x64/sources.list.bionic -------------------------------------------------------------------------------- /eng/common/cross/x64/sources.list.xenial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/x64/sources.list.xenial -------------------------------------------------------------------------------- /eng/common/cross/x64/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/x64/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/x86/sources.list.bionic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/x86/sources.list.bionic -------------------------------------------------------------------------------- /eng/common/cross/x86/sources.list.focal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/x86/sources.list.focal -------------------------------------------------------------------------------- /eng/common/cross/x86/sources.list.jammy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/x86/sources.list.jammy -------------------------------------------------------------------------------- /eng/common/cross/x86/sources.list.xenial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/x86/sources.list.xenial -------------------------------------------------------------------------------- /eng/common/cross/x86/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/cross/x86/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/darc-init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/darc-init.ps1 -------------------------------------------------------------------------------- /eng/common/darc-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/darc-init.sh -------------------------------------------------------------------------------- /eng/common/dotnet-install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/dotnet-install.cmd -------------------------------------------------------------------------------- /eng/common/dotnet-install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/dotnet-install.ps1 -------------------------------------------------------------------------------- /eng/common/dotnet-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/dotnet-install.sh -------------------------------------------------------------------------------- /eng/common/enable-cross-org-publishing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/enable-cross-org-publishing.ps1 -------------------------------------------------------------------------------- /eng/common/generate-locproject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/generate-locproject.ps1 -------------------------------------------------------------------------------- /eng/common/generate-sbom-prep.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/generate-sbom-prep.ps1 -------------------------------------------------------------------------------- /eng/common/generate-sbom-prep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/generate-sbom-prep.sh -------------------------------------------------------------------------------- /eng/common/helixpublish.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/helixpublish.proj -------------------------------------------------------------------------------- /eng/common/init-tools-native.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/init-tools-native.cmd -------------------------------------------------------------------------------- /eng/common/init-tools-native.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/init-tools-native.ps1 -------------------------------------------------------------------------------- /eng/common/init-tools-native.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/init-tools-native.sh -------------------------------------------------------------------------------- /eng/common/internal-feed-operations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/internal-feed-operations.ps1 -------------------------------------------------------------------------------- /eng/common/internal-feed-operations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/internal-feed-operations.sh -------------------------------------------------------------------------------- /eng/common/internal/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/internal/Directory.Build.props -------------------------------------------------------------------------------- /eng/common/internal/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/internal/NuGet.config -------------------------------------------------------------------------------- /eng/common/internal/Tools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/internal/Tools.csproj -------------------------------------------------------------------------------- /eng/common/loc/P22DotNetHtmlLocalization.lss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/loc/P22DotNetHtmlLocalization.lss -------------------------------------------------------------------------------- /eng/common/msbuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/msbuild.ps1 -------------------------------------------------------------------------------- /eng/common/msbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/msbuild.sh -------------------------------------------------------------------------------- /eng/common/native/CommonLibrary.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/native/CommonLibrary.psm1 -------------------------------------------------------------------------------- /eng/common/native/common-library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/native/common-library.sh -------------------------------------------------------------------------------- /eng/common/native/init-compiler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/native/init-compiler.sh -------------------------------------------------------------------------------- /eng/common/native/init-distro-rid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/native/init-distro-rid.sh -------------------------------------------------------------------------------- /eng/common/native/init-os-and-arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/native/init-os-and-arch.sh -------------------------------------------------------------------------------- /eng/common/native/install-cmake-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/native/install-cmake-test.sh -------------------------------------------------------------------------------- /eng/common/native/install-cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/native/install-cmake.sh -------------------------------------------------------------------------------- /eng/common/native/install-tool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/native/install-tool.ps1 -------------------------------------------------------------------------------- /eng/common/pipeline-logging-functions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/pipeline-logging-functions.ps1 -------------------------------------------------------------------------------- /eng/common/pipeline-logging-functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/pipeline-logging-functions.sh -------------------------------------------------------------------------------- /eng/common/post-build/add-build-to-channel.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/post-build/add-build-to-channel.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/check-channel-consistency.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/post-build/check-channel-consistency.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/nuget-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/post-build/nuget-validation.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/nuget-verification.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/post-build/nuget-verification.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/post-build-utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/post-build/post-build-utils.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/publish-using-darc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/post-build/publish-using-darc.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/sourcelink-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/post-build/sourcelink-validation.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/symbols-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/post-build/symbols-validation.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/trigger-subscriptions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/post-build/trigger-subscriptions.ps1 -------------------------------------------------------------------------------- /eng/common/retain-build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/retain-build.ps1 -------------------------------------------------------------------------------- /eng/common/sdk-task.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/sdk-task.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/sdl/NuGet.config -------------------------------------------------------------------------------- /eng/common/sdl/configure-sdl-tool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/sdl/configure-sdl-tool.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/execute-all-sdl-tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/sdl/execute-all-sdl-tools.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/extract-artifact-archives.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/sdl/extract-artifact-archives.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/extract-artifact-packages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/sdl/extract-artifact-packages.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/init-sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/sdl/init-sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/sdl/packages.config -------------------------------------------------------------------------------- /eng/common/sdl/run-sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/sdl/run-sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/sdl/sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/trim-assets-version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/sdl/trim-assets-version.ps1 -------------------------------------------------------------------------------- /eng/common/templates-official/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates-official/job/job.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates-official/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates-official/job/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates-official/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/source-index-stage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates-official/job/source-index-stage1.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates-official/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates-official/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates-official/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/post-build/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates-official/post-build/common-variables.yml -------------------------------------------------------------------------------- /eng/common/templates-official/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates-official/post-build/post-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/post-build/setup-maestro-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates-official/post-build/setup-maestro-vars.yml -------------------------------------------------------------------------------- /eng/common/templates-official/post-build/trigger-subscription.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates-official/post-build/trigger-subscription.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/add-build-to-channel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates-official/steps/add-build-to-channel.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/build-reason.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates-official/steps/build-reason.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/component-governance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates-official/steps/component-governance.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/enable-internal-runtimes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates-official/steps/enable-internal-runtimes.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/execute-codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates-official/steps/execute-codeql.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/execute-sdl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates-official/steps/execute-sdl.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates-official/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/get-delegation-sas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates-official/steps/get-delegation-sas.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/get-federated-access-token.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates-official/steps/get-federated-access-token.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates-official/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates-official/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates-official/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates-official/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/variables/pool-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates-official/variables/pool-providers.yml -------------------------------------------------------------------------------- /eng/common/templates-official/variables/sdl-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates-official/variables/sdl-variables.yml -------------------------------------------------------------------------------- /eng/common/templates/job/execute-sdl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates/job/execute-sdl.yml -------------------------------------------------------------------------------- /eng/common/templates/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates/job/job.yml -------------------------------------------------------------------------------- /eng/common/templates/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/templates/job/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates/job/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/templates/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/job/source-index-stage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates/job/source-index-stage1.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates/post-build/common-variables.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates/post-build/post-build.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/setup-maestro-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates/post-build/setup-maestro-vars.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/trigger-subscription.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates/post-build/trigger-subscription.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/add-build-to-channel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates/steps/add-build-to-channel.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/build-reason.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates/steps/build-reason.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/component-governance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates/steps/component-governance.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/enable-internal-runtimes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates/steps/enable-internal-runtimes.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/execute-codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates/steps/execute-codeql.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/execute-sdl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates/steps/execute-sdl.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/get-delegation-sas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates/steps/get-delegation-sas.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/get-federated-access-token.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates/steps/get-federated-access-token.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/run-on-unix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates/steps/run-on-unix.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/run-on-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates/steps/run-on-windows.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/run-script-ifequalelse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates/steps/run-script-ifequalelse.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/telemetry-end.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates/steps/telemetry-end.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/telemetry-start.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates/steps/telemetry-start.yml -------------------------------------------------------------------------------- /eng/common/templates/variables/pool-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates/variables/pool-providers.yml -------------------------------------------------------------------------------- /eng/common/templates/variables/sdl-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/templates/variables/sdl-variables.yml -------------------------------------------------------------------------------- /eng/common/tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/tools.ps1 -------------------------------------------------------------------------------- /eng/common/tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/eng/common/tools.sh -------------------------------------------------------------------------------- /es-metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/es-metadata.yml -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/global.json -------------------------------------------------------------------------------- /restore.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/restore.cmd -------------------------------------------------------------------------------- /samples/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/.editorconfig -------------------------------------------------------------------------------- /samples/CSharp/APISamples/APISamples.CSharp.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/APISamples/APISamples.CSharp.UnitTests.csproj -------------------------------------------------------------------------------- /samples/CSharp/APISamples/Compilations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/APISamples/Compilations.cs -------------------------------------------------------------------------------- /samples/CSharp/APISamples/FAQ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/APISamples/FAQ.cs -------------------------------------------------------------------------------- /samples/CSharp/APISamples/Parsing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/APISamples/Parsing.cs -------------------------------------------------------------------------------- /samples/CSharp/APISamples/SymbolsAndSemantics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/APISamples/SymbolsAndSemantics.cs -------------------------------------------------------------------------------- /samples/CSharp/APISamples/SyntaxTrees.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/APISamples/SyntaxTrees.cs -------------------------------------------------------------------------------- /samples/CSharp/Analyzers/Analyzers.Implementation/AdditionalFileAnalyzers/SimpleAdditionalFileAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/Analyzers/Analyzers.Implementation/AdditionalFileAnalyzers/SimpleAdditionalFileAnalyzer.cs -------------------------------------------------------------------------------- /samples/CSharp/Analyzers/Analyzers.Implementation/AdditionalFileAnalyzers/XmlAdditionalFileAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/Analyzers/Analyzers.Implementation/AdditionalFileAnalyzers/XmlAdditionalFileAnalyzer.cs -------------------------------------------------------------------------------- /samples/CSharp/Analyzers/Analyzers.Implementation/Analyzers.CSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/Analyzers/Analyzers.Implementation/Analyzers.CSharp.csproj -------------------------------------------------------------------------------- /samples/CSharp/Analyzers/Analyzers.Implementation/DiagnosticCategories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/Analyzers/Analyzers.Implementation/DiagnosticCategories.cs -------------------------------------------------------------------------------- /samples/CSharp/Analyzers/Analyzers.Implementation/DiagnosticIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/Analyzers/Analyzers.Implementation/DiagnosticIds.cs -------------------------------------------------------------------------------- /samples/CSharp/Analyzers/Analyzers.Implementation/StatefulAnalyzers/CodeBlockStartedAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/Analyzers/Analyzers.Implementation/StatefulAnalyzers/CodeBlockStartedAnalyzer.cs -------------------------------------------------------------------------------- /samples/CSharp/Analyzers/Analyzers.Implementation/StatefulAnalyzers/CompilationStartedAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/Analyzers/Analyzers.Implementation/StatefulAnalyzers/CompilationStartedAnalyzer.cs -------------------------------------------------------------------------------- /samples/CSharp/Analyzers/Analyzers.Implementation/StatelessAnalyzers/CodeBlockAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/Analyzers/Analyzers.Implementation/StatelessAnalyzers/CodeBlockAnalyzer.cs -------------------------------------------------------------------------------- /samples/CSharp/Analyzers/Analyzers.Implementation/StatelessAnalyzers/CompilationAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/Analyzers/Analyzers.Implementation/StatelessAnalyzers/CompilationAnalyzer.cs -------------------------------------------------------------------------------- /samples/CSharp/Analyzers/Analyzers.Implementation/StatelessAnalyzers/IOperationAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/Analyzers/Analyzers.Implementation/StatelessAnalyzers/IOperationAnalyzer.cs -------------------------------------------------------------------------------- /samples/CSharp/Analyzers/Analyzers.Implementation/StatelessAnalyzers/SemanticModelAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/Analyzers/Analyzers.Implementation/StatelessAnalyzers/SemanticModelAnalyzer.cs -------------------------------------------------------------------------------- /samples/CSharp/Analyzers/Analyzers.Implementation/StatelessAnalyzers/SymbolAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/Analyzers/Analyzers.Implementation/StatelessAnalyzers/SymbolAnalyzer.cs -------------------------------------------------------------------------------- /samples/CSharp/Analyzers/Analyzers.Implementation/StatelessAnalyzers/SyntaxNodeAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/Analyzers/Analyzers.Implementation/StatelessAnalyzers/SyntaxNodeAnalyzer.cs -------------------------------------------------------------------------------- /samples/CSharp/Analyzers/Analyzers.Implementation/StatelessAnalyzers/SyntaxTreeAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/Analyzers/Analyzers.Implementation/StatelessAnalyzers/SyntaxTreeAnalyzer.cs -------------------------------------------------------------------------------- /samples/CSharp/Analyzers/Analyzers.Implementation/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/Analyzers/Analyzers.Implementation/tools/install.ps1 -------------------------------------------------------------------------------- /samples/CSharp/Analyzers/Analyzers.Implementation/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/Analyzers/Analyzers.Implementation/tools/uninstall.ps1 -------------------------------------------------------------------------------- /samples/CSharp/Analyzers/Analyzers.Test/Analyzers.CSharp.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/Analyzers/Analyzers.Test/Analyzers.CSharp.UnitTests.csproj -------------------------------------------------------------------------------- /samples/CSharp/Analyzers/Analyzers.Test/Tests/CodeBlockAnalyzerUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/Analyzers/Analyzers.Test/Tests/CodeBlockAnalyzerUnitTests.cs -------------------------------------------------------------------------------- /samples/CSharp/Analyzers/Analyzers.Test/Tests/CodeBlockStartedAnalyzerUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/Analyzers/Analyzers.Test/Tests/CodeBlockStartedAnalyzerUnitTests.cs -------------------------------------------------------------------------------- /samples/CSharp/Analyzers/Analyzers.Test/Tests/CompilationAnalyzerUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/Analyzers/Analyzers.Test/Tests/CompilationAnalyzerUnitTests.cs -------------------------------------------------------------------------------- /samples/CSharp/Analyzers/Analyzers.Test/Tests/CompilationStartedAnalyzerUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/Analyzers/Analyzers.Test/Tests/CompilationStartedAnalyzerUnitTests.cs -------------------------------------------------------------------------------- /samples/CSharp/Analyzers/Analyzers.Test/Tests/SemanticModelAnalyzerUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/Analyzers/Analyzers.Test/Tests/SemanticModelAnalyzerUnitTests.cs -------------------------------------------------------------------------------- /samples/CSharp/Analyzers/Analyzers.Test/Tests/SymbolAnalyzerUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/Analyzers/Analyzers.Test/Tests/SymbolAnalyzerUnitTests.cs -------------------------------------------------------------------------------- /samples/CSharp/Analyzers/Analyzers.Test/Tests/SyntaxNodeAnalyzerUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/Analyzers/Analyzers.Test/Tests/SyntaxNodeAnalyzerUnitTests.cs -------------------------------------------------------------------------------- /samples/CSharp/Analyzers/Analyzers.Test/Tests/SyntaxTreeAnalyzerUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/Analyzers/Analyzers.Test/Tests/SyntaxTreeAnalyzerUnitTests.cs -------------------------------------------------------------------------------- /samples/CSharp/Analyzers/Analyzers.Vsix/Analyzers.CSharp.Vsix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/Analyzers/Analyzers.Vsix/Analyzers.CSharp.Vsix.csproj -------------------------------------------------------------------------------- /samples/CSharp/Analyzers/Analyzers.Vsix/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/Analyzers/Analyzers.Vsix/source.extension.vsixmanifest -------------------------------------------------------------------------------- /samples/CSharp/CSharpToVisualBasicConverter/CSharpToVisualBasicConverter.Lib/Cleanup/CurlyCleanup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/CSharpToVisualBasicConverter/CSharpToVisualBasicConverter.Lib/Cleanup/CurlyCleanup.cs -------------------------------------------------------------------------------- /samples/CSharp/CSharpToVisualBasicConverter/CSharpToVisualBasicConverter.Lib/Cleanup/NewLineCleanup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/CSharpToVisualBasicConverter/CSharpToVisualBasicConverter.Lib/Cleanup/NewLineCleanup.cs -------------------------------------------------------------------------------- /samples/CSharp/CSharpToVisualBasicConverter/CSharpToVisualBasicConverter.Lib/Cleanup/WhiteSpaceCleanup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/CSharpToVisualBasicConverter/CSharpToVisualBasicConverter.Lib/Cleanup/WhiteSpaceCleanup.cs -------------------------------------------------------------------------------- /samples/CSharp/CSharpToVisualBasicConverter/CSharpToVisualBasicConverter.Lib/Converting/Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/CSharpToVisualBasicConverter/CSharpToVisualBasicConverter.Lib/Converting/Converter.cs -------------------------------------------------------------------------------- /samples/CSharp/CSharpToVisualBasicConverter/CSharpToVisualBasicConverter.Test/TestFiles/AllConstructs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/CSharpToVisualBasicConverter/CSharpToVisualBasicConverter.Test/TestFiles/AllConstructs.cs -------------------------------------------------------------------------------- /samples/CSharp/CSharpToVisualBasicConverter/CSharpToVisualBasicConverter.Test/TestFiles/AllConstructs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/CSharpToVisualBasicConverter/CSharpToVisualBasicConverter.Test/TestFiles/AllConstructs.txt -------------------------------------------------------------------------------- /samples/CSharp/ConsoleClassifier/ConsoleClassifier.CSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/ConsoleClassifier/ConsoleClassifier.CSharp.csproj -------------------------------------------------------------------------------- /samples/CSharp/ConsoleClassifier/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/ConsoleClassifier/Program.cs -------------------------------------------------------------------------------- /samples/CSharp/ConsoleClassifier/Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/ConsoleClassifier/Range.cs -------------------------------------------------------------------------------- /samples/CSharp/ConvertToAutoProperty/ConvertToAutoProperty.Implementation/PropertyRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/ConvertToAutoProperty/ConvertToAutoProperty.Implementation/PropertyRewriter.cs -------------------------------------------------------------------------------- /samples/CSharp/ConvertToAutoProperty/ConvertToAutoProperty.Vsix/ConvertToAutoProperty.CSharp.Vsix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/ConvertToAutoProperty/ConvertToAutoProperty.Vsix/ConvertToAutoProperty.CSharp.Vsix.csproj -------------------------------------------------------------------------------- /samples/CSharp/ConvertToAutoProperty/ConvertToAutoProperty.Vsix/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/ConvertToAutoProperty/ConvertToAutoProperty.Vsix/source.extension.vsixmanifest -------------------------------------------------------------------------------- /samples/CSharp/ConvertToConditional/ConvertToConditional.Implementation/ConditionalAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/ConvertToConditional/ConvertToConditional.Implementation/ConditionalAnalyzer.cs -------------------------------------------------------------------------------- /samples/CSharp/ConvertToConditional/ConvertToConditional.Implementation/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/ConvertToConditional/ConvertToConditional.Implementation/Extensions.cs -------------------------------------------------------------------------------- /samples/CSharp/ConvertToConditional/ConvertToConditional.Implementation/ReturnConditionalAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/ConvertToConditional/ConvertToConditional.Implementation/ReturnConditionalAnalyzer.cs -------------------------------------------------------------------------------- /samples/CSharp/ConvertToConditional/ConvertToConditional.Implementation/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/ConvertToConditional/ConvertToConditional.Implementation/tools/install.ps1 -------------------------------------------------------------------------------- /samples/CSharp/ConvertToConditional/ConvertToConditional.Implementation/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/ConvertToConditional/ConvertToConditional.Implementation/tools/uninstall.ps1 -------------------------------------------------------------------------------- /samples/CSharp/ConvertToConditional/ConvertToConditional.Test/ConvertToConditionalUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/ConvertToConditional/ConvertToConditional.Test/ConvertToConditionalUnitTests.cs -------------------------------------------------------------------------------- /samples/CSharp/ConvertToConditional/ConvertToConditional.Vsix/ConvertToConditional.CSharp.Vsix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/ConvertToConditional/ConvertToConditional.Vsix/ConvertToConditional.CSharp.Vsix.csproj -------------------------------------------------------------------------------- /samples/CSharp/ConvertToConditional/ConvertToConditional.Vsix/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/ConvertToConditional/ConvertToConditional.Vsix/source.extension.vsixmanifest -------------------------------------------------------------------------------- /samples/CSharp/FormatSolution/FormatSolution.CSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/FormatSolution/FormatSolution.CSharp.csproj -------------------------------------------------------------------------------- /samples/CSharp/FormatSolution/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/FormatSolution/Program.cs -------------------------------------------------------------------------------- /samples/CSharp/ImplementNotifyPropertyChanged/ImplementNotifyPropertyChanged/CodeGeneration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/ImplementNotifyPropertyChanged/ImplementNotifyPropertyChanged/CodeGeneration.cs -------------------------------------------------------------------------------- /samples/CSharp/ImplementNotifyPropertyChanged/ImplementNotifyPropertyChanged/ExpandablePropertyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/ImplementNotifyPropertyChanged/ImplementNotifyPropertyChanged/ExpandablePropertyInfo.cs -------------------------------------------------------------------------------- /samples/CSharp/ImplementNotifyPropertyChanged/ImplementNotifyPropertyChanged/ExpansionChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/ImplementNotifyPropertyChanged/ImplementNotifyPropertyChanged/ExpansionChecker.cs -------------------------------------------------------------------------------- /samples/CSharp/MakeConst/MakeConst.Implementation/MakeConst.CSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/MakeConst/MakeConst.Implementation/MakeConst.CSharp.csproj -------------------------------------------------------------------------------- /samples/CSharp/MakeConst/MakeConst.Implementation/MakeConstAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/MakeConst/MakeConst.Implementation/MakeConstAnalyzer.cs -------------------------------------------------------------------------------- /samples/CSharp/MakeConst/MakeConst.Implementation/MakeConstCodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/MakeConst/MakeConst.Implementation/MakeConstCodeFixProvider.cs -------------------------------------------------------------------------------- /samples/CSharp/MakeConst/MakeConst.Implementation/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/MakeConst/MakeConst.Implementation/tools/install.ps1 -------------------------------------------------------------------------------- /samples/CSharp/MakeConst/MakeConst.Implementation/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/MakeConst/MakeConst.Implementation/tools/uninstall.ps1 -------------------------------------------------------------------------------- /samples/CSharp/MakeConst/MakeConst.Vsix/MakeConst.CSharp.Vsix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/MakeConst/MakeConst.Vsix/MakeConst.CSharp.Vsix.csproj -------------------------------------------------------------------------------- /samples/CSharp/MakeConst/MakeConst.Vsix/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/MakeConst/MakeConst.Vsix/source.extension.vsixmanifest -------------------------------------------------------------------------------- /samples/CSharp/RefOutModifier/RefOutModifier.Implementation/AddOutOrRefCodeAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/RefOutModifier/RefOutModifier.Implementation/AddOutOrRefCodeAction.cs -------------------------------------------------------------------------------- /samples/CSharp/RefOutModifier/RefOutModifier.Implementation/ApplicableActionFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/RefOutModifier/RefOutModifier.Implementation/ApplicableActionFinder.cs -------------------------------------------------------------------------------- /samples/CSharp/RefOutModifier/RefOutModifier.Implementation/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/RefOutModifier/RefOutModifier.Implementation/Extensions.cs -------------------------------------------------------------------------------- /samples/CSharp/RefOutModifier/RefOutModifier.Implementation/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/RefOutModifier/RefOutModifier.Implementation/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /samples/CSharp/RefOutModifier/RefOutModifier.Implementation/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/RefOutModifier/RefOutModifier.Implementation/Properties/Resources.resx -------------------------------------------------------------------------------- /samples/CSharp/RefOutModifier/RefOutModifier.Implementation/Properties/xlf/Resources.cs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/RefOutModifier/RefOutModifier.Implementation/Properties/xlf/Resources.cs.xlf -------------------------------------------------------------------------------- /samples/CSharp/RefOutModifier/RefOutModifier.Implementation/Properties/xlf/Resources.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/RefOutModifier/RefOutModifier.Implementation/Properties/xlf/Resources.de.xlf -------------------------------------------------------------------------------- /samples/CSharp/RefOutModifier/RefOutModifier.Implementation/Properties/xlf/Resources.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/RefOutModifier/RefOutModifier.Implementation/Properties/xlf/Resources.es.xlf -------------------------------------------------------------------------------- /samples/CSharp/RefOutModifier/RefOutModifier.Implementation/Properties/xlf/Resources.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/RefOutModifier/RefOutModifier.Implementation/Properties/xlf/Resources.fr.xlf -------------------------------------------------------------------------------- /samples/CSharp/RefOutModifier/RefOutModifier.Implementation/Properties/xlf/Resources.it.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/RefOutModifier/RefOutModifier.Implementation/Properties/xlf/Resources.it.xlf -------------------------------------------------------------------------------- /samples/CSharp/RefOutModifier/RefOutModifier.Implementation/Properties/xlf/Resources.ja.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/RefOutModifier/RefOutModifier.Implementation/Properties/xlf/Resources.ja.xlf -------------------------------------------------------------------------------- /samples/CSharp/RefOutModifier/RefOutModifier.Implementation/Properties/xlf/Resources.ko.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/RefOutModifier/RefOutModifier.Implementation/Properties/xlf/Resources.ko.xlf -------------------------------------------------------------------------------- /samples/CSharp/RefOutModifier/RefOutModifier.Implementation/Properties/xlf/Resources.pl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/RefOutModifier/RefOutModifier.Implementation/Properties/xlf/Resources.pl.xlf -------------------------------------------------------------------------------- /samples/CSharp/RefOutModifier/RefOutModifier.Implementation/Properties/xlf/Resources.pt-BR.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/RefOutModifier/RefOutModifier.Implementation/Properties/xlf/Resources.pt-BR.xlf -------------------------------------------------------------------------------- /samples/CSharp/RefOutModifier/RefOutModifier.Implementation/Properties/xlf/Resources.ru.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/RefOutModifier/RefOutModifier.Implementation/Properties/xlf/Resources.ru.xlf -------------------------------------------------------------------------------- /samples/CSharp/RefOutModifier/RefOutModifier.Implementation/Properties/xlf/Resources.tr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/RefOutModifier/RefOutModifier.Implementation/Properties/xlf/Resources.tr.xlf -------------------------------------------------------------------------------- /samples/CSharp/RefOutModifier/RefOutModifier.Implementation/Properties/xlf/Resources.zh-Hans.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/RefOutModifier/RefOutModifier.Implementation/Properties/xlf/Resources.zh-Hans.xlf -------------------------------------------------------------------------------- /samples/CSharp/RefOutModifier/RefOutModifier.Implementation/Properties/xlf/Resources.zh-Hant.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/RefOutModifier/RefOutModifier.Implementation/Properties/xlf/Resources.zh-Hant.xlf -------------------------------------------------------------------------------- /samples/CSharp/RefOutModifier/RefOutModifier.Implementation/RefOutModifier.CSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/RefOutModifier/RefOutModifier.Implementation/RefOutModifier.CSharp.csproj -------------------------------------------------------------------------------- /samples/CSharp/RefOutModifier/RefOutModifier.Implementation/RefOutModifierCodeRefactoringProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/RefOutModifier/RefOutModifier.Implementation/RefOutModifierCodeRefactoringProvider.cs -------------------------------------------------------------------------------- /samples/CSharp/RefOutModifier/RefOutModifier.Implementation/RemoveOutOrRefCodeAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/RefOutModifier/RefOutModifier.Implementation/RemoveOutOrRefCodeAction.cs -------------------------------------------------------------------------------- /samples/CSharp/RefOutModifier/RefOutModifier.Vsix/RefOutModifier.CSharp.Vsix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/RefOutModifier/RefOutModifier.Vsix/RefOutModifier.CSharp.Vsix.csproj -------------------------------------------------------------------------------- /samples/CSharp/RefOutModifier/RefOutModifier.Vsix/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/RefOutModifier/RefOutModifier.Vsix/source.extension.vsixmanifest -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/App.config -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/App.xaml -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/App.xaml.cs -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Behaviors/MouseDoubleClickBehaviors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Behaviors/MouseDoubleClickBehaviors.cs -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Behaviors/TextBoxBehaviors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Behaviors/TextBoxBehaviors.cs -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Extensions.cs -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Framework/NotifyTaskCompletion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Framework/NotifyTaskCompletion.cs -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Framework/PropertyChangedEventArgsCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Framework/PropertyChangedEventArgsCache.cs -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Framework/ViewModel_CommandBindings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Framework/ViewModel_CommandBindings.cs -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Framework/ViewModel_INotifyPropertyChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Framework/ViewModel_INotifyPropertyChanged.cs -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Framework/ViewModel`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Framework/ViewModel`1.cs -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Logging/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Logging/Extensions.cs -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Logging/OutputLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Logging/OutputLogger.cs -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Logging/OutputLoggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Logging/OutputLoggerProvider.cs -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Properties/Resources.resx -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Properties/Settings.settings -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Properties/xlf/Resources.cs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Properties/xlf/Resources.cs.xlf -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Properties/xlf/Resources.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Properties/xlf/Resources.de.xlf -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Properties/xlf/Resources.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Properties/xlf/Resources.es.xlf -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Properties/xlf/Resources.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Properties/xlf/Resources.fr.xlf -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Properties/xlf/Resources.it.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Properties/xlf/Resources.it.xlf -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Properties/xlf/Resources.ja.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Properties/xlf/Resources.ja.xlf -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Properties/xlf/Resources.ko.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Properties/xlf/Resources.ko.xlf -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Properties/xlf/Resources.pl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Properties/xlf/Resources.pl.xlf -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Properties/xlf/Resources.pt-BR.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Properties/xlf/Resources.pt-BR.xlf -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Properties/xlf/Resources.ru.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Properties/xlf/Resources.ru.xlf -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Properties/xlf/Resources.tr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Properties/xlf/Resources.tr.xlf -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Properties/xlf/Resources.zh-Hans.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Properties/xlf/Resources.zh-Hans.xlf -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Properties/xlf/Resources.zh-Hant.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Properties/xlf/Resources.zh-Hant.xlf -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Resources/Images.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Resources/Images.xaml -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Services/BaseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Services/BaseService.cs -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Services/MSBuildService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Services/MSBuildService.cs -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Services/OpenDocumentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Services/OpenDocumentService.cs -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Services/OutputService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Services/OutputService.cs -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Services/WorkspaceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Services/WorkspaceService.cs -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/SolutionExplorer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/SolutionExplorer.csproj -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/ViewModels/DocumentPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/ViewModels/DocumentPageViewModel.cs -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/ViewModels/DocumentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/ViewModels/DocumentViewModel.cs -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/ViewModels/FolderViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/ViewModels/FolderViewModel.cs -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/ViewModels/HierarchyItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/ViewModels/HierarchyItemViewModel.cs -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/ViewModels/LogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/ViewModels/LogViewModel.cs -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/ViewModels/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/ViewModels/MainWindowViewModel.cs -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/ViewModels/MetadataReferenceViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/ViewModels/MetadataReferenceViewModel.cs -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/ViewModels/PageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/ViewModels/PageViewModel.cs -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/ViewModels/ProjectReferenceViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/ViewModels/ProjectReferenceViewModel.cs -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/ViewModels/ProjectViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/ViewModels/ProjectViewModel.cs -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/ViewModels/ReferencesFolderViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/ViewModels/ReferencesFolderViewModel.cs -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/ViewModels/SolutionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/ViewModels/SolutionViewModel.cs -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Views/DocumentView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Views/DocumentView.xaml -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Views/LogView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Views/LogView.xaml -------------------------------------------------------------------------------- /samples/CSharp/SolutionExplorer/Views/MainWindowView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SolutionExplorer/Views/MainWindowView.xaml -------------------------------------------------------------------------------- /samples/CSharp/SourceGenerators/GeneratedDemo/CSharpGeneratedDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SourceGenerators/GeneratedDemo/CSharpGeneratedDemo.csproj -------------------------------------------------------------------------------- /samples/CSharp/SourceGenerators/GeneratedDemo/Cars.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SourceGenerators/GeneratedDemo/Cars.csv -------------------------------------------------------------------------------- /samples/CSharp/SourceGenerators/GeneratedDemo/Geometry.math: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SourceGenerators/GeneratedDemo/Geometry.math -------------------------------------------------------------------------------- /samples/CSharp/SourceGenerators/GeneratedDemo/MainSettings.xmlsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SourceGenerators/GeneratedDemo/MainSettings.xmlsettings -------------------------------------------------------------------------------- /samples/CSharp/SourceGenerators/GeneratedDemo/People.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SourceGenerators/GeneratedDemo/People.csv -------------------------------------------------------------------------------- /samples/CSharp/SourceGenerators/GeneratedDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SourceGenerators/GeneratedDemo/Program.cs -------------------------------------------------------------------------------- /samples/CSharp/SourceGenerators/GeneratedDemo/UseAutoNotifyGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SourceGenerators/GeneratedDemo/UseAutoNotifyGenerator.cs -------------------------------------------------------------------------------- /samples/CSharp/SourceGenerators/GeneratedDemo/UseCsvGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SourceGenerators/GeneratedDemo/UseCsvGenerator.cs -------------------------------------------------------------------------------- /samples/CSharp/SourceGenerators/GeneratedDemo/UseHelloWorldGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SourceGenerators/GeneratedDemo/UseHelloWorldGenerator.cs -------------------------------------------------------------------------------- /samples/CSharp/SourceGenerators/GeneratedDemo/UseMathsGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SourceGenerators/GeneratedDemo/UseMathsGenerator.cs -------------------------------------------------------------------------------- /samples/CSharp/SourceGenerators/GeneratedDemo/UseMustacheGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SourceGenerators/GeneratedDemo/UseMustacheGenerator.cs -------------------------------------------------------------------------------- /samples/CSharp/SourceGenerators/GeneratedDemo/UseXmlSettingsGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SourceGenerators/GeneratedDemo/UseXmlSettingsGenerator.cs -------------------------------------------------------------------------------- /samples/CSharp/SourceGenerators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SourceGenerators/README.md -------------------------------------------------------------------------------- /samples/CSharp/SourceGenerators/SourceGeneratorSamples/AutoNotifyGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SourceGenerators/SourceGeneratorSamples/AutoNotifyGenerator.cs -------------------------------------------------------------------------------- /samples/CSharp/SourceGenerators/SourceGeneratorSamples/CSharpSourceGeneratorSamples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SourceGenerators/SourceGeneratorSamples/CSharpSourceGeneratorSamples.csproj -------------------------------------------------------------------------------- /samples/CSharp/SourceGenerators/SourceGeneratorSamples/CsvGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SourceGenerators/SourceGeneratorSamples/CsvGenerator.cs -------------------------------------------------------------------------------- /samples/CSharp/SourceGenerators/SourceGeneratorSamples/CsvGenerator.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SourceGenerators/SourceGeneratorSamples/CsvGenerator.props -------------------------------------------------------------------------------- /samples/CSharp/SourceGenerators/SourceGeneratorSamples/HelloWorldGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SourceGenerators/SourceGeneratorSamples/HelloWorldGenerator.cs -------------------------------------------------------------------------------- /samples/CSharp/SourceGenerators/SourceGeneratorSamples/MathsGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SourceGenerators/SourceGeneratorSamples/MathsGenerator.cs -------------------------------------------------------------------------------- /samples/CSharp/SourceGenerators/SourceGeneratorSamples/MustacheGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SourceGenerators/SourceGeneratorSamples/MustacheGenerator.cs -------------------------------------------------------------------------------- /samples/CSharp/SourceGenerators/SourceGeneratorSamples/SettingsXmlGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SourceGenerators/SourceGeneratorSamples/SettingsXmlGenerator.cs -------------------------------------------------------------------------------- /samples/CSharp/SourceGenerators/SourceGenerators.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/SourceGenerators/SourceGenerators.sln -------------------------------------------------------------------------------- /samples/CSharp/TreeTransforms/TransformVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/TreeTransforms/TransformVisitor.cs -------------------------------------------------------------------------------- /samples/CSharp/TreeTransforms/Transforms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/TreeTransforms/Transforms.cs -------------------------------------------------------------------------------- /samples/CSharp/TreeTransforms/TreeTransformTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/TreeTransforms/TreeTransformTests.cs -------------------------------------------------------------------------------- /samples/CSharp/TreeTransforms/TreeTransforms.CSharp.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/CSharp/TreeTransforms/TreeTransforms.CSharp.UnitTests.csproj -------------------------------------------------------------------------------- /samples/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/Directory.Build.props -------------------------------------------------------------------------------- /samples/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/Directory.Build.targets -------------------------------------------------------------------------------- /samples/Shared/UnitTestFramework/CodeActionProviderTestFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/Shared/UnitTestFramework/CodeActionProviderTestFixture.cs -------------------------------------------------------------------------------- /samples/Shared/UnitTestFramework/CodeRefactoringProviderTestFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/Shared/UnitTestFramework/CodeRefactoringProviderTestFixture.cs -------------------------------------------------------------------------------- /samples/Shared/UnitTestFramework/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/Shared/UnitTestFramework/DictionaryExtensions.cs -------------------------------------------------------------------------------- /samples/Shared/UnitTestFramework/EnumerableExtensions.ComparisonComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/Shared/UnitTestFramework/EnumerableExtensions.ComparisonComparer.cs -------------------------------------------------------------------------------- /samples/Shared/UnitTestFramework/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/Shared/UnitTestFramework/EnumerableExtensions.cs -------------------------------------------------------------------------------- /samples/Shared/UnitTestFramework/MarkupTestFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/Shared/UnitTestFramework/MarkupTestFile.cs -------------------------------------------------------------------------------- /samples/Shared/UnitTestFramework/Roslyn.UnitTestFramework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/Shared/UnitTestFramework/Roslyn.UnitTestFramework.csproj -------------------------------------------------------------------------------- /samples/VisualBasic/APISamples/APISamples.VisualBasic.UnitTests.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/APISamples/APISamples.VisualBasic.UnitTests.vbproj -------------------------------------------------------------------------------- /samples/VisualBasic/APISamples/Compilations.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/APISamples/Compilations.vb -------------------------------------------------------------------------------- /samples/VisualBasic/APISamples/Extensions.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/APISamples/Extensions.vb -------------------------------------------------------------------------------- /samples/VisualBasic/APISamples/FAQ.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/APISamples/FAQ.vb -------------------------------------------------------------------------------- /samples/VisualBasic/APISamples/Parsing.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/APISamples/Parsing.vb -------------------------------------------------------------------------------- /samples/VisualBasic/APISamples/SymbolsAndSemantics.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/APISamples/SymbolsAndSemantics.vb -------------------------------------------------------------------------------- /samples/VisualBasic/APISamples/SyntaxTrees.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/APISamples/SyntaxTrees.vb -------------------------------------------------------------------------------- /samples/VisualBasic/APISamples/TestCodeContainer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/APISamples/TestCodeContainer.vb -------------------------------------------------------------------------------- /samples/VisualBasic/Analyzers/Analyzers.Implementation/Analyzers.VisualBasic.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/Analyzers/Analyzers.Implementation/Analyzers.VisualBasic.vbproj -------------------------------------------------------------------------------- /samples/VisualBasic/Analyzers/Analyzers.Implementation/DiagnosticCategories.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/Analyzers/Analyzers.Implementation/DiagnosticCategories.vb -------------------------------------------------------------------------------- /samples/VisualBasic/Analyzers/Analyzers.Implementation/DiagnosticIds.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/Analyzers/Analyzers.Implementation/DiagnosticIds.vb -------------------------------------------------------------------------------- /samples/VisualBasic/Analyzers/Analyzers.Implementation/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/Analyzers/Analyzers.Implementation/My Project/Resources.Designer.vb -------------------------------------------------------------------------------- /samples/VisualBasic/Analyzers/Analyzers.Implementation/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/Analyzers/Analyzers.Implementation/My Project/Resources.resx -------------------------------------------------------------------------------- /samples/VisualBasic/Analyzers/Analyzers.Implementation/StatefulAnalyzers/CodeBlockStartedAnalyzer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/Analyzers/Analyzers.Implementation/StatefulAnalyzers/CodeBlockStartedAnalyzer.vb -------------------------------------------------------------------------------- /samples/VisualBasic/Analyzers/Analyzers.Implementation/StatefulAnalyzers/CompilationStartedAnalyzer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/Analyzers/Analyzers.Implementation/StatefulAnalyzers/CompilationStartedAnalyzer.vb -------------------------------------------------------------------------------- /samples/VisualBasic/Analyzers/Analyzers.Implementation/StatelessAnalyzers/CodeBlockAnalyzer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/Analyzers/Analyzers.Implementation/StatelessAnalyzers/CodeBlockAnalyzer.vb -------------------------------------------------------------------------------- /samples/VisualBasic/Analyzers/Analyzers.Implementation/StatelessAnalyzers/CompilationAnalyzer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/Analyzers/Analyzers.Implementation/StatelessAnalyzers/CompilationAnalyzer.vb -------------------------------------------------------------------------------- /samples/VisualBasic/Analyzers/Analyzers.Implementation/StatelessAnalyzers/SemanticModelAnalyzer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/Analyzers/Analyzers.Implementation/StatelessAnalyzers/SemanticModelAnalyzer.vb -------------------------------------------------------------------------------- /samples/VisualBasic/Analyzers/Analyzers.Implementation/StatelessAnalyzers/SymbolAnalyzer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/Analyzers/Analyzers.Implementation/StatelessAnalyzers/SymbolAnalyzer.vb -------------------------------------------------------------------------------- /samples/VisualBasic/Analyzers/Analyzers.Implementation/StatelessAnalyzers/SyntaxNodeAnalyzer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/Analyzers/Analyzers.Implementation/StatelessAnalyzers/SyntaxNodeAnalyzer.vb -------------------------------------------------------------------------------- /samples/VisualBasic/Analyzers/Analyzers.Implementation/StatelessAnalyzers/SyntaxTreeAnalyzer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/Analyzers/Analyzers.Implementation/StatelessAnalyzers/SyntaxTreeAnalyzer.vb -------------------------------------------------------------------------------- /samples/VisualBasic/Analyzers/Analyzers.Implementation/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/Analyzers/Analyzers.Implementation/tools/install.ps1 -------------------------------------------------------------------------------- /samples/VisualBasic/Analyzers/Analyzers.Implementation/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/Analyzers/Analyzers.Implementation/tools/uninstall.ps1 -------------------------------------------------------------------------------- /samples/VisualBasic/Analyzers/Analyzers.Vsix/Analyzers.VisualBasic.Vsix.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/Analyzers/Analyzers.Vsix/Analyzers.VisualBasic.Vsix.vbproj -------------------------------------------------------------------------------- /samples/VisualBasic/Analyzers/Analyzers.Vsix/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/Analyzers/Analyzers.Vsix/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /samples/VisualBasic/Analyzers/Analyzers.Vsix/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/Analyzers/Analyzers.Vsix/source.extension.vsixmanifest -------------------------------------------------------------------------------- /samples/VisualBasic/ConsoleClassifier/ConsoleClassifier.VisualBasic.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/ConsoleClassifier/ConsoleClassifier.VisualBasic.vbproj -------------------------------------------------------------------------------- /samples/VisualBasic/ConsoleClassifier/Program.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/ConsoleClassifier/Program.vb -------------------------------------------------------------------------------- /samples/VisualBasic/ConsoleClassifier/Range.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/ConsoleClassifier/Range.vb -------------------------------------------------------------------------------- /samples/VisualBasic/ConvertToAutoProperty/ConvertToAutoProperty.Vsix/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/VisualBasic/ConvertToAutoProperty/ConvertToAutoProperty.Vsix/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/ConvertToAutoProperty/ConvertToAutoProperty.Vsix/source.extension.vsixmanifest -------------------------------------------------------------------------------- /samples/VisualBasic/ConvertToAutoProperty/ConvertToAutoProperty/CodeRefactoringProvider.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/ConvertToAutoProperty/ConvertToAutoProperty/CodeRefactoringProvider.vb -------------------------------------------------------------------------------- /samples/VisualBasic/ConvertToAutoProperty/ConvertToAutoProperty/ConvertToAutoProperty.VisualBasic.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/ConvertToAutoProperty/ConvertToAutoProperty/ConvertToAutoProperty.VisualBasic.vbproj -------------------------------------------------------------------------------- /samples/VisualBasic/ConvertToAutoProperty/ConvertToAutoProperty/ReferenceRewriter.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/ConvertToAutoProperty/ConvertToAutoProperty/ReferenceRewriter.vb -------------------------------------------------------------------------------- /samples/VisualBasic/FormatSolution/FormatSolution.VisualBasic.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/FormatSolution/FormatSolution.VisualBasic.vbproj -------------------------------------------------------------------------------- /samples/VisualBasic/FormatSolution/FormatSolution.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/FormatSolution/FormatSolution.vb -------------------------------------------------------------------------------- /samples/VisualBasic/ImplementNotifyPropertyChanged/ImplementNotifyPropertyChanged.Vsix/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/VisualBasic/ImplementNotifyPropertyChanged/ImplementNotifyPropertyChanged/CodeGeneration.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/ImplementNotifyPropertyChanged/ImplementNotifyPropertyChanged/CodeGeneration.vb -------------------------------------------------------------------------------- /samples/VisualBasic/ImplementNotifyPropertyChanged/ImplementNotifyPropertyChanged/ExpansionChecker.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/ImplementNotifyPropertyChanged/ImplementNotifyPropertyChanged/ExpansionChecker.vb -------------------------------------------------------------------------------- /samples/VisualBasic/MakeConst/MakeConst.Test/MakeConst.VisualBasic.UnitTests.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/MakeConst/MakeConst.Test/MakeConst.VisualBasic.UnitTests.vbproj -------------------------------------------------------------------------------- /samples/VisualBasic/MakeConst/MakeConst.Test/MakeConstUnitTests.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/MakeConst/MakeConst.Test/MakeConstUnitTests.vb -------------------------------------------------------------------------------- /samples/VisualBasic/MakeConst/MakeConst.Vsix/MakeConst.VisualBasic.Vsix.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/MakeConst/MakeConst.Vsix/MakeConst.VisualBasic.Vsix.vbproj -------------------------------------------------------------------------------- /samples/VisualBasic/MakeConst/MakeConst.Vsix/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/MakeConst/MakeConst.Vsix/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /samples/VisualBasic/MakeConst/MakeConst.Vsix/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/MakeConst/MakeConst.Vsix/source.extension.vsixmanifest -------------------------------------------------------------------------------- /samples/VisualBasic/MakeConst/MakeConst/MakeConst.VisualBasic.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/MakeConst/MakeConst/MakeConst.VisualBasic.vbproj -------------------------------------------------------------------------------- /samples/VisualBasic/MakeConst/MakeConst/MakeConstAnalyzer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/MakeConst/MakeConst/MakeConstAnalyzer.vb -------------------------------------------------------------------------------- /samples/VisualBasic/MakeConst/MakeConst/MakeConstCodeFixProvider.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/MakeConst/MakeConst/MakeConstCodeFixProvider.vb -------------------------------------------------------------------------------- /samples/VisualBasic/MakeConst/MakeConst/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/MakeConst/MakeConst/My Project/Resources.Designer.vb -------------------------------------------------------------------------------- /samples/VisualBasic/MakeConst/MakeConst/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/MakeConst/MakeConst/My Project/Resources.resx -------------------------------------------------------------------------------- /samples/VisualBasic/MakeConst/MakeConst/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/MakeConst/MakeConst/tools/install.ps1 -------------------------------------------------------------------------------- /samples/VisualBasic/MakeConst/MakeConst/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/MakeConst/MakeConst/tools/uninstall.ps1 -------------------------------------------------------------------------------- /samples/VisualBasic/RemoveByVal/RemoveByVal.Vsix/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/VisualBasic/RemoveByVal/RemoveByVal.Vsix/RemoveByVal.VisualBasic.Vsix.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/RemoveByVal/RemoveByVal.Vsix/RemoveByVal.VisualBasic.Vsix.vbproj -------------------------------------------------------------------------------- /samples/VisualBasic/RemoveByVal/RemoveByVal.Vsix/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/RemoveByVal/RemoveByVal.Vsix/source.extension.vsixmanifest -------------------------------------------------------------------------------- /samples/VisualBasic/RemoveByVal/RemoveByVal/CodeRefactoringProvider.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/RemoveByVal/RemoveByVal/CodeRefactoringProvider.vb -------------------------------------------------------------------------------- /samples/VisualBasic/RemoveByVal/RemoveByVal/RemoveByVal.VisualBasic.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/RemoveByVal/RemoveByVal/RemoveByVal.VisualBasic.vbproj -------------------------------------------------------------------------------- /samples/VisualBasic/SourceGenerators/GeneratedDemo/Cars.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/SourceGenerators/GeneratedDemo/Cars.csv -------------------------------------------------------------------------------- /samples/VisualBasic/SourceGenerators/GeneratedDemo/MainSettings.xmlsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/SourceGenerators/GeneratedDemo/MainSettings.xmlsettings -------------------------------------------------------------------------------- /samples/VisualBasic/SourceGenerators/GeneratedDemo/People.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/SourceGenerators/GeneratedDemo/People.csv -------------------------------------------------------------------------------- /samples/VisualBasic/SourceGenerators/GeneratedDemo/Program.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/SourceGenerators/GeneratedDemo/Program.vb -------------------------------------------------------------------------------- /samples/VisualBasic/SourceGenerators/GeneratedDemo/UseAutoNotifyGenerator.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/SourceGenerators/GeneratedDemo/UseAutoNotifyGenerator.vb -------------------------------------------------------------------------------- /samples/VisualBasic/SourceGenerators/GeneratedDemo/UseCsvGenerator.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/SourceGenerators/GeneratedDemo/UseCsvGenerator.vb -------------------------------------------------------------------------------- /samples/VisualBasic/SourceGenerators/GeneratedDemo/UseHelloWorldGenerator.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/SourceGenerators/GeneratedDemo/UseHelloWorldGenerator.vb -------------------------------------------------------------------------------- /samples/VisualBasic/SourceGenerators/GeneratedDemo/UseXmlSettingsGenerator.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/SourceGenerators/GeneratedDemo/UseXmlSettingsGenerator.vb -------------------------------------------------------------------------------- /samples/VisualBasic/SourceGenerators/GeneratedDemo/VisualBasicGeneratedDemo.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/SourceGenerators/GeneratedDemo/VisualBasicGeneratedDemo.vbproj -------------------------------------------------------------------------------- /samples/VisualBasic/SourceGenerators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/SourceGenerators/README.md -------------------------------------------------------------------------------- /samples/VisualBasic/SourceGenerators/SourceGeneratorSamples/AutoNotifyGenerator.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/SourceGenerators/SourceGeneratorSamples/AutoNotifyGenerator.vb -------------------------------------------------------------------------------- /samples/VisualBasic/SourceGenerators/SourceGeneratorSamples/CsvGenerator.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/SourceGenerators/SourceGeneratorSamples/CsvGenerator.props -------------------------------------------------------------------------------- /samples/VisualBasic/SourceGenerators/SourceGeneratorSamples/CsvGenerator.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/SourceGenerators/SourceGeneratorSamples/CsvGenerator.vb -------------------------------------------------------------------------------- /samples/VisualBasic/SourceGenerators/SourceGeneratorSamples/HelloWorldGenerator.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/SourceGenerators/SourceGeneratorSamples/HelloWorldGenerator.vb -------------------------------------------------------------------------------- /samples/VisualBasic/SourceGenerators/SourceGeneratorSamples/SettingsXmlGenerator.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/SourceGenerators/SourceGeneratorSamples/SettingsXmlGenerator.vb -------------------------------------------------------------------------------- /samples/VisualBasic/SourceGenerators/SourceGeneratorSamples/VisualBasicSourceGeneratorSamples.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/SourceGenerators/SourceGeneratorSamples/VisualBasicSourceGeneratorSamples.vbproj -------------------------------------------------------------------------------- /samples/VisualBasic/SourceGenerators/SourceGenerators.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/SourceGenerators/SourceGenerators.sln -------------------------------------------------------------------------------- /samples/VisualBasic/TreeTransforms/TransformVisitor.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/TreeTransforms/TransformVisitor.vb -------------------------------------------------------------------------------- /samples/VisualBasic/TreeTransforms/Transforms.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/TreeTransforms/Transforms.vb -------------------------------------------------------------------------------- /samples/VisualBasic/TreeTransforms/TreeTransforms.VisualBasic.UnitTests.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/TreeTransforms/TreeTransforms.VisualBasic.UnitTests.vbproj -------------------------------------------------------------------------------- /samples/VisualBasic/TreeTransforms/TreeTransforms.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/TreeTransforms/TreeTransforms.vb -------------------------------------------------------------------------------- /samples/VisualBasic/VisualBasicToCSharpConverter/VisualBasicToCSharpConverter.Lib/Converter.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/VisualBasicToCSharpConverter/VisualBasicToCSharpConverter.Lib/Converter.vb -------------------------------------------------------------------------------- /samples/VisualBasic/VisualBasicToCSharpConverter/VisualBasicToCSharpConverter.Test/UnitTest1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/samples/VisualBasic/VisualBasicToCSharpConverter/VisualBasicToCSharpConverter.Test/UnitTest1.vb -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Directory.Build.targets -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Directory.Build.props -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Directory.Build.targets -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/AnalyzerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/AnalyzerInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/AnalyzerTest`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/AnalyzerTest`1.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/AnalyzerVerifier`3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/AnalyzerVerifier`3.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/CodeActionTest`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/CodeActionTest`1.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/CodeActionValidationMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/CodeActionValidationMode.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/CompilerDiagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/CompilerDiagnostics.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/DefaultVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/DefaultVerifier.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/DiagnosticLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/DiagnosticLocation.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/DiagnosticLocationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/DiagnosticLocationOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/DiagnosticOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/DiagnosticOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/DiagnosticResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/DiagnosticResult.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/EmptyDiagnosticAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/EmptyDiagnosticAnalyzer.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/ExceptionUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/ExceptionUtilities.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/ExportProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/ExportProviderFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/IVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/IVerifier.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/Lightup/LightupHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/Lightup/LightupHelpers.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/MarkupMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/MarkupMode.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/MarkupOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/MarkupOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/MetadataReferenceCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/MetadataReferenceCollection.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/MetadataReferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/MetadataReferences.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/Model/EvaluatedProjectState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/Model/EvaluatedProjectState.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/ObsoleteMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/ObsoleteMessages.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/PackageIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/PackageIdentity.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/ProjectCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/ProjectCollection.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/ProjectState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/ProjectState.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/PublicAPI.Unshipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/PublicAPI.Unshipped.txt -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/ReferenceAssemblies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/ReferenceAssemblies.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/RoslynDebug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/RoslynDebug.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/SolutionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/SolutionState.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/SourceFileCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/SourceFileCollection.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/SourceFileList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/SourceFileList.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/StateInheritanceMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/StateInheritanceMode.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/TestBehaviors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/TestBehaviors.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/TestFileMarkupParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/TestFileMarkupParser.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/TestXmlReferenceResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/TestXmlReferenceResolver.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/WeightedMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing/WeightedMatch.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.CSharp.Analyzer.Testing/CSharpAnalyzerTest`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.CSharp.Analyzer.Testing/CSharpAnalyzerTest`2.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.CSharp.Analyzer.Testing/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.CSharp.Analyzer.Testing/PublicAPI.Unshipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.CSharp.Analyzer.Testing/PublicAPI.Unshipped.txt -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.CSharp.CodeFix.Testing/CSharpCodeFixTest`3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.CSharp.CodeFix.Testing/CSharpCodeFixTest`3.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.CSharp.CodeFix.Testing/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.CSharp.CodeFix.Testing/PublicAPI.Unshipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.CSharp.CodeFix.Testing/PublicAPI.Unshipped.txt -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.CSharp.CodeRefactoring.Testing/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.CSharp.SourceGenerators.Testing/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.CodeFix.Testing/CodeFixTestBehaviors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.CodeFix.Testing/CodeFixTestBehaviors.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.CodeFix.Testing/CodeFixTest`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.CodeFix.Testing/CodeFixTest`1.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.CodeFix.Testing/CodeFixValidationMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.CodeFix.Testing/CodeFixValidationMode.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.CodeFix.Testing/CodeFixVerifier`4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.CodeFix.Testing/CodeFixVerifier`4.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.CodeFix.Testing/EmptyCodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.CodeFix.Testing/EmptyCodeFixProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.CodeFix.Testing/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.CodeFix.Testing/PublicAPI.Unshipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.CodeFix.Testing/PublicAPI.Unshipped.txt -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.CodeFix.Testing/TestDiagnosticProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.CodeFix.Testing/TestDiagnosticProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.CodeRefactoring.Testing/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.CodeRefactoring.Testing/PublicAPI.Unshipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.CodeRefactoring.Testing/PublicAPI.Unshipped.txt -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.SourceGenerators.Testing/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.VisualBasic.Analyzer.Testing/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.VisualBasic.CodeFix.Testing/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.VisualBasic.CodeRefactoring.Testing/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.VisualBasic.SourceGenerators.Testing/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Microsoft.CodeAnalysis.Testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/Microsoft.CodeAnalysis.Testing/README.md -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/AssemblyVersionGenerator/AssemblyVersionGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/AssemblyVersionGenerator/AssemblyVersionGenerator.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/AssemblyVersionGenerator/AssemblyVersionGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/AssemblyVersionGenerator/AssemblyVersionGenerator.csproj -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/ComponentDebugger/CommandLineArgumentsDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/ComponentDebugger/CommandLineArgumentsDataSource.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/ComponentDebugger/ComponentDebuggerLaunchProfile.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/ComponentDebugger/ComponentDebuggerLaunchProfile.xaml -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/ComponentDebugger/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/ComponentDebugger/Constants.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/ComponentDebugger/DebugProfileProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/ComponentDebugger/DebugProfileProvider.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/ComponentDebugger/LaunchSettingsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/ComponentDebugger/LaunchSettingsManager.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/ComponentDebugger/ProjectUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/ComponentDebugger/ProjectUtilities.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/ComponentDebugger/Roslyn.ComponentDebugger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/ComponentDebugger/Roslyn.ComponentDebugger.csproj -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/ComponentDebugger/RuleExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/ComponentDebugger/RuleExporter.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/ComponentDebugger/TargetProjectEnumProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/ComponentDebugger/TargetProjectEnumProvider.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/ComponentDebugger/xlf/ComponentDebuggerLaunchProfile.xaml.cs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/ComponentDebugger/xlf/ComponentDebuggerLaunchProfile.xaml.cs.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/ComponentDebugger/xlf/ComponentDebuggerLaunchProfile.xaml.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/ComponentDebugger/xlf/ComponentDebuggerLaunchProfile.xaml.de.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/ComponentDebugger/xlf/ComponentDebuggerLaunchProfile.xaml.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/ComponentDebugger/xlf/ComponentDebuggerLaunchProfile.xaml.es.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/ComponentDebugger/xlf/ComponentDebuggerLaunchProfile.xaml.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/ComponentDebugger/xlf/ComponentDebuggerLaunchProfile.xaml.fr.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/ComponentDebugger/xlf/ComponentDebuggerLaunchProfile.xaml.it.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/ComponentDebugger/xlf/ComponentDebuggerLaunchProfile.xaml.it.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/ComponentDebugger/xlf/ComponentDebuggerLaunchProfile.xaml.ja.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/ComponentDebugger/xlf/ComponentDebuggerLaunchProfile.xaml.ja.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/ComponentDebugger/xlf/ComponentDebuggerLaunchProfile.xaml.ko.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/ComponentDebugger/xlf/ComponentDebuggerLaunchProfile.xaml.ko.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/ComponentDebugger/xlf/ComponentDebuggerLaunchProfile.xaml.pl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/ComponentDebugger/xlf/ComponentDebuggerLaunchProfile.xaml.pl.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/ComponentDebugger/xlf/ComponentDebuggerLaunchProfile.xaml.pt-BR.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/ComponentDebugger/xlf/ComponentDebuggerLaunchProfile.xaml.pt-BR.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/ComponentDebugger/xlf/ComponentDebuggerLaunchProfile.xaml.ru.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/ComponentDebugger/xlf/ComponentDebuggerLaunchProfile.xaml.ru.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/ComponentDebugger/xlf/ComponentDebuggerLaunchProfile.xaml.tr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/ComponentDebugger/xlf/ComponentDebuggerLaunchProfile.xaml.tr.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/ComponentDebugger/xlf/ComponentDebuggerLaunchProfile.xaml.zh-Hans.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/ComponentDebugger/xlf/ComponentDebuggerLaunchProfile.xaml.zh-Hans.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/ComponentDebugger/xlf/ComponentDebuggerLaunchProfile.xaml.zh-Hant.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/ComponentDebugger/xlf/ComponentDebuggerLaunchProfile.xaml.zh-Hant.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/EULA.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/EULA.rtf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK.Template.Wizard/Roslyn.SDK.Template.Wizard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK.Template.Wizard/Roslyn.SDK.Template.Wizard.csproj -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK.Template.Wizard/RoslynSDKAnalyzerTemplateWizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK.Template.Wizard/RoslynSDKAnalyzerTemplateWizard.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK.Template.Wizard/RoslynSDKChildTemplateWizard.InterfaceMembers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK.Template.Wizard/RoslynSDKChildTemplateWizard.InterfaceMembers.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK.Template.Wizard/RoslynSDKChildTemplateWizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK.Template.Wizard/RoslynSDKChildTemplateWizard.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK.Template.Wizard/RoslynSDKCodeFixTemplateWizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK.Template.Wizard/RoslynSDKCodeFixTemplateWizard.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK.Template.Wizard/RoslynSDKPackageTemplateWizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK.Template.Wizard/RoslynSDKPackageTemplateWizard.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK.Template.Wizard/RoslynSDKRootTemplateWizard.InterfaceMembers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK.Template.Wizard/RoslynSDKRootTemplateWizard.InterfaceMembers.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK.Template.Wizard/RoslynSDKRootTemplateWizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK.Template.Wizard/RoslynSDKRootTemplateWizard.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK.Template.Wizard/RoslynSDKTestTemplateWizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK.Template.Wizard/RoslynSDKTestTemplateWizard.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK.Template.Wizard/RoslynSDKVsixTemplateWizardSecondProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK.Template.Wizard/RoslynSDKVsixTemplateWizardSecondProject.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK.Template.Wizard/RoslynSDKVsixTemplateWizardThirdProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK.Template.Wizard/RoslynSDKVsixTemplateWizardThirdProject.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/CSRef.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/CSRef.vstemplate -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/CSharpDiagnostic.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/CSharpDiagnostic.vstemplate -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/CodeInformation.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/CodeInformation.ico -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/Directory.Build.props -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ItemTemplates/CSharp/Analyzer/Analyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ItemTemplates/CSharp/Analyzer/Analyzer.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ItemTemplates/CSharp/Analyzer/CSharpAnalyzer.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ItemTemplates/CSharp/Analyzer/CSharpAnalyzer.vstemplate -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ItemTemplates/CSharp/CodeFix/CSharpCodeFix.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ItemTemplates/CSharp/CodeFix/CSharpCodeFix.vstemplate -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ItemTemplates/CSharp/CodeFix/CodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ItemTemplates/CSharp/CodeFix/CodeFix.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ItemTemplates/CSharp/Refactoring/CSharpRefactoring.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ItemTemplates/CSharp/Refactoring/CSharpRefactoring.vstemplate -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ItemTemplates/CSharp/Refactoring/Refactoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ItemTemplates/CSharp/Refactoring/Refactoring.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ItemTemplates/VisualBasic/Analyzer/Analyzer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ItemTemplates/VisualBasic/Analyzer/Analyzer.vb -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ItemTemplates/VisualBasic/Analyzer/VBAnalyzer.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ItemTemplates/VisualBasic/Analyzer/VBAnalyzer.vstemplate -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ItemTemplates/VisualBasic/CodeFix/CodeFix.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ItemTemplates/VisualBasic/CodeFix/CodeFix.vb -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ItemTemplates/VisualBasic/CodeFix/VBCodeFix.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ItemTemplates/VisualBasic/CodeFix/VBCodeFix.vstemplate -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ItemTemplates/VisualBasic/Refactoring/Refactoring.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ItemTemplates/VisualBasic/Refactoring/Refactoring.vb -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ItemTemplates/VisualBasic/Refactoring/VBRefactoring.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ItemTemplates/VisualBasic/Refactoring/VBRefactoring.vstemplate -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/CodeRefactoring/Ref/CodeRefactoring.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/CodeRefactoring/Ref/CodeRefactoring.csproj -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/CodeRefactoring/Vsix/Deployment.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/CodeRefactoring/Vsix/Deployment.csproj -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/CodeRefactoring/Vsix/Deployment.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/CodeRefactoring/Vsix/Deployment.vstemplate -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/ConsoleApplication/CodeAnalysisConsole.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/ConsoleApplication/CodeAnalysisConsole.ico -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/ConsoleApplication/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/ConsoleApplication/Program.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Analyzer/DiagnosticAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Analyzer/DiagnosticAnalyzer.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Analyzer/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Analyzer/Resources.Designer.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Analyzer/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Analyzer/Resources.resx -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/CodeFix/CodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/CodeFix/CodeFixProvider.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/CodeFix/CodeFixProvider.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/CodeFix/CodeFixProvider.csproj -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/CodeFix/CodeFixResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/CodeFix/CodeFixResources.resx -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Package/Package.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Package/Package.csproj -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Package/Package.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Package/Package.vstemplate -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Package/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Package/install.ps1 -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Package/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Package/uninstall.ps1 -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Test/Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Test/Test.csproj -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Test/Test.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Test/Test.vstemplate -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Test/UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Test/UnitTests.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Test/Verifiers/CSAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Test/Verifiers/CSAnalyzer.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Test/Verifiers/CSCodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Test/Verifiers/CSCodeFix.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Test/Verifiers/CSHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Test/Verifiers/CSHelper.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Test/Verifiers/CSRefactoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Test/Verifiers/CSRefactoring.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Test/Verifiers/VBAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Test/Verifiers/VBAnalyzer.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Test/Verifiers/VBCodeFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Test/Verifiers/VBCodeFix.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Test/Verifiers/VBRefactoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Test/Verifiers/VBRefactoring.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Vsix/Deployment.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Vsix/Deployment.csproj -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Vsix/Deployment.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/CSharp/Diagnostic/Vsix/Deployment.vstemplate -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/VisualBasic/CodeRefactoring/Vsix/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/VisualBasic/ConsoleApplication/Module1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/VisualBasic/ConsoleApplication/Module1.vb -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/VisualBasic/Diagnostic/Analyzer/Diagnostic.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/VisualBasic/Diagnostic/Analyzer/Diagnostic.vbproj -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/VisualBasic/Diagnostic/Analyzer/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/VisualBasic/Diagnostic/Analyzer/Resources.resx -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/VisualBasic/Diagnostic/CodeFix/CodeFixProvider.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/VisualBasic/Diagnostic/CodeFix/CodeFixProvider.vb -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/VisualBasic/Diagnostic/Package/Package.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/VisualBasic/Diagnostic/Package/Package.vbproj -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/VisualBasic/Diagnostic/Package/Package.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/VisualBasic/Diagnostic/Package/Package.vstemplate -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/VisualBasic/Diagnostic/Package/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/VisualBasic/Diagnostic/Package/install.ps1 -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/VisualBasic/Diagnostic/Package/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/VisualBasic/Diagnostic/Package/uninstall.ps1 -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/VisualBasic/Diagnostic/Test/Test.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/VisualBasic/Diagnostic/Test/Test.vstemplate -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/VisualBasic/Diagnostic/Test/UnitTests.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/VisualBasic/Diagnostic/Test/UnitTests.vb -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/VisualBasic/Diagnostic/Test/Verifiers/CSHelper.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/VisualBasic/Diagnostic/Test/Verifiers/CSHelper.vb -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/VisualBasic/Diagnostic/Vsix/Deployment.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/VisualBasic/Diagnostic/Vsix/Deployment.vbproj -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/VisualBasic/Diagnostic/Vsix/Deployment.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/ProjectTemplates/VisualBasic/Diagnostic/Vsix/Deployment.vstemplate -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/Roslyn.SDK.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/Roslyn.SDK.csproj -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/VBDiagnostic.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/VBDiagnostic.vstemplate -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/VBRef.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/VBRef.vstemplate -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/Roslyn.SDK/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/Roslyn.SDK/source.extension.vsixmanifest -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/CancellationSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/CancellationSeries.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/ColorHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/ColorHelpers.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/ColorPicker.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/ColorPicker.xaml -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/ColorPicker.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/ColorPicker.xaml.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/ColorPickerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/ColorPickerViewModel.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/ColorPickerWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/ColorPickerWindow.xaml -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/ColorPickerWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/ColorPickerWindow.xaml.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/ControlExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/ControlExtensions.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/DotNetFrameworkUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/DotNetFrameworkUtilities.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/FontsAndColorsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/FontsAndColorsHelper.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/HuePicker.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/HuePicker.xaml -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/HuePicker.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/HuePicker.xaml.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/HueToColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/HueToColorConverter.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/PercentConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/PercentConverter.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/SyntaxGraph.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/SyntaxGraph.ico -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/SyntaxKindHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/SyntaxKindHelper.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/SyntaxVisualizerControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/SyntaxVisualizerControl.xaml -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/TabStopPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Control/TabStopPanel.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.DgmlHelper/ObjectInfoHelper.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.DgmlHelper/ObjectInfoHelper.vb -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.DgmlHelper/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.DgmlHelper/Resources.resx -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.DgmlHelper/SyntaxDgmlHelper.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.DgmlHelper/SyntaxDgmlHelper.vb -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.DgmlHelper/SyntaxKindHelper.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.DgmlHelper/SyntaxKindHelper.vb -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.DgmlHelper/xlf/Resources.cs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.DgmlHelper/xlf/Resources.cs.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.DgmlHelper/xlf/Resources.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.DgmlHelper/xlf/Resources.de.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.DgmlHelper/xlf/Resources.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.DgmlHelper/xlf/Resources.es.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.DgmlHelper/xlf/Resources.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.DgmlHelper/xlf/Resources.fr.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.DgmlHelper/xlf/Resources.it.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.DgmlHelper/xlf/Resources.it.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.DgmlHelper/xlf/Resources.ja.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.DgmlHelper/xlf/Resources.ja.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.DgmlHelper/xlf/Resources.ko.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.DgmlHelper/xlf/Resources.ko.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.DgmlHelper/xlf/Resources.pl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.DgmlHelper/xlf/Resources.pl.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.DgmlHelper/xlf/Resources.ru.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.DgmlHelper/xlf/Resources.ru.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.DgmlHelper/xlf/Resources.tr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.DgmlHelper/xlf/Resources.tr.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/GuidList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/GuidList.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/PkgCmdIDList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/PkgCmdIDList.cs -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/Resources.resx -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/SyntaxTree.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/SyntaxTree.bmp -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/SyntaxTree.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/SyntaxTree.ico -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/VSPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/VSPackage.resx -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/Resources.cs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/Resources.cs.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/Resources.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/Resources.de.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/Resources.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/Resources.es.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/Resources.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/Resources.fr.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/Resources.it.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/Resources.it.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/Resources.ja.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/Resources.ja.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/Resources.ko.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/Resources.ko.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/Resources.pl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/Resources.pl.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/Resources.pt-BR.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/Resources.pt-BR.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/Resources.ru.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/Resources.ru.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/Resources.tr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/Resources.tr.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/VSPackage.cs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/VSPackage.cs.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/VSPackage.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/VSPackage.de.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/VSPackage.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/VSPackage.es.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/VSPackage.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/VSPackage.fr.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/VSPackage.it.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/VSPackage.it.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/VSPackage.ja.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/VSPackage.ja.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/VSPackage.ko.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/VSPackage.ko.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/VSPackage.pl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/VSPackage.pl.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/VSPackage.pt-BR.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/VSPackage.pt-BR.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/VSPackage.ru.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/VSPackage.ru.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/VSPackage.tr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/SyntaxVisualizer/Roslyn.SyntaxVisualizer.Extension/xlf/VSPackage.tr.xlf -------------------------------------------------------------------------------- /src/VisualStudio.Roslyn.SDK/ThirdPartyNotices.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/src/VisualStudio.Roslyn.SDK/ThirdPartyNotices.rtf -------------------------------------------------------------------------------- /stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/stylecop.json -------------------------------------------------------------------------------- /test.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/test.cmd -------------------------------------------------------------------------------- /tests/Microsoft.CodeAnalysis.Testing/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/tests/Microsoft.CodeAnalysis.Testing/Directory.Build.props -------------------------------------------------------------------------------- /tests/Microsoft.CodeAnalysis.Testing/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/tests/Microsoft.CodeAnalysis.Testing/Directory.Build.targets -------------------------------------------------------------------------------- /tests/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing.UnitTests/MarkupTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/tests/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Analyzer.Testing.UnitTests/MarkupTests.cs -------------------------------------------------------------------------------- /tests/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Testing.Utilities/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/tests/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Testing.Utilities/StringExtensions.cs -------------------------------------------------------------------------------- /tests/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Testing.Utilities/WorkItemAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/tests/Microsoft.CodeAnalysis.Testing/Microsoft.CodeAnalysis.Testing.Utilities/WorkItemAttribute.cs -------------------------------------------------------------------------------- /tests/VisualStudio.Roslyn.SDK/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/tests/VisualStudio.Roslyn.SDK/Directory.Build.props -------------------------------------------------------------------------------- /tests/VisualStudio.Roslyn.SDK/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/tests/VisualStudio.Roslyn.SDK/Directory.Build.targets -------------------------------------------------------------------------------- /tests/VisualStudio.Roslyn.SDK/Roslyn.SDK.IntegrationTests/AbstractIntegrationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/tests/VisualStudio.Roslyn.SDK/Roslyn.SDK.IntegrationTests/AbstractIntegrationTest.cs -------------------------------------------------------------------------------- /tests/VisualStudio.Roslyn.SDK/Roslyn.SDK.IntegrationTests/CreateProjectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/tests/VisualStudio.Roslyn.SDK/Roslyn.SDK.IntegrationTests/CreateProjectTests.cs -------------------------------------------------------------------------------- /tests/VisualStudio.Roslyn.SDK/Roslyn.SDK.IntegrationTests/InProcess/EditorInProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/tests/VisualStudio.Roslyn.SDK/Roslyn.SDK.IntegrationTests/InProcess/EditorInProcess.cs -------------------------------------------------------------------------------- /tests/VisualStudio.Roslyn.SDK/Roslyn.SDK.IntegrationTests/InProcess/ErrorListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/tests/VisualStudio.Roslyn.SDK/Roslyn.SDK.IntegrationTests/InProcess/ErrorListExtensions.cs -------------------------------------------------------------------------------- /tests/VisualStudio.Roslyn.SDK/Roslyn.SDK.IntegrationTests/InProcess/ErrorListInProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/tests/VisualStudio.Roslyn.SDK/Roslyn.SDK.IntegrationTests/InProcess/ErrorListInProcess.cs -------------------------------------------------------------------------------- /tests/VisualStudio.Roslyn.SDK/Roslyn.SDK.IntegrationTests/InProcess/SolutionExplorerInProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/tests/VisualStudio.Roslyn.SDK/Roslyn.SDK.IntegrationTests/InProcess/SolutionExplorerInProcess.cs -------------------------------------------------------------------------------- /tests/VisualStudio.Roslyn.SDK/Roslyn.SDK.IntegrationTests/Roslyn.SDK.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/tests/VisualStudio.Roslyn.SDK/Roslyn.SDK.IntegrationTests/Roslyn.SDK.IntegrationTests.csproj -------------------------------------------------------------------------------- /tests/VisualStudio.Roslyn.SDK/Roslyn.SDK.IntegrationTests/WellKnownProjectTemplates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/tests/VisualStudio.Roslyn.SDK/Roslyn.SDK.IntegrationTests/WellKnownProjectTemplates.cs -------------------------------------------------------------------------------- /tests/VisualStudio.Roslyn.SDK/Roslyn.SDK.IntegrationTests/XUnitAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/tests/VisualStudio.Roslyn.SDK/Roslyn.SDK.IntegrationTests/XUnitAssemblyInfo.cs -------------------------------------------------------------------------------- /tests/VisualStudio.Roslyn.SDK/Roslyn.SDK.UnitTests/ResourceLocationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/tests/VisualStudio.Roslyn.SDK/Roslyn.SDK.UnitTests/ResourceLocationTests.cs -------------------------------------------------------------------------------- /tests/VisualStudio.Roslyn.SDK/Roslyn.SDK.UnitTests/Roslyn.SDK.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/roslyn-sdk/HEAD/tests/VisualStudio.Roslyn.SDK/Roslyn.SDK.UnitTests/Roslyn.SDK.UnitTests.csproj --------------------------------------------------------------------------------