├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── dependabot.yml ├── stale.yml └── workflows │ ├── merge-dependabot.yml │ └── on-push-do-docs.yml ├── .gitignore ├── code_of_conduct.md ├── docs ├── intro.include.md ├── zzz.include.md └── zzz.png ├── license.txt ├── readme.md └── src ├── .editorconfig ├── .gitattributes ├── Directory.Build.props ├── Directory.Packages.props ├── SampleGenerator ├── GlobalUsings.cs ├── HelloWorldGenerator.cs ├── HelloWorldVbGenerator.cs ├── HelloWorldVbGeneratorWithoutLocation.cs └── SampleGenerator.csproj ├── Shared.sln.DotSettings ├── Tests ├── CodeAnalysisVersionTests.cs ├── GlobalUsings.cs ├── IgnoreTest.IgnoreFile.verified.txt ├── IgnoreTest.SettingsIgnoreFile.verified.txt ├── IgnoreTest.cs ├── ModuleInitializer.cs ├── SampleTest.Driver#helloWorld.verified.cs ├── SampleTest.Driver#helper.verified.cs ├── SampleTest.Driver.verified.txt ├── SampleTest.RunResult.verified.txt ├── SampleTest.RunResults#helloWorld.verified.cs ├── SampleTest.RunResults#helper.verified.cs ├── SampleTest.RunResults.verified.txt ├── SampleTest.cs ├── SampleVbTest.Driver#helloWorld.verified.vb ├── SampleVbTest.Driver#helper.verified.vb ├── SampleVbTest.Driver.verified.txt ├── SampleVbTest.DriverWithoutLocation#helloWorld.verified.vb ├── SampleVbTest.DriverWithoutLocation#helper.verified.vb ├── SampleVbTest.DriverWithoutLocation.verified.txt ├── SampleVbTest.RunResult.verified.txt ├── SampleVbTest.RunResultWithoutLocation.verified.txt ├── SampleVbTest.RunResults#helloWorld.verified.vb ├── SampleVbTest.RunResults#helper.verified.vb ├── SampleVbTest.RunResults.verified.txt ├── SampleVbTest.RunResultsWithoutLocation#helloWorld.verified.vb ├── SampleVbTest.RunResultsWithoutLocation#helper.verified.vb ├── SampleVbTest.RunResultsWithoutLocation.verified.txt ├── SampleVbTest.cs ├── ScrubTest.ScrubLines#helloWorld.verified.cs ├── ScrubTest.ScrubLines#helper.verified.cs ├── ScrubTest.ScrubLines.verified.txt ├── ScrubTest.cs ├── SyntaxLocationTests.ConsistentLocation.verified.txt ├── SyntaxLocationTests.cs ├── Tests.FileLinePositionSpanConverter.verified.txt ├── Tests.FileLinePositionSpanConverter_Empty.verified.txt ├── Tests.LocalizableStringConverter.verified.txt ├── Tests.LocationConverter.verified.txt ├── Tests.SourceTextConverter.verified.txt ├── Tests.cs └── Tests.csproj ├── Verify.SourceGenerators.slnx ├── Verify.SourceGenerators.slnx.DotSettings ├── Verify.SourceGenerators ├── Converters │ ├── DiagnosticConverter.cs │ ├── DiagnosticDescriptorConverter.cs │ ├── FileLinePositionSpanConverter.cs │ ├── GeneratedSourceResultConverter.cs │ ├── LocalizableStringConverter.cs │ ├── LocationConverter.cs │ └── SourceTextConverter.cs ├── GlobalUsings.cs ├── Verify.SourceGenerators.csproj ├── VerifySourceGenerators.cs └── build │ └── Verify.SourceGenerators.targets ├── appveyor.yml ├── global.json ├── icon.png ├── key.snk ├── mdsnippets.json ├── nuget.config └── nuget.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: VerifyTests 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/merge-dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/.github/workflows/merge-dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/on-push-do-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/.github/workflows/on-push-do-docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/.gitignore -------------------------------------------------------------------------------- /code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/code_of_conduct.md -------------------------------------------------------------------------------- /docs/intro.include.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/docs/intro.include.md -------------------------------------------------------------------------------- /docs/zzz.include.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/docs/zzz.include.md -------------------------------------------------------------------------------- /docs/zzz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/docs/zzz.png -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/license.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/readme.md -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/.gitattributes -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Directory.Packages.props -------------------------------------------------------------------------------- /src/SampleGenerator/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/SampleGenerator/GlobalUsings.cs -------------------------------------------------------------------------------- /src/SampleGenerator/HelloWorldGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/SampleGenerator/HelloWorldGenerator.cs -------------------------------------------------------------------------------- /src/SampleGenerator/HelloWorldVbGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/SampleGenerator/HelloWorldVbGenerator.cs -------------------------------------------------------------------------------- /src/SampleGenerator/HelloWorldVbGeneratorWithoutLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/SampleGenerator/HelloWorldVbGeneratorWithoutLocation.cs -------------------------------------------------------------------------------- /src/SampleGenerator/SampleGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/SampleGenerator/SampleGenerator.csproj -------------------------------------------------------------------------------- /src/Shared.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Shared.sln.DotSettings -------------------------------------------------------------------------------- /src/Tests/CodeAnalysisVersionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/CodeAnalysisVersionTests.cs -------------------------------------------------------------------------------- /src/Tests/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/GlobalUsings.cs -------------------------------------------------------------------------------- /src/Tests/IgnoreTest.IgnoreFile.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/IgnoreTest.IgnoreFile.verified.txt -------------------------------------------------------------------------------- /src/Tests/IgnoreTest.SettingsIgnoreFile.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/IgnoreTest.SettingsIgnoreFile.verified.txt -------------------------------------------------------------------------------- /src/Tests/IgnoreTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/IgnoreTest.cs -------------------------------------------------------------------------------- /src/Tests/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Tests/SampleTest.Driver#helloWorld.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/SampleTest.Driver#helloWorld.verified.cs -------------------------------------------------------------------------------- /src/Tests/SampleTest.Driver#helper.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/SampleTest.Driver#helper.verified.cs -------------------------------------------------------------------------------- /src/Tests/SampleTest.Driver.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/SampleTest.Driver.verified.txt -------------------------------------------------------------------------------- /src/Tests/SampleTest.RunResult.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/SampleTest.RunResult.verified.txt -------------------------------------------------------------------------------- /src/Tests/SampleTest.RunResults#helloWorld.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/SampleTest.RunResults#helloWorld.verified.cs -------------------------------------------------------------------------------- /src/Tests/SampleTest.RunResults#helper.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/SampleTest.RunResults#helper.verified.cs -------------------------------------------------------------------------------- /src/Tests/SampleTest.RunResults.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/SampleTest.RunResults.verified.txt -------------------------------------------------------------------------------- /src/Tests/SampleTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/SampleTest.cs -------------------------------------------------------------------------------- /src/Tests/SampleVbTest.Driver#helloWorld.verified.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/SampleVbTest.Driver#helloWorld.verified.vb -------------------------------------------------------------------------------- /src/Tests/SampleVbTest.Driver#helper.verified.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/SampleVbTest.Driver#helper.verified.vb -------------------------------------------------------------------------------- /src/Tests/SampleVbTest.Driver.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/SampleVbTest.Driver.verified.txt -------------------------------------------------------------------------------- /src/Tests/SampleVbTest.DriverWithoutLocation#helloWorld.verified.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/SampleVbTest.DriverWithoutLocation#helloWorld.verified.vb -------------------------------------------------------------------------------- /src/Tests/SampleVbTest.DriverWithoutLocation#helper.verified.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/SampleVbTest.DriverWithoutLocation#helper.verified.vb -------------------------------------------------------------------------------- /src/Tests/SampleVbTest.DriverWithoutLocation.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/SampleVbTest.DriverWithoutLocation.verified.txt -------------------------------------------------------------------------------- /src/Tests/SampleVbTest.RunResult.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/SampleVbTest.RunResult.verified.txt -------------------------------------------------------------------------------- /src/Tests/SampleVbTest.RunResultWithoutLocation.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/SampleVbTest.RunResultWithoutLocation.verified.txt -------------------------------------------------------------------------------- /src/Tests/SampleVbTest.RunResults#helloWorld.verified.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/SampleVbTest.RunResults#helloWorld.verified.vb -------------------------------------------------------------------------------- /src/Tests/SampleVbTest.RunResults#helper.verified.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/SampleVbTest.RunResults#helper.verified.vb -------------------------------------------------------------------------------- /src/Tests/SampleVbTest.RunResults.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/SampleVbTest.RunResults.verified.txt -------------------------------------------------------------------------------- /src/Tests/SampleVbTest.RunResultsWithoutLocation#helloWorld.verified.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/SampleVbTest.RunResultsWithoutLocation#helloWorld.verified.vb -------------------------------------------------------------------------------- /src/Tests/SampleVbTest.RunResultsWithoutLocation#helper.verified.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/SampleVbTest.RunResultsWithoutLocation#helper.verified.vb -------------------------------------------------------------------------------- /src/Tests/SampleVbTest.RunResultsWithoutLocation.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/SampleVbTest.RunResultsWithoutLocation.verified.txt -------------------------------------------------------------------------------- /src/Tests/SampleVbTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/SampleVbTest.cs -------------------------------------------------------------------------------- /src/Tests/ScrubTest.ScrubLines#helloWorld.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/ScrubTest.ScrubLines#helloWorld.verified.cs -------------------------------------------------------------------------------- /src/Tests/ScrubTest.ScrubLines#helper.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/ScrubTest.ScrubLines#helper.verified.cs -------------------------------------------------------------------------------- /src/Tests/ScrubTest.ScrubLines.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/ScrubTest.ScrubLines.verified.txt -------------------------------------------------------------------------------- /src/Tests/ScrubTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/ScrubTest.cs -------------------------------------------------------------------------------- /src/Tests/SyntaxLocationTests.ConsistentLocation.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/SyntaxLocationTests.ConsistentLocation.verified.txt -------------------------------------------------------------------------------- /src/Tests/SyntaxLocationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/SyntaxLocationTests.cs -------------------------------------------------------------------------------- /src/Tests/Tests.FileLinePositionSpanConverter.verified.txt: -------------------------------------------------------------------------------- 1 | the path: (1,2)-(2,4) -------------------------------------------------------------------------------- /src/Tests/Tests.FileLinePositionSpanConverter_Empty.verified.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Tests/Tests.LocalizableStringConverter.verified.txt: -------------------------------------------------------------------------------- 1 | The Text -------------------------------------------------------------------------------- /src/Tests/Tests.LocationConverter.verified.txt: -------------------------------------------------------------------------------- 1 | theFile: (1,2)-(3,4) -------------------------------------------------------------------------------- /src/Tests/Tests.SourceTextConverter.verified.txt: -------------------------------------------------------------------------------- 1 | theSource -------------------------------------------------------------------------------- /src/Tests/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/Tests.cs -------------------------------------------------------------------------------- /src/Tests/Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Tests/Tests.csproj -------------------------------------------------------------------------------- /src/Verify.SourceGenerators.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Verify.SourceGenerators.slnx -------------------------------------------------------------------------------- /src/Verify.SourceGenerators.slnx.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Verify.SourceGenerators.slnx.DotSettings -------------------------------------------------------------------------------- /src/Verify.SourceGenerators/Converters/DiagnosticConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Verify.SourceGenerators/Converters/DiagnosticConverter.cs -------------------------------------------------------------------------------- /src/Verify.SourceGenerators/Converters/DiagnosticDescriptorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Verify.SourceGenerators/Converters/DiagnosticDescriptorConverter.cs -------------------------------------------------------------------------------- /src/Verify.SourceGenerators/Converters/FileLinePositionSpanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Verify.SourceGenerators/Converters/FileLinePositionSpanConverter.cs -------------------------------------------------------------------------------- /src/Verify.SourceGenerators/Converters/GeneratedSourceResultConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Verify.SourceGenerators/Converters/GeneratedSourceResultConverter.cs -------------------------------------------------------------------------------- /src/Verify.SourceGenerators/Converters/LocalizableStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Verify.SourceGenerators/Converters/LocalizableStringConverter.cs -------------------------------------------------------------------------------- /src/Verify.SourceGenerators/Converters/LocationConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Verify.SourceGenerators/Converters/LocationConverter.cs -------------------------------------------------------------------------------- /src/Verify.SourceGenerators/Converters/SourceTextConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Verify.SourceGenerators/Converters/SourceTextConverter.cs -------------------------------------------------------------------------------- /src/Verify.SourceGenerators/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Verify.SourceGenerators/GlobalUsings.cs -------------------------------------------------------------------------------- /src/Verify.SourceGenerators/Verify.SourceGenerators.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Verify.SourceGenerators/Verify.SourceGenerators.csproj -------------------------------------------------------------------------------- /src/Verify.SourceGenerators/VerifySourceGenerators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Verify.SourceGenerators/VerifySourceGenerators.cs -------------------------------------------------------------------------------- /src/Verify.SourceGenerators/build/Verify.SourceGenerators.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/Verify.SourceGenerators/build/Verify.SourceGenerators.targets -------------------------------------------------------------------------------- /src/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/appveyor.yml -------------------------------------------------------------------------------- /src/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/global.json -------------------------------------------------------------------------------- /src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/icon.png -------------------------------------------------------------------------------- /src/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/key.snk -------------------------------------------------------------------------------- /src/mdsnippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/mdsnippets.json -------------------------------------------------------------------------------- /src/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/nuget.config -------------------------------------------------------------------------------- /src/nuget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.SourceGenerators/HEAD/src/nuget.md --------------------------------------------------------------------------------