├── .editorconfig ├── .gitattributes ├── .github └── dependabot.yml ├── .gitignore ├── .nuke ├── build.schema.json └── parameters.json ├── Directory.Build.props ├── LICENSE ├── README.md ├── appveyor.yml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── images └── highlighting.png ├── rules ├── AnonymousObjectDestructuringProblem.md ├── ComplexObjectDestructuringProblem.md ├── ComplexObjectInContextDestructuringProblem.md ├── ContextualLoggerProblem.md ├── ExceptionPassedAsTemplateArgumentProblem.md ├── InconsistentContextLogPropertyNaming.md ├── InconsistentLogPropertyNaming.md ├── LogMessageIsSentenceProblem.md ├── PositionalPropertyUsedProblem.md ├── TemplateDuplicatePropertyProblem.md └── TemplateIsNotCompileTimeConstantProblem.md ├── settings.gradle ├── src ├── .idea │ └── .idea.ReSharper.Structured.Logging │ │ └── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── encodings.xml │ │ ├── indexLayout.xml │ │ └── vcs.xml ├── .run │ ├── Pack ReSharper.run.xml │ ├── Pack Rider.run.xml │ ├── Test ReSharper.run.xml │ └── Test Rider.run.xml ├── ReSharper.Structured.Logging.sln ├── ReSharper.Structured.Logging │ ├── Analyzer │ │ ├── AnonymousTypeDestructureAnalyzer.cs │ │ ├── CompileTimeConstantTemplateAnalyzer.cs │ │ ├── ComplexObjectDestructureAnalyzer.cs │ │ ├── ContextualLoggerConstructorAnalyzer.cs │ │ ├── ContextualLoggerSerilogFactoryAnalyzer.cs │ │ ├── CorrectExceptionPassingAnalyzer.cs │ │ ├── DuplicatePropertiesTemplateAnalyzer.cs │ │ ├── LogMessageIsSentenceAnalyzer.cs │ │ ├── PositionalPropertiesUsageAnalyzer.cs │ │ └── PropertiesNamingAnalyzer.cs │ ├── Caching │ │ └── TemplateParameterNameAttributeProvider.cs │ ├── Extensions │ │ └── PsiExtensions.cs │ ├── Highlighting │ │ ├── AnonymousObjectWithoutDestructuringWarning.cs │ │ ├── ComplexObjectDestructuringInContextWarning.cs │ │ ├── ComplexObjectDestructuringWarning.cs │ │ ├── ComplexObjectDestructuringWarningBase.cs │ │ ├── ContextualLoggerWarning.cs │ │ ├── DuplicateTemplatePropertyWarning.cs │ │ ├── ExceptionPassedAsTemplateArgumentWarning.cs │ │ ├── InconsistentContextLogPropertyNamingWarning.cs │ │ ├── InconsistentLogPropertyNamingWarning.cs │ │ ├── InconsistentLogPropertyNamingWarningBase.cs │ │ ├── LogMessageIsSentenceWarning.cs │ │ ├── PositionalPropertyUsedWarning.cs │ │ ├── TemplateFormatStringNonExistingArgumentWarning.cs │ │ └── TemplateIsNotCompileTimeConstantWarning.cs │ ├── Models │ │ └── MessageTemplateTokenInformation.cs │ ├── QuickFixes │ │ ├── AddDestructuringToMessageTemplatePropertyFix.cs │ │ ├── RemoveTrailingPeriodFix.cs │ │ ├── RenameContextLogPropertyFix.cs │ │ ├── RenameLogPropertyFix.cs │ │ └── TemplateIsNotCompileTimeConstantFix.cs │ ├── ReSharper.Structured.Logging.Rider.csproj │ ├── ReSharper.Structured.Logging.csproj │ ├── Serilog │ │ ├── Core │ │ │ └── IMessageTemplateParser.cs │ │ ├── Events │ │ │ └── MessageTemplate.cs │ │ └── Parsing │ │ │ ├── Alignment.cs │ │ │ ├── AlignmentDirection.cs │ │ │ ├── Destructuring.cs │ │ │ ├── MessageTemplateParser.cs │ │ │ ├── MessageTemplateToken.cs │ │ │ ├── PropertyToken.cs │ │ │ └── TextToken.cs │ ├── Settings │ │ ├── PropertyNamingType.cs │ │ ├── StructuredLoggingGroup.cs │ │ ├── StructuredLoggingOptionsPage.cs │ │ ├── StructuredLoggingSettings.cs │ │ └── StructuredLoggingSettingsAccessor.cs │ ├── Utils │ │ └── PropertyNameProvider.cs │ ├── Wiki │ │ └── StructuredLoggingWikiDataProvider.cs │ ├── ZoneMarker.cs │ └── app.config └── rider │ └── main │ ├── kotlin │ └── com │ │ └── jetbrains │ │ └── rider │ │ └── settings │ │ ├── StructuredLoggingBundle.kt │ │ └── StructuredLoggingPluginOptionsPage.kt │ └── resources │ ├── META-INF │ └── plugin.xml │ └── messages │ └── StructuredLoggingBundle.properties └── test ├── data ├── Analyzers │ ├── AnonymousTypeDestructure │ │ ├── SerilogWithComplexPropertyWithoutDestructure.cs │ │ ├── SerilogWithComplexPropertyWithoutDestructure.cs.gold │ │ ├── SerilogWithoutDestructure.cs │ │ └── SerilogWithoutDestructure.cs.gold │ ├── ComplexTypeDestructure │ │ ├── SerilogContextExplicitDestructure.cs │ │ ├── SerilogContextExplicitDestructure.cs.gold │ │ ├── SerilogContextNumericWithoutDestructure.cs │ │ ├── SerilogContextNumericWithoutDestructure.cs.gold │ │ ├── SerilogContextWithoutDestructure.cs │ │ ├── SerilogContextWithoutDestructure.cs.gold │ │ ├── SerilogCustomExceptionWithoutDestructure.cs │ │ ├── SerilogCustomExceptionWithoutDestructure.cs.gold │ │ ├── SerilogDictionaryWithoutDestructure.cs │ │ ├── SerilogDictionaryWithoutDestructure.cs.gold │ │ ├── SerilogEnumerableWithoutDestructure.cs │ │ ├── SerilogEnumerableWithoutDestructure.cs.gold │ │ ├── SerilogForceStringWithoutDestructure.cs │ │ ├── SerilogForceStringWithoutDestructure.cs.gold │ │ ├── SerilogNullableWithoutDestructure.cs │ │ ├── SerilogNullableWithoutDestructure.cs.gold │ │ ├── SerilogNumericWithoutDestructure.cs │ │ ├── SerilogNumericWithoutDestructure.cs.gold │ │ ├── SerilogParentWithOverriddenToString.cs │ │ ├── SerilogParentWithOverriddenToString.cs.gold │ │ ├── SerilogWithoutDestructure.cs │ │ └── SerilogWithoutDestructure.cs.gold │ ├── ContextualLoggerConstructor │ │ ├── MicrosoftCorrectContextType.cs │ │ ├── MicrosoftCorrectContextType.cs.gold │ │ ├── MicrosoftWrongContextType.cs │ │ ├── MicrosoftWrongContextType.cs.gold │ │ ├── MicrosoftWrongContextTypeMultipleNamespaces.cs │ │ ├── MicrosoftWrongContextTypeMultipleNamespaces.cs.gold │ │ ├── MicrosoftWrongContextTypeMultipleParameters.cs │ │ └── MicrosoftWrongContextTypeMultipleParameters.cs.gold │ ├── ContextualLoggerSerilogFactory │ │ ├── SerilogCorrectContextType.cs │ │ ├── SerilogCorrectContextType.cs.gold │ │ ├── SerilogWrongContextType.cs │ │ └── SerilogWrongContextType.cs.gold │ ├── CorrectExceptionPassing │ │ ├── SerilogCorrectExceptionPassing.cs │ │ ├── SerilogCorrectExceptionPassing.cs.gold │ │ ├── SerilogIncorrectExceptionPassing.cs │ │ ├── SerilogIncorrectExceptionPassing.cs.gold │ │ ├── SerilogIncorrectExceptionPassingDynamicTemplate.cs │ │ ├── SerilogIncorrectExceptionPassingDynamicTemplate.cs.gold │ │ ├── SerilogMultipleExceptionPassing.cs │ │ └── SerilogMultipleExceptionPassing.cs.gold │ ├── DuplicatePropertiesTemplate │ │ ├── SerilogDuplicateNamedProperty.cs │ │ └── SerilogDuplicateNamedProperty.cs.gold │ ├── LogMessageIsSentence │ │ ├── SerilogNotSentenceMessage.cs │ │ ├── SerilogNotSentenceMessage.cs.gold │ │ ├── SerilogSentenceMessage.cs │ │ └── SerilogSentenceMessage.cs.gold │ ├── PositionalPropertiesUsage │ │ ├── SerilogPositionProperty.cs │ │ └── SerilogPositionProperty.cs.gold │ ├── PropertiesNamingAnalyzer │ │ ├── SerilogContextInterpolatedStringProperty.cs │ │ ├── SerilogContextInterpolatedStringProperty.cs.gold │ │ ├── SerilogContextInvalidNamedProperty.cs │ │ ├── SerilogContextInvalidNamedProperty.cs.gold │ │ ├── SerilogIgnoredInvalidNamedProperty.cs │ │ ├── SerilogIgnoredInvalidNamedProperty.cs.gold │ │ ├── SerilogInvalidElasticNamedProperty.cs │ │ ├── SerilogInvalidElasticNamedProperty.cs.gold │ │ ├── SerilogInvalidNamedProperty.cs │ │ ├── SerilogInvalidNamedProperty.cs.gold │ │ ├── SerilogInvalidNamedPropertyWithDot.cs │ │ ├── SerilogInvalidNamedPropertyWithDot.cs.gold │ │ ├── SerilogInvalidNamedPropertyWithSpace.cs │ │ ├── SerilogInvalidNamedPropertyWithSpace.cs.gold │ │ ├── SerilogInvalidSyntax.cs │ │ ├── SerilogInvalidSyntax.cs.gold │ │ ├── SerilogValidDestructuredNamedProperty.cs │ │ ├── SerilogValidDestructuredNamedProperty.cs.gold │ │ ├── SerilogValidNamedProperty.cs │ │ └── SerilogValidNamedProperty.cs.gold │ └── PropertiesNamingAnalyzerDotNet6 │ │ ├── ZLoggerInvalidNamedProperty.cs │ │ └── ZLoggerInvalidNamedProperty.cs.gold ├── QuickFixes │ ├── AddDestructuringFix │ │ ├── SerilogEscapedString.cs │ │ ├── SerilogEscapedString.cs.gold │ │ ├── SerilogNewAnonymousObject.cs │ │ ├── SerilogNewAnonymousObject.cs.gold │ │ ├── SerilogNewComplexObject.cs │ │ └── SerilogNewComplexObject.cs.gold │ ├── RemoveTrailingPeriodFix │ │ ├── SerilogTrailingPeriod.cs │ │ └── SerilogTrailingPeriod.cs.gold │ ├── RenameContextLogPropertyFix │ │ ├── SerilogContextProperty.cs │ │ └── SerilogContextProperty.cs.gold │ └── RenameLogPropertyFix │ │ ├── SerilogDestructuredProperty.cs │ │ ├── SerilogDestructuredProperty.cs.gold │ │ ├── SerilogProperty.cs │ │ ├── SerilogProperty.cs.gold │ │ ├── SerilogPropertyConcatenated.cs │ │ └── SerilogPropertyConcatenated.cs.gold └── nuget.config └── src ├── Analyzer ├── AnonymousTypeDestructureAnalyzerTests.cs ├── ComplexObjectDestructureAnalyzerTests.cs ├── ContextualLoggerConstructorAnalyzerTests.cs ├── ContextualLoggerSerilogFactoryAnalyzerTests.cs ├── CorrectExceptionPassingAnalyzerTests.cs ├── DuplicatePropertiesTemplateAnalyzerTests.cs ├── LogMessageIsSentenceAnalyzerTests.cs ├── MessageTemplateTests.cs ├── PositionalPropertiesUsageAnalyzerTests.cs ├── PropertiesElasticNamingAnalyzerTests.cs ├── PropertiesIgnoredRegexNamingAnalyzerTests.cs ├── PropertiesNamingAnalyzerDotNet6Tests.cs └── PropertiesNamingAnalyzerTests.cs ├── Constants └── NugetPackages.cs ├── QuickFixes ├── AddDestructuringToMessageTemplatePropertyFixTests.cs ├── QuickFixTestBase.cs ├── RemoveTrailingPeriodFixTests.cs ├── RenameContextLogPropertyFixTests.cs └── RenameLogPropertyFixTests.cs ├── ReSharper.Structured.Logging.Rider.Tests.csproj ├── ReSharper.Structured.Logging.Tests.csproj ├── TestEnvironment.cs └── app.config /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuke/build.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/.nuke/build.schema.json -------------------------------------------------------------------------------- /.nuke/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/.nuke/parameters.json -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/appveyor.yml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/gradlew.bat -------------------------------------------------------------------------------- /images/highlighting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/images/highlighting.png -------------------------------------------------------------------------------- /rules/AnonymousObjectDestructuringProblem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/rules/AnonymousObjectDestructuringProblem.md -------------------------------------------------------------------------------- /rules/ComplexObjectDestructuringProblem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/rules/ComplexObjectDestructuringProblem.md -------------------------------------------------------------------------------- /rules/ComplexObjectInContextDestructuringProblem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/rules/ComplexObjectInContextDestructuringProblem.md -------------------------------------------------------------------------------- /rules/ContextualLoggerProblem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/rules/ContextualLoggerProblem.md -------------------------------------------------------------------------------- /rules/ExceptionPassedAsTemplateArgumentProblem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/rules/ExceptionPassedAsTemplateArgumentProblem.md -------------------------------------------------------------------------------- /rules/InconsistentContextLogPropertyNaming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/rules/InconsistentContextLogPropertyNaming.md -------------------------------------------------------------------------------- /rules/InconsistentLogPropertyNaming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/rules/InconsistentLogPropertyNaming.md -------------------------------------------------------------------------------- /rules/LogMessageIsSentenceProblem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/rules/LogMessageIsSentenceProblem.md -------------------------------------------------------------------------------- /rules/PositionalPropertyUsedProblem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/rules/PositionalPropertyUsedProblem.md -------------------------------------------------------------------------------- /rules/TemplateDuplicatePropertyProblem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/rules/TemplateDuplicatePropertyProblem.md -------------------------------------------------------------------------------- /rules/TemplateIsNotCompileTimeConstantProblem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/rules/TemplateIsNotCompileTimeConstantProblem.md -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'rider-structured-logging' 2 | -------------------------------------------------------------------------------- /src/.idea/.idea.ReSharper.Structured.Logging/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/.idea/.idea.ReSharper.Structured.Logging/.idea/.gitignore -------------------------------------------------------------------------------- /src/.idea/.idea.ReSharper.Structured.Logging/.idea/.name: -------------------------------------------------------------------------------- 1 | ReSharper.Structured.Logging -------------------------------------------------------------------------------- /src/.idea/.idea.ReSharper.Structured.Logging/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/.idea/.idea.ReSharper.Structured.Logging/.idea/encodings.xml -------------------------------------------------------------------------------- /src/.idea/.idea.ReSharper.Structured.Logging/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/.idea/.idea.ReSharper.Structured.Logging/.idea/indexLayout.xml -------------------------------------------------------------------------------- /src/.idea/.idea.ReSharper.Structured.Logging/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/.idea/.idea.ReSharper.Structured.Logging/.idea/vcs.xml -------------------------------------------------------------------------------- /src/.run/Pack ReSharper.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/.run/Pack ReSharper.run.xml -------------------------------------------------------------------------------- /src/.run/Pack Rider.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/.run/Pack Rider.run.xml -------------------------------------------------------------------------------- /src/.run/Test ReSharper.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/.run/Test ReSharper.run.xml -------------------------------------------------------------------------------- /src/.run/Test Rider.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/.run/Test Rider.run.xml -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging.sln -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Analyzer/AnonymousTypeDestructureAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Analyzer/AnonymousTypeDestructureAnalyzer.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Analyzer/CompileTimeConstantTemplateAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Analyzer/CompileTimeConstantTemplateAnalyzer.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Analyzer/ComplexObjectDestructureAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Analyzer/ComplexObjectDestructureAnalyzer.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Analyzer/ContextualLoggerConstructorAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Analyzer/ContextualLoggerConstructorAnalyzer.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Analyzer/ContextualLoggerSerilogFactoryAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Analyzer/ContextualLoggerSerilogFactoryAnalyzer.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Analyzer/CorrectExceptionPassingAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Analyzer/CorrectExceptionPassingAnalyzer.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Analyzer/DuplicatePropertiesTemplateAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Analyzer/DuplicatePropertiesTemplateAnalyzer.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Analyzer/LogMessageIsSentenceAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Analyzer/LogMessageIsSentenceAnalyzer.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Analyzer/PositionalPropertiesUsageAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Analyzer/PositionalPropertiesUsageAnalyzer.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Analyzer/PropertiesNamingAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Analyzer/PropertiesNamingAnalyzer.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Caching/TemplateParameterNameAttributeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Caching/TemplateParameterNameAttributeProvider.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Extensions/PsiExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Extensions/PsiExtensions.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Highlighting/AnonymousObjectWithoutDestructuringWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Highlighting/AnonymousObjectWithoutDestructuringWarning.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Highlighting/ComplexObjectDestructuringInContextWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Highlighting/ComplexObjectDestructuringInContextWarning.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Highlighting/ComplexObjectDestructuringWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Highlighting/ComplexObjectDestructuringWarning.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Highlighting/ComplexObjectDestructuringWarningBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Highlighting/ComplexObjectDestructuringWarningBase.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Highlighting/ContextualLoggerWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Highlighting/ContextualLoggerWarning.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Highlighting/DuplicateTemplatePropertyWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Highlighting/DuplicateTemplatePropertyWarning.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Highlighting/ExceptionPassedAsTemplateArgumentWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Highlighting/ExceptionPassedAsTemplateArgumentWarning.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Highlighting/InconsistentContextLogPropertyNamingWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Highlighting/InconsistentContextLogPropertyNamingWarning.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Highlighting/InconsistentLogPropertyNamingWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Highlighting/InconsistentLogPropertyNamingWarning.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Highlighting/InconsistentLogPropertyNamingWarningBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Highlighting/InconsistentLogPropertyNamingWarningBase.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Highlighting/LogMessageIsSentenceWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Highlighting/LogMessageIsSentenceWarning.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Highlighting/PositionalPropertyUsedWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Highlighting/PositionalPropertyUsedWarning.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Highlighting/TemplateFormatStringNonExistingArgumentWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Highlighting/TemplateFormatStringNonExistingArgumentWarning.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Highlighting/TemplateIsNotCompileTimeConstantWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Highlighting/TemplateIsNotCompileTimeConstantWarning.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Models/MessageTemplateTokenInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Models/MessageTemplateTokenInformation.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/QuickFixes/AddDestructuringToMessageTemplatePropertyFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/QuickFixes/AddDestructuringToMessageTemplatePropertyFix.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/QuickFixes/RemoveTrailingPeriodFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/QuickFixes/RemoveTrailingPeriodFix.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/QuickFixes/RenameContextLogPropertyFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/QuickFixes/RenameContextLogPropertyFix.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/QuickFixes/RenameLogPropertyFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/QuickFixes/RenameLogPropertyFix.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/QuickFixes/TemplateIsNotCompileTimeConstantFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/QuickFixes/TemplateIsNotCompileTimeConstantFix.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/ReSharper.Structured.Logging.Rider.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/ReSharper.Structured.Logging.Rider.csproj -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/ReSharper.Structured.Logging.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/ReSharper.Structured.Logging.csproj -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Serilog/Core/IMessageTemplateParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Serilog/Core/IMessageTemplateParser.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Serilog/Events/MessageTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Serilog/Events/MessageTemplate.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Serilog/Parsing/Alignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Serilog/Parsing/Alignment.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Serilog/Parsing/AlignmentDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Serilog/Parsing/AlignmentDirection.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Serilog/Parsing/Destructuring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Serilog/Parsing/Destructuring.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Serilog/Parsing/MessageTemplateParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Serilog/Parsing/MessageTemplateParser.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Serilog/Parsing/MessageTemplateToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Serilog/Parsing/MessageTemplateToken.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Serilog/Parsing/PropertyToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Serilog/Parsing/PropertyToken.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Serilog/Parsing/TextToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Serilog/Parsing/TextToken.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Settings/PropertyNamingType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Settings/PropertyNamingType.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Settings/StructuredLoggingGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Settings/StructuredLoggingGroup.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Settings/StructuredLoggingOptionsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Settings/StructuredLoggingOptionsPage.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Settings/StructuredLoggingSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Settings/StructuredLoggingSettings.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Settings/StructuredLoggingSettingsAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Settings/StructuredLoggingSettingsAccessor.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Utils/PropertyNameProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Utils/PropertyNameProvider.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/Wiki/StructuredLoggingWikiDataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/Wiki/StructuredLoggingWikiDataProvider.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/ZoneMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/ZoneMarker.cs -------------------------------------------------------------------------------- /src/ReSharper.Structured.Logging/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/ReSharper.Structured.Logging/app.config -------------------------------------------------------------------------------- /src/rider/main/kotlin/com/jetbrains/rider/settings/StructuredLoggingBundle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/rider/main/kotlin/com/jetbrains/rider/settings/StructuredLoggingBundle.kt -------------------------------------------------------------------------------- /src/rider/main/kotlin/com/jetbrains/rider/settings/StructuredLoggingPluginOptionsPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/rider/main/kotlin/com/jetbrains/rider/settings/StructuredLoggingPluginOptionsPage.kt -------------------------------------------------------------------------------- /src/rider/main/resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/rider/main/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /src/rider/main/resources/messages/StructuredLoggingBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/src/rider/main/resources/messages/StructuredLoggingBundle.properties -------------------------------------------------------------------------------- /test/data/Analyzers/AnonymousTypeDestructure/SerilogWithComplexPropertyWithoutDestructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/AnonymousTypeDestructure/SerilogWithComplexPropertyWithoutDestructure.cs -------------------------------------------------------------------------------- /test/data/Analyzers/AnonymousTypeDestructure/SerilogWithComplexPropertyWithoutDestructure.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/AnonymousTypeDestructure/SerilogWithComplexPropertyWithoutDestructure.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/AnonymousTypeDestructure/SerilogWithoutDestructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/AnonymousTypeDestructure/SerilogWithoutDestructure.cs -------------------------------------------------------------------------------- /test/data/Analyzers/AnonymousTypeDestructure/SerilogWithoutDestructure.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/AnonymousTypeDestructure/SerilogWithoutDestructure.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/ComplexTypeDestructure/SerilogContextExplicitDestructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/ComplexTypeDestructure/SerilogContextExplicitDestructure.cs -------------------------------------------------------------------------------- /test/data/Analyzers/ComplexTypeDestructure/SerilogContextExplicitDestructure.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/ComplexTypeDestructure/SerilogContextExplicitDestructure.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/ComplexTypeDestructure/SerilogContextNumericWithoutDestructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/ComplexTypeDestructure/SerilogContextNumericWithoutDestructure.cs -------------------------------------------------------------------------------- /test/data/Analyzers/ComplexTypeDestructure/SerilogContextNumericWithoutDestructure.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/ComplexTypeDestructure/SerilogContextNumericWithoutDestructure.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/ComplexTypeDestructure/SerilogContextWithoutDestructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/ComplexTypeDestructure/SerilogContextWithoutDestructure.cs -------------------------------------------------------------------------------- /test/data/Analyzers/ComplexTypeDestructure/SerilogContextWithoutDestructure.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/ComplexTypeDestructure/SerilogContextWithoutDestructure.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/ComplexTypeDestructure/SerilogCustomExceptionWithoutDestructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/ComplexTypeDestructure/SerilogCustomExceptionWithoutDestructure.cs -------------------------------------------------------------------------------- /test/data/Analyzers/ComplexTypeDestructure/SerilogCustomExceptionWithoutDestructure.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/ComplexTypeDestructure/SerilogCustomExceptionWithoutDestructure.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/ComplexTypeDestructure/SerilogDictionaryWithoutDestructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/ComplexTypeDestructure/SerilogDictionaryWithoutDestructure.cs -------------------------------------------------------------------------------- /test/data/Analyzers/ComplexTypeDestructure/SerilogDictionaryWithoutDestructure.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/ComplexTypeDestructure/SerilogDictionaryWithoutDestructure.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/ComplexTypeDestructure/SerilogEnumerableWithoutDestructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/ComplexTypeDestructure/SerilogEnumerableWithoutDestructure.cs -------------------------------------------------------------------------------- /test/data/Analyzers/ComplexTypeDestructure/SerilogEnumerableWithoutDestructure.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/ComplexTypeDestructure/SerilogEnumerableWithoutDestructure.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/ComplexTypeDestructure/SerilogForceStringWithoutDestructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/ComplexTypeDestructure/SerilogForceStringWithoutDestructure.cs -------------------------------------------------------------------------------- /test/data/Analyzers/ComplexTypeDestructure/SerilogForceStringWithoutDestructure.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/ComplexTypeDestructure/SerilogForceStringWithoutDestructure.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/ComplexTypeDestructure/SerilogNullableWithoutDestructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/ComplexTypeDestructure/SerilogNullableWithoutDestructure.cs -------------------------------------------------------------------------------- /test/data/Analyzers/ComplexTypeDestructure/SerilogNullableWithoutDestructure.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/ComplexTypeDestructure/SerilogNullableWithoutDestructure.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/ComplexTypeDestructure/SerilogNumericWithoutDestructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/ComplexTypeDestructure/SerilogNumericWithoutDestructure.cs -------------------------------------------------------------------------------- /test/data/Analyzers/ComplexTypeDestructure/SerilogNumericWithoutDestructure.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/ComplexTypeDestructure/SerilogNumericWithoutDestructure.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/ComplexTypeDestructure/SerilogParentWithOverriddenToString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/ComplexTypeDestructure/SerilogParentWithOverriddenToString.cs -------------------------------------------------------------------------------- /test/data/Analyzers/ComplexTypeDestructure/SerilogParentWithOverriddenToString.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/ComplexTypeDestructure/SerilogParentWithOverriddenToString.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/ComplexTypeDestructure/SerilogWithoutDestructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/ComplexTypeDestructure/SerilogWithoutDestructure.cs -------------------------------------------------------------------------------- /test/data/Analyzers/ComplexTypeDestructure/SerilogWithoutDestructure.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/ComplexTypeDestructure/SerilogWithoutDestructure.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/ContextualLoggerConstructor/MicrosoftCorrectContextType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/ContextualLoggerConstructor/MicrosoftCorrectContextType.cs -------------------------------------------------------------------------------- /test/data/Analyzers/ContextualLoggerConstructor/MicrosoftCorrectContextType.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/ContextualLoggerConstructor/MicrosoftCorrectContextType.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/ContextualLoggerConstructor/MicrosoftWrongContextType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/ContextualLoggerConstructor/MicrosoftWrongContextType.cs -------------------------------------------------------------------------------- /test/data/Analyzers/ContextualLoggerConstructor/MicrosoftWrongContextType.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/ContextualLoggerConstructor/MicrosoftWrongContextType.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/ContextualLoggerConstructor/MicrosoftWrongContextTypeMultipleNamespaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/ContextualLoggerConstructor/MicrosoftWrongContextTypeMultipleNamespaces.cs -------------------------------------------------------------------------------- /test/data/Analyzers/ContextualLoggerConstructor/MicrosoftWrongContextTypeMultipleNamespaces.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/ContextualLoggerConstructor/MicrosoftWrongContextTypeMultipleNamespaces.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/ContextualLoggerConstructor/MicrosoftWrongContextTypeMultipleParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/ContextualLoggerConstructor/MicrosoftWrongContextTypeMultipleParameters.cs -------------------------------------------------------------------------------- /test/data/Analyzers/ContextualLoggerConstructor/MicrosoftWrongContextTypeMultipleParameters.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/ContextualLoggerConstructor/MicrosoftWrongContextTypeMultipleParameters.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/ContextualLoggerSerilogFactory/SerilogCorrectContextType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/ContextualLoggerSerilogFactory/SerilogCorrectContextType.cs -------------------------------------------------------------------------------- /test/data/Analyzers/ContextualLoggerSerilogFactory/SerilogCorrectContextType.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/ContextualLoggerSerilogFactory/SerilogCorrectContextType.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/ContextualLoggerSerilogFactory/SerilogWrongContextType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/ContextualLoggerSerilogFactory/SerilogWrongContextType.cs -------------------------------------------------------------------------------- /test/data/Analyzers/ContextualLoggerSerilogFactory/SerilogWrongContextType.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/ContextualLoggerSerilogFactory/SerilogWrongContextType.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/CorrectExceptionPassing/SerilogCorrectExceptionPassing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/CorrectExceptionPassing/SerilogCorrectExceptionPassing.cs -------------------------------------------------------------------------------- /test/data/Analyzers/CorrectExceptionPassing/SerilogCorrectExceptionPassing.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/CorrectExceptionPassing/SerilogCorrectExceptionPassing.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/CorrectExceptionPassing/SerilogIncorrectExceptionPassing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/CorrectExceptionPassing/SerilogIncorrectExceptionPassing.cs -------------------------------------------------------------------------------- /test/data/Analyzers/CorrectExceptionPassing/SerilogIncorrectExceptionPassing.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/CorrectExceptionPassing/SerilogIncorrectExceptionPassing.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/CorrectExceptionPassing/SerilogIncorrectExceptionPassingDynamicTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/CorrectExceptionPassing/SerilogIncorrectExceptionPassingDynamicTemplate.cs -------------------------------------------------------------------------------- /test/data/Analyzers/CorrectExceptionPassing/SerilogIncorrectExceptionPassingDynamicTemplate.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/CorrectExceptionPassing/SerilogIncorrectExceptionPassingDynamicTemplate.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/CorrectExceptionPassing/SerilogMultipleExceptionPassing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/CorrectExceptionPassing/SerilogMultipleExceptionPassing.cs -------------------------------------------------------------------------------- /test/data/Analyzers/CorrectExceptionPassing/SerilogMultipleExceptionPassing.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/CorrectExceptionPassing/SerilogMultipleExceptionPassing.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/DuplicatePropertiesTemplate/SerilogDuplicateNamedProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/DuplicatePropertiesTemplate/SerilogDuplicateNamedProperty.cs -------------------------------------------------------------------------------- /test/data/Analyzers/DuplicatePropertiesTemplate/SerilogDuplicateNamedProperty.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/DuplicatePropertiesTemplate/SerilogDuplicateNamedProperty.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/LogMessageIsSentence/SerilogNotSentenceMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/LogMessageIsSentence/SerilogNotSentenceMessage.cs -------------------------------------------------------------------------------- /test/data/Analyzers/LogMessageIsSentence/SerilogNotSentenceMessage.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/LogMessageIsSentence/SerilogNotSentenceMessage.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/LogMessageIsSentence/SerilogSentenceMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/LogMessageIsSentence/SerilogSentenceMessage.cs -------------------------------------------------------------------------------- /test/data/Analyzers/LogMessageIsSentence/SerilogSentenceMessage.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/LogMessageIsSentence/SerilogSentenceMessage.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/PositionalPropertiesUsage/SerilogPositionProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/PositionalPropertiesUsage/SerilogPositionProperty.cs -------------------------------------------------------------------------------- /test/data/Analyzers/PositionalPropertiesUsage/SerilogPositionProperty.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/PositionalPropertiesUsage/SerilogPositionProperty.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/PropertiesNamingAnalyzer/SerilogContextInterpolatedStringProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/PropertiesNamingAnalyzer/SerilogContextInterpolatedStringProperty.cs -------------------------------------------------------------------------------- /test/data/Analyzers/PropertiesNamingAnalyzer/SerilogContextInterpolatedStringProperty.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/PropertiesNamingAnalyzer/SerilogContextInterpolatedStringProperty.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/PropertiesNamingAnalyzer/SerilogContextInvalidNamedProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/PropertiesNamingAnalyzer/SerilogContextInvalidNamedProperty.cs -------------------------------------------------------------------------------- /test/data/Analyzers/PropertiesNamingAnalyzer/SerilogContextInvalidNamedProperty.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/PropertiesNamingAnalyzer/SerilogContextInvalidNamedProperty.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/PropertiesNamingAnalyzer/SerilogIgnoredInvalidNamedProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/PropertiesNamingAnalyzer/SerilogIgnoredInvalidNamedProperty.cs -------------------------------------------------------------------------------- /test/data/Analyzers/PropertiesNamingAnalyzer/SerilogIgnoredInvalidNamedProperty.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/PropertiesNamingAnalyzer/SerilogIgnoredInvalidNamedProperty.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/PropertiesNamingAnalyzer/SerilogInvalidElasticNamedProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/PropertiesNamingAnalyzer/SerilogInvalidElasticNamedProperty.cs -------------------------------------------------------------------------------- /test/data/Analyzers/PropertiesNamingAnalyzer/SerilogInvalidElasticNamedProperty.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/PropertiesNamingAnalyzer/SerilogInvalidElasticNamedProperty.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/PropertiesNamingAnalyzer/SerilogInvalidNamedProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/PropertiesNamingAnalyzer/SerilogInvalidNamedProperty.cs -------------------------------------------------------------------------------- /test/data/Analyzers/PropertiesNamingAnalyzer/SerilogInvalidNamedProperty.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/PropertiesNamingAnalyzer/SerilogInvalidNamedProperty.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/PropertiesNamingAnalyzer/SerilogInvalidNamedPropertyWithDot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/PropertiesNamingAnalyzer/SerilogInvalidNamedPropertyWithDot.cs -------------------------------------------------------------------------------- /test/data/Analyzers/PropertiesNamingAnalyzer/SerilogInvalidNamedPropertyWithDot.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/PropertiesNamingAnalyzer/SerilogInvalidNamedPropertyWithDot.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/PropertiesNamingAnalyzer/SerilogInvalidNamedPropertyWithSpace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/PropertiesNamingAnalyzer/SerilogInvalidNamedPropertyWithSpace.cs -------------------------------------------------------------------------------- /test/data/Analyzers/PropertiesNamingAnalyzer/SerilogInvalidNamedPropertyWithSpace.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/PropertiesNamingAnalyzer/SerilogInvalidNamedPropertyWithSpace.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/PropertiesNamingAnalyzer/SerilogInvalidSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/PropertiesNamingAnalyzer/SerilogInvalidSyntax.cs -------------------------------------------------------------------------------- /test/data/Analyzers/PropertiesNamingAnalyzer/SerilogInvalidSyntax.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/PropertiesNamingAnalyzer/SerilogInvalidSyntax.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/PropertiesNamingAnalyzer/SerilogValidDestructuredNamedProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/PropertiesNamingAnalyzer/SerilogValidDestructuredNamedProperty.cs -------------------------------------------------------------------------------- /test/data/Analyzers/PropertiesNamingAnalyzer/SerilogValidDestructuredNamedProperty.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/PropertiesNamingAnalyzer/SerilogValidDestructuredNamedProperty.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/PropertiesNamingAnalyzer/SerilogValidNamedProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/PropertiesNamingAnalyzer/SerilogValidNamedProperty.cs -------------------------------------------------------------------------------- /test/data/Analyzers/PropertiesNamingAnalyzer/SerilogValidNamedProperty.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/PropertiesNamingAnalyzer/SerilogValidNamedProperty.cs.gold -------------------------------------------------------------------------------- /test/data/Analyzers/PropertiesNamingAnalyzerDotNet6/ZLoggerInvalidNamedProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/PropertiesNamingAnalyzerDotNet6/ZLoggerInvalidNamedProperty.cs -------------------------------------------------------------------------------- /test/data/Analyzers/PropertiesNamingAnalyzerDotNet6/ZLoggerInvalidNamedProperty.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/Analyzers/PropertiesNamingAnalyzerDotNet6/ZLoggerInvalidNamedProperty.cs.gold -------------------------------------------------------------------------------- /test/data/QuickFixes/AddDestructuringFix/SerilogEscapedString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/QuickFixes/AddDestructuringFix/SerilogEscapedString.cs -------------------------------------------------------------------------------- /test/data/QuickFixes/AddDestructuringFix/SerilogEscapedString.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/QuickFixes/AddDestructuringFix/SerilogEscapedString.cs.gold -------------------------------------------------------------------------------- /test/data/QuickFixes/AddDestructuringFix/SerilogNewAnonymousObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/QuickFixes/AddDestructuringFix/SerilogNewAnonymousObject.cs -------------------------------------------------------------------------------- /test/data/QuickFixes/AddDestructuringFix/SerilogNewAnonymousObject.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/QuickFixes/AddDestructuringFix/SerilogNewAnonymousObject.cs.gold -------------------------------------------------------------------------------- /test/data/QuickFixes/AddDestructuringFix/SerilogNewComplexObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/QuickFixes/AddDestructuringFix/SerilogNewComplexObject.cs -------------------------------------------------------------------------------- /test/data/QuickFixes/AddDestructuringFix/SerilogNewComplexObject.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/QuickFixes/AddDestructuringFix/SerilogNewComplexObject.cs.gold -------------------------------------------------------------------------------- /test/data/QuickFixes/RemoveTrailingPeriodFix/SerilogTrailingPeriod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/QuickFixes/RemoveTrailingPeriodFix/SerilogTrailingPeriod.cs -------------------------------------------------------------------------------- /test/data/QuickFixes/RemoveTrailingPeriodFix/SerilogTrailingPeriod.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/QuickFixes/RemoveTrailingPeriodFix/SerilogTrailingPeriod.cs.gold -------------------------------------------------------------------------------- /test/data/QuickFixes/RenameContextLogPropertyFix/SerilogContextProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/QuickFixes/RenameContextLogPropertyFix/SerilogContextProperty.cs -------------------------------------------------------------------------------- /test/data/QuickFixes/RenameContextLogPropertyFix/SerilogContextProperty.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/QuickFixes/RenameContextLogPropertyFix/SerilogContextProperty.cs.gold -------------------------------------------------------------------------------- /test/data/QuickFixes/RenameLogPropertyFix/SerilogDestructuredProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/QuickFixes/RenameLogPropertyFix/SerilogDestructuredProperty.cs -------------------------------------------------------------------------------- /test/data/QuickFixes/RenameLogPropertyFix/SerilogDestructuredProperty.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/QuickFixes/RenameLogPropertyFix/SerilogDestructuredProperty.cs.gold -------------------------------------------------------------------------------- /test/data/QuickFixes/RenameLogPropertyFix/SerilogProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/QuickFixes/RenameLogPropertyFix/SerilogProperty.cs -------------------------------------------------------------------------------- /test/data/QuickFixes/RenameLogPropertyFix/SerilogProperty.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/QuickFixes/RenameLogPropertyFix/SerilogProperty.cs.gold -------------------------------------------------------------------------------- /test/data/QuickFixes/RenameLogPropertyFix/SerilogPropertyConcatenated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/QuickFixes/RenameLogPropertyFix/SerilogPropertyConcatenated.cs -------------------------------------------------------------------------------- /test/data/QuickFixes/RenameLogPropertyFix/SerilogPropertyConcatenated.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/QuickFixes/RenameLogPropertyFix/SerilogPropertyConcatenated.cs.gold -------------------------------------------------------------------------------- /test/data/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/data/nuget.config -------------------------------------------------------------------------------- /test/src/Analyzer/AnonymousTypeDestructureAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/src/Analyzer/AnonymousTypeDestructureAnalyzerTests.cs -------------------------------------------------------------------------------- /test/src/Analyzer/ComplexObjectDestructureAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/src/Analyzer/ComplexObjectDestructureAnalyzerTests.cs -------------------------------------------------------------------------------- /test/src/Analyzer/ContextualLoggerConstructorAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/src/Analyzer/ContextualLoggerConstructorAnalyzerTests.cs -------------------------------------------------------------------------------- /test/src/Analyzer/ContextualLoggerSerilogFactoryAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/src/Analyzer/ContextualLoggerSerilogFactoryAnalyzerTests.cs -------------------------------------------------------------------------------- /test/src/Analyzer/CorrectExceptionPassingAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/src/Analyzer/CorrectExceptionPassingAnalyzerTests.cs -------------------------------------------------------------------------------- /test/src/Analyzer/DuplicatePropertiesTemplateAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/src/Analyzer/DuplicatePropertiesTemplateAnalyzerTests.cs -------------------------------------------------------------------------------- /test/src/Analyzer/LogMessageIsSentenceAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/src/Analyzer/LogMessageIsSentenceAnalyzerTests.cs -------------------------------------------------------------------------------- /test/src/Analyzer/MessageTemplateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/src/Analyzer/MessageTemplateTests.cs -------------------------------------------------------------------------------- /test/src/Analyzer/PositionalPropertiesUsageAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/src/Analyzer/PositionalPropertiesUsageAnalyzerTests.cs -------------------------------------------------------------------------------- /test/src/Analyzer/PropertiesElasticNamingAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/src/Analyzer/PropertiesElasticNamingAnalyzerTests.cs -------------------------------------------------------------------------------- /test/src/Analyzer/PropertiesIgnoredRegexNamingAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/src/Analyzer/PropertiesIgnoredRegexNamingAnalyzerTests.cs -------------------------------------------------------------------------------- /test/src/Analyzer/PropertiesNamingAnalyzerDotNet6Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/src/Analyzer/PropertiesNamingAnalyzerDotNet6Tests.cs -------------------------------------------------------------------------------- /test/src/Analyzer/PropertiesNamingAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/src/Analyzer/PropertiesNamingAnalyzerTests.cs -------------------------------------------------------------------------------- /test/src/Constants/NugetPackages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/src/Constants/NugetPackages.cs -------------------------------------------------------------------------------- /test/src/QuickFixes/AddDestructuringToMessageTemplatePropertyFixTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/src/QuickFixes/AddDestructuringToMessageTemplatePropertyFixTests.cs -------------------------------------------------------------------------------- /test/src/QuickFixes/QuickFixTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/src/QuickFixes/QuickFixTestBase.cs -------------------------------------------------------------------------------- /test/src/QuickFixes/RemoveTrailingPeriodFixTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/src/QuickFixes/RemoveTrailingPeriodFixTests.cs -------------------------------------------------------------------------------- /test/src/QuickFixes/RenameContextLogPropertyFixTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/src/QuickFixes/RenameContextLogPropertyFixTests.cs -------------------------------------------------------------------------------- /test/src/QuickFixes/RenameLogPropertyFixTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/src/QuickFixes/RenameLogPropertyFixTests.cs -------------------------------------------------------------------------------- /test/src/ReSharper.Structured.Logging.Rider.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/src/ReSharper.Structured.Logging.Rider.Tests.csproj -------------------------------------------------------------------------------- /test/src/ReSharper.Structured.Logging.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/src/ReSharper.Structured.Logging.Tests.csproj -------------------------------------------------------------------------------- /test/src/TestEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/src/TestEnvironment.cs -------------------------------------------------------------------------------- /test/src/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/resharper-structured-logging/HEAD/test/src/app.config --------------------------------------------------------------------------------