├── .gitattributes ├── .gitignore ├── IntegrationTests ├── Directory.Build.props ├── Directory.Packages.props ├── IntegrationTests.slnx ├── IntegrationTests │ ├── ComsumeTests.cs │ ├── Config │ │ └── appsettings.json │ ├── GlobalUsings.cs │ ├── IntegrationTests.csproj │ ├── RecursiveDirectory │ │ ├── SomeFile.txt │ │ └── SubDir │ │ │ └── NestedFile.txt │ ├── SameNamedDescendants │ │ ├── SubDir1 │ │ │ ├── Descendant │ │ │ │ └── NestedFile.txt │ │ │ └── NestedFile.txt │ │ └── SubDir2 │ │ │ ├── Descendant │ │ │ └── NestedFile.txt │ │ │ └── NestedFile.txt │ ├── SpecificDirectory │ │ ├── Dir1 │ │ │ ├── File1.txt │ │ │ └── File2.txt │ │ ├── Dir2 │ │ │ └── File4.txt │ │ └── File3.txt │ ├── contentAtRoot.txt │ ├── contentUpdateAtRoot.txt │ ├── fileAtRoot.txt │ ├── fileIncludeAtRoot.txt │ ├── globFileAtRoot.txt │ └── lower-case │ │ └── lower-case.json └── global.json ├── code_of_conduct.md ├── license.txt ├── readme.md └── src ├── .editorconfig ├── ConsumingTests ├── ComsumeTests.cs ├── Config │ └── appsettings.json ├── ConsumingTests.csproj ├── GlobalUsings.cs ├── RecursiveDirectory │ ├── SomeFile.txt │ └── SubDir │ │ └── NestedFile.txt ├── SameNamedDescendants │ ├── SubDir1 │ │ ├── Descendant │ │ │ └── NestedFile.txt │ │ └── NestedFile.txt │ └── SubDir2 │ │ ├── Descendant │ │ └── NestedFile.txt │ │ └── NestedFile.txt ├── SpecificDirectory │ ├── Dir1 │ │ ├── File1.txt │ │ └── File2.txt │ ├── Dir2 │ │ └── File4.txt │ └── File3.txt ├── contentAtRoot.txt ├── contentUpdateAtRoot.txt ├── fileAtRoot.txt ├── fileIncludeAtRoot.txt ├── globFileAtRoot.txt └── lower-case │ └── lower-case.json ├── Directory.Build.props ├── Directory.Packages.props ├── NugetTests ├── ComsumeTests.cs ├── Config │ └── appsettings.json ├── ExtendPartialTests.cs ├── GlobalUsings.cs ├── NugetTests.csproj ├── RecursiveDirectory │ ├── SomeFile.txt │ └── SubDir │ │ └── NestedFile.txt ├── SameNamedDescendants │ ├── SubDir1 │ │ ├── Descendant │ │ │ └── NestedFile.txt │ │ └── NestedFile.txt │ └── SubDir2 │ │ ├── Descendant │ │ └── NestedFile.txt │ │ └── NestedFile.txt ├── SpecificDirectory │ ├── Dir1 │ │ ├── File1.txt │ │ └── File2.txt │ ├── Dir2 │ │ └── File4.txt │ └── File3.txt ├── fileAtRoot.txt ├── globFileAtRoot.txt └── lower-case │ └── lower-case.json ├── ProjectFiles.slnx ├── ProjectFiles.slnx.DotSettings ├── ProjectFiles ├── Extensions.cs ├── Generator.cs ├── GlobalUsings.cs ├── Identifier.cs ├── KeywordDetect.cs ├── ProjectFiles.csproj └── buildTransitive │ └── ProjectFiles.props ├── Shared.sln.DotSettings ├── Templates ├── .editorconfig ├── ProjectDirectory.cs ├── ProjectFile.cs └── Templates.csproj ├── Tests ├── GeneratorTest.AllMsBuildProperties#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.AllMsBuildProperties#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.AllMsBuildProperties#ProjectFiles.g.verified.cs ├── GeneratorTest.ConflictCaseInsensitive#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.ConflictCaseInsensitive#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.ConflictCaseInsensitive#ProjectFiles.g.verified.cs ├── GeneratorTest.ConflictCaseInsensitive.verified.txt ├── GeneratorTest.ConflictWithOtherValidFiles#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.ConflictWithOtherValidFiles#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.ConflictWithOtherValidFiles#ProjectFiles.g.verified.cs ├── GeneratorTest.ConflictWithOtherValidFiles.verified.txt ├── GeneratorTest.ConflictWithProjectDirectory#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.ConflictWithProjectDirectory#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.ConflictWithProjectDirectory#ProjectFiles.g.verified.cs ├── GeneratorTest.ConflictWithProjectDirectory.verified.txt ├── GeneratorTest.ConflictWithProjectFile#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.ConflictWithProjectFile#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.ConflictWithProjectFile#ProjectFiles.g.verified.cs ├── GeneratorTest.ConflictWithProjectFile.verified.txt ├── GeneratorTest.ConflictWithSolutionDirectory#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.ConflictWithSolutionDirectory#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.ConflictWithSolutionDirectory#ProjectFiles.g.verified.cs ├── GeneratorTest.ConflictWithSolutionDirectory.verified.txt ├── GeneratorTest.ConflictWithSolutionFile#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.ConflictWithSolutionFile#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.ConflictWithSolutionFile#ProjectFiles.g.verified.cs ├── GeneratorTest.ConflictWithSolutionFile.verified.txt ├── GeneratorTest.ContentAndNoneInSameDirectory#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.ContentAndNoneInSameDirectory#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.ContentAndNoneInSameDirectory#ProjectFiles.g.verified.cs ├── GeneratorTest.ContentAtRoot#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.ContentAtRoot#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.ContentAtRoot#ProjectFiles.g.verified.cs ├── GeneratorTest.ContentInDirectory#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.ContentInDirectory#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.ContentInDirectory#ProjectFiles.g.verified.cs ├── GeneratorTest.ContentInMultipleLevelsOfNesting#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.ContentInMultipleLevelsOfNesting#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.ContentInMultipleLevelsOfNesting#ProjectFiles.g.verified.cs ├── GeneratorTest.ContentItemsGenerateCorrectPropertyNames#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.ContentItemsGenerateCorrectPropertyNames#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.ContentItemsGenerateCorrectPropertyNames#ProjectFiles.g.verified.cs ├── GeneratorTest.ContentMixedIncludeAndUpdate#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.ContentMixedIncludeAndUpdate#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.ContentMixedIncludeAndUpdate#ProjectFiles.g.verified.cs ├── GeneratorTest.ContentWithAlwaysCopyToOutput#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.ContentWithAlwaysCopyToOutput#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.ContentWithAlwaysCopyToOutput#ProjectFiles.g.verified.cs ├── GeneratorTest.ContentWithGlobbingPattern#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.ContentWithGlobbingPattern#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.ContentWithGlobbingPattern#ProjectFiles.g.verified.cs ├── GeneratorTest.ContentWithIncludeAttribute#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.ContentWithIncludeAttribute#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.ContentWithIncludeAttribute#ProjectFiles.g.verified.cs ├── GeneratorTest.ContentWithUpdateAttribute#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.ContentWithUpdateAttribute#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.ContentWithUpdateAttribute#ProjectFiles.g.verified.cs ├── GeneratorTest.ContentWithVariousExtensions#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.ContentWithVariousExtensions#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.ContentWithVariousExtensions#ProjectFiles.g.verified.cs ├── GeneratorTest.ContentWithoutCopyToOutputDirectoryShouldBeIgnored#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.ContentWithoutCopyToOutputDirectoryShouldBeIgnored#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.ContentWithoutCopyToOutputDirectoryShouldBeIgnored#ProjectFiles.g.verified.cs ├── GeneratorTest.DeepNestedStructure#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.DeepNestedStructure#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.DeepNestedStructure#ProjectFiles.g.verified.cs ├── GeneratorTest.DeeplyNestedWithSameNameAtDifferentLevels#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.DeeplyNestedWithSameNameAtDifferentLevels#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.DeeplyNestedWithSameNameAtDifferentLevels#ProjectFiles.g.verified.cs ├── GeneratorTest.FileExtensionsInPropertyNames#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.FileExtensionsInPropertyNames#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.FileExtensionsInPropertyNames#ProjectFiles.g.verified.cs ├── GeneratorTest.FilesInNestedDirectories#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.FilesInNestedDirectories#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.FilesInNestedDirectories#ProjectFiles.g.verified.cs ├── GeneratorTest.FilesInSingleDirectory#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.FilesInSingleDirectory#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.FilesInSingleDirectory#ProjectFiles.g.verified.cs ├── GeneratorTest.FilesWithKeywordNames#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.FilesWithKeywordNames#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.FilesWithKeywordNames#ProjectFiles.g.verified.cs ├── GeneratorTest.FilesWithSpecialCharacters#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.FilesWithSpecialCharacters#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.FilesWithSpecialCharacters#ProjectFiles.g.verified.cs ├── GeneratorTest.ImplicitUsingsDisabled#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.ImplicitUsingsDisabled#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.ImplicitUsingsDisabled#ProjectFiles.g.verified.cs ├── GeneratorTest.ImplicitUsingsEnabled#ProjectFiles.GlobalUsings.g.verified.cs ├── GeneratorTest.ImplicitUsingsEnabled#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.ImplicitUsingsEnabled#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.ImplicitUsingsEnabled#ProjectFiles.g.verified.cs ├── GeneratorTest.ImplicitUsingsFalse#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.ImplicitUsingsFalse#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.ImplicitUsingsFalse#ProjectFiles.g.verified.cs ├── GeneratorTest.ImplicitUsingsNoFiles#ProjectFiles.GlobalUsings.g.verified.cs ├── GeneratorTest.ImplicitUsingsNoFiles#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.ImplicitUsingsNoFiles#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.ImplicitUsingsNoFiles#ProjectFiles.g.verified.cs ├── GeneratorTest.ImplicitUsingsNotSet#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.ImplicitUsingsNotSet#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.ImplicitUsingsNotSet#ProjectFiles.g.verified.cs ├── GeneratorTest.ImplicitUsingsTrue#ProjectFiles.GlobalUsings.g.verified.cs ├── GeneratorTest.ImplicitUsingsTrue#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.ImplicitUsingsTrue#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.ImplicitUsingsTrue#ProjectFiles.g.verified.cs ├── GeneratorTest.ImplicitUsingsWithMsBuildProperties#ProjectFiles.GlobalUsings.g.verified.cs ├── GeneratorTest.ImplicitUsingsWithMsBuildProperties#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.ImplicitUsingsWithMsBuildProperties#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.ImplicitUsingsWithMsBuildProperties#ProjectFiles.g.verified.cs ├── GeneratorTest.MSBuildPropertiesWithUnixPaths#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.MSBuildPropertiesWithUnixPaths#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.MSBuildPropertiesWithUnixPaths#ProjectFiles.g.verified.cs ├── GeneratorTest.MixedContentAndNoneItems#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.MixedContentAndNoneItems#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.MixedContentAndNoneItems#ProjectFiles.g.verified.cs ├── GeneratorTest.MixedFileAndDirectoryConflicts#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.MixedFileAndDirectoryConflicts#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.MixedFileAndDirectoryConflicts#ProjectFiles.g.verified.cs ├── GeneratorTest.MixedFileAndDirectoryConflicts.verified.txt ├── GeneratorTest.MixedRootAndDirectoryFiles#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.MixedRootAndDirectoryFiles#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.MixedRootAndDirectoryFiles#ProjectFiles.g.verified.cs ├── GeneratorTest.MsBuildPropertiesWithFiles#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.MsBuildPropertiesWithFiles#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.MsBuildPropertiesWithFiles#ProjectFiles.g.verified.cs ├── GeneratorTest.MultipleConflicts#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.MultipleConflicts#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.MultipleConflicts#ProjectFiles.g.verified.cs ├── GeneratorTest.MultipleConflicts.verified.txt ├── GeneratorTest.MultipleContentItemsInNestedFolders#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.MultipleContentItemsInNestedFolders#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.MultipleContentItemsInNestedFolders#ProjectFiles.g.verified.cs ├── GeneratorTest.MultipleFilesAtRoot#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.MultipleFilesAtRoot#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.MultipleFilesAtRoot#ProjectFiles.g.verified.cs ├── GeneratorTest.MultipleNestedDirectoriesWithSameName#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.MultipleNestedDirectoriesWithSameName#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.MultipleNestedDirectoriesWithSameName#ProjectFiles.g.verified.cs ├── GeneratorTest.NestedContentItems#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.NestedContentItems#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.NestedContentItems#ProjectFiles.g.verified.cs ├── GeneratorTest.NestedDirectoryConflictCaseInsensitive#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.NestedDirectoryConflictCaseInsensitive#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.NestedDirectoryConflictCaseInsensitive#ProjectFiles.g.verified.cs ├── GeneratorTest.NestedDirectoryWithSameName#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.NestedDirectoryWithSameName#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.NestedDirectoryWithSameName#ProjectFiles.g.verified.cs ├── GeneratorTest.NoConflictInSubdirectory#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.NoConflictInSubdirectory#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.NoConflictInSubdirectory#ProjectFiles.g.verified.cs ├── GeneratorTest.NoConflictWhenPropertyNotSet#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.NoConflictWhenPropertyNotSet#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.NoConflictWhenPropertyNotSet#ProjectFiles.g.verified.cs ├── GeneratorTest.NoConflictWhenPropertyNotSet.verified.txt ├── GeneratorTest.NoFiles#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.NoFiles#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.NoFiles#ProjectFiles.g.verified.cs ├── GeneratorTest.NoFilesWithMetadata#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.NoFilesWithMetadata#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.NoFilesWithMetadata#ProjectFiles.g.verified.cs ├── GeneratorTest.OnlyProjectProperties#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.OnlyProjectProperties#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.OnlyProjectProperties#ProjectFiles.g.verified.cs ├── GeneratorTest.OnlySolutionProperties#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.OnlySolutionProperties#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.OnlySolutionProperties#ProjectFiles.g.verified.cs ├── GeneratorTest.PartialMetadataMatch#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.PartialMetadataMatch#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.PartialMetadataMatch#ProjectFiles.g.verified.cs ├── GeneratorTest.PartialMsBuildProperties#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.PartialMsBuildProperties#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.PartialMsBuildProperties#ProjectFiles.g.verified.cs ├── GeneratorTest.SingleFileAtRoot#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.SingleFileAtRoot#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.SingleFileAtRoot#ProjectFiles.g.verified.cs ├── GeneratorTest.TriplyNestedSameDirectory#ProjectFiles.ProjectDirectory.g.verified.cs ├── GeneratorTest.TriplyNestedSameDirectory#ProjectFiles.ProjectFile.g.verified.cs ├── GeneratorTest.TriplyNestedSameDirectory#ProjectFiles.g.verified.cs ├── GeneratorTest.cs ├── GlobalUsings.cs ├── IdentifierTest.AnotherKeywordName.verified.txt ├── IdentifierTest.ChineseCharacters.verified.txt ├── IdentifierTest.KeywordName.verified.txt ├── IdentifierTest.MixedCaseKeyword.verified.txt ├── IdentifierTest.NameStartingWithDigit.verified.txt ├── IdentifierTest.NameWithDots.verified.txt ├── IdentifierTest.NameWithHyphens.verified.txt ├── IdentifierTest.NameWithMultipleUnderscores.verified.txt ├── IdentifierTest.NameWithSpaces.verified.txt ├── IdentifierTest.NameWithSpecialCharacters.verified.txt ├── IdentifierTest.NameWithUnderscore.verified.txt ├── IdentifierTest.NormalName.verified.txt ├── IdentifierTest.NumbersInMiddle.verified.txt ├── IdentifierTest.SingleCharacter.verified.txt ├── IdentifierTest.SingleDigit.verified.txt ├── IdentifierTest.SingleSpecialCharacter.verified.txt ├── IdentifierTest.UnicodeCharacters.verified.txt ├── IdentifierTest.cs ├── KeywordDetectTests.AllKeywordsAreSanitized.verified.txt ├── KeywordDetectTests.EmptyString.verified.txt ├── KeywordDetectTests.KeywordClass.verified.txt ├── KeywordDetectTests.KeywordFor.verified.txt ├── KeywordDetectTests.KeywordInt.verified.txt ├── KeywordDetectTests.KeywordNamespace.verified.txt ├── KeywordDetectTests.KeywordPrivate.verified.txt ├── KeywordDetectTests.KeywordPublic.verified.txt ├── KeywordDetectTests.KeywordString.verified.txt ├── KeywordDetectTests.KeywordWhile.verified.txt ├── KeywordDetectTests.KeywordWithDifferentCase.verified.txt ├── KeywordDetectTests.NonKeywordNormal.verified.txt ├── KeywordDetectTests.NonKeywordWithNumbers.verified.txt ├── KeywordDetectTests.NonKeywordWithUnderscore.verified.txt ├── KeywordDetectTests.cs ├── MockAdditionalText.cs ├── MockOptionsProvider.cs ├── ModuleInitializer.cs ├── TestExtensions.cs └── Tests.csproj ├── appveyor.yml ├── global.json ├── icon.png ├── key.snk ├── mdsnippets.json └── nuget.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/.gitignore -------------------------------------------------------------------------------- /IntegrationTests/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/IntegrationTests/Directory.Build.props -------------------------------------------------------------------------------- /IntegrationTests/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/IntegrationTests/Directory.Packages.props -------------------------------------------------------------------------------- /IntegrationTests/IntegrationTests.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/IntegrationTests/IntegrationTests.slnx -------------------------------------------------------------------------------- /IntegrationTests/IntegrationTests/ComsumeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/IntegrationTests/IntegrationTests/ComsumeTests.cs -------------------------------------------------------------------------------- /IntegrationTests/IntegrationTests/Config/appsettings.json: -------------------------------------------------------------------------------- 1 | {"key":"value"} 2 | -------------------------------------------------------------------------------- /IntegrationTests/IntegrationTests/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/IntegrationTests/IntegrationTests/GlobalUsings.cs -------------------------------------------------------------------------------- /IntegrationTests/IntegrationTests/IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/IntegrationTests/IntegrationTests/IntegrationTests.csproj -------------------------------------------------------------------------------- /IntegrationTests/IntegrationTests/RecursiveDirectory/SomeFile.txt: -------------------------------------------------------------------------------- 1 | Some file content 2 | -------------------------------------------------------------------------------- /IntegrationTests/IntegrationTests/RecursiveDirectory/SubDir/NestedFile.txt: -------------------------------------------------------------------------------- 1 | Nested content 2 | -------------------------------------------------------------------------------- /IntegrationTests/IntegrationTests/SameNamedDescendants/SubDir1/Descendant/NestedFile.txt: -------------------------------------------------------------------------------- 1 | Nested content 2 | -------------------------------------------------------------------------------- /IntegrationTests/IntegrationTests/SameNamedDescendants/SubDir1/NestedFile.txt: -------------------------------------------------------------------------------- 1 | Nested content 2 | -------------------------------------------------------------------------------- /IntegrationTests/IntegrationTests/SameNamedDescendants/SubDir2/Descendant/NestedFile.txt: -------------------------------------------------------------------------------- 1 | Nested content 2 | -------------------------------------------------------------------------------- /IntegrationTests/IntegrationTests/SameNamedDescendants/SubDir2/NestedFile.txt: -------------------------------------------------------------------------------- 1 | Nested content 2 | -------------------------------------------------------------------------------- /IntegrationTests/IntegrationTests/SpecificDirectory/Dir1/File1.txt: -------------------------------------------------------------------------------- 1 | File 1 2 | -------------------------------------------------------------------------------- /IntegrationTests/IntegrationTests/SpecificDirectory/Dir1/File2.txt: -------------------------------------------------------------------------------- 1 | File 2 2 | -------------------------------------------------------------------------------- /IntegrationTests/IntegrationTests/SpecificDirectory/Dir2/File4.txt: -------------------------------------------------------------------------------- 1 | File 4 2 | -------------------------------------------------------------------------------- /IntegrationTests/IntegrationTests/SpecificDirectory/File3.txt: -------------------------------------------------------------------------------- 1 | File 3 2 | -------------------------------------------------------------------------------- /IntegrationTests/IntegrationTests/contentAtRoot.txt: -------------------------------------------------------------------------------- 1 | File 3 2 | -------------------------------------------------------------------------------- /IntegrationTests/IntegrationTests/contentUpdateAtRoot.txt: -------------------------------------------------------------------------------- 1 | File 3 2 | -------------------------------------------------------------------------------- /IntegrationTests/IntegrationTests/fileAtRoot.txt: -------------------------------------------------------------------------------- 1 | File 3 2 | -------------------------------------------------------------------------------- /IntegrationTests/IntegrationTests/fileIncludeAtRoot.txt: -------------------------------------------------------------------------------- 1 | File 3 2 | -------------------------------------------------------------------------------- /IntegrationTests/IntegrationTests/globFileAtRoot.txt: -------------------------------------------------------------------------------- 1 | File 3 2 | -------------------------------------------------------------------------------- /IntegrationTests/IntegrationTests/lower-case/lower-case.json: -------------------------------------------------------------------------------- 1 | {"key":"value"} 2 | -------------------------------------------------------------------------------- /IntegrationTests/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/IntegrationTests/global.json -------------------------------------------------------------------------------- /code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/code_of_conduct.md -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/license.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/readme.md -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/ConsumingTests/ComsumeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/ConsumingTests/ComsumeTests.cs -------------------------------------------------------------------------------- /src/ConsumingTests/Config/appsettings.json: -------------------------------------------------------------------------------- 1 | {"key":"value"} 2 | -------------------------------------------------------------------------------- /src/ConsumingTests/ConsumingTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/ConsumingTests/ConsumingTests.csproj -------------------------------------------------------------------------------- /src/ConsumingTests/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/ConsumingTests/GlobalUsings.cs -------------------------------------------------------------------------------- /src/ConsumingTests/RecursiveDirectory/SomeFile.txt: -------------------------------------------------------------------------------- 1 | Some file content 2 | -------------------------------------------------------------------------------- /src/ConsumingTests/RecursiveDirectory/SubDir/NestedFile.txt: -------------------------------------------------------------------------------- 1 | Nested content 2 | -------------------------------------------------------------------------------- /src/ConsumingTests/SameNamedDescendants/SubDir1/Descendant/NestedFile.txt: -------------------------------------------------------------------------------- 1 | Nested content 2 | -------------------------------------------------------------------------------- /src/ConsumingTests/SameNamedDescendants/SubDir1/NestedFile.txt: -------------------------------------------------------------------------------- 1 | Nested content 2 | -------------------------------------------------------------------------------- /src/ConsumingTests/SameNamedDescendants/SubDir2/Descendant/NestedFile.txt: -------------------------------------------------------------------------------- 1 | Nested content 2 | -------------------------------------------------------------------------------- /src/ConsumingTests/SameNamedDescendants/SubDir2/NestedFile.txt: -------------------------------------------------------------------------------- 1 | Nested content 2 | -------------------------------------------------------------------------------- /src/ConsumingTests/SpecificDirectory/Dir1/File1.txt: -------------------------------------------------------------------------------- 1 | File 1 2 | -------------------------------------------------------------------------------- /src/ConsumingTests/SpecificDirectory/Dir1/File2.txt: -------------------------------------------------------------------------------- 1 | File 2 2 | -------------------------------------------------------------------------------- /src/ConsumingTests/SpecificDirectory/Dir2/File4.txt: -------------------------------------------------------------------------------- 1 | File 4 2 | -------------------------------------------------------------------------------- /src/ConsumingTests/SpecificDirectory/File3.txt: -------------------------------------------------------------------------------- 1 | File 3 2 | -------------------------------------------------------------------------------- /src/ConsumingTests/contentAtRoot.txt: -------------------------------------------------------------------------------- 1 | File 3 2 | -------------------------------------------------------------------------------- /src/ConsumingTests/contentUpdateAtRoot.txt: -------------------------------------------------------------------------------- 1 | File 3 2 | -------------------------------------------------------------------------------- /src/ConsumingTests/fileAtRoot.txt: -------------------------------------------------------------------------------- 1 | File 3 2 | -------------------------------------------------------------------------------- /src/ConsumingTests/fileIncludeAtRoot.txt: -------------------------------------------------------------------------------- 1 | File 3 2 | -------------------------------------------------------------------------------- /src/ConsumingTests/globFileAtRoot.txt: -------------------------------------------------------------------------------- 1 | File 3 2 | -------------------------------------------------------------------------------- /src/ConsumingTests/lower-case/lower-case.json: -------------------------------------------------------------------------------- 1 | {"key":"value"} 2 | -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Directory.Packages.props -------------------------------------------------------------------------------- /src/NugetTests/ComsumeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/NugetTests/ComsumeTests.cs -------------------------------------------------------------------------------- /src/NugetTests/Config/appsettings.json: -------------------------------------------------------------------------------- 1 | {"key":"value"} 2 | -------------------------------------------------------------------------------- /src/NugetTests/ExtendPartialTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/NugetTests/ExtendPartialTests.cs -------------------------------------------------------------------------------- /src/NugetTests/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/NugetTests/GlobalUsings.cs -------------------------------------------------------------------------------- /src/NugetTests/NugetTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/NugetTests/NugetTests.csproj -------------------------------------------------------------------------------- /src/NugetTests/RecursiveDirectory/SomeFile.txt: -------------------------------------------------------------------------------- 1 | Some file content 2 | -------------------------------------------------------------------------------- /src/NugetTests/RecursiveDirectory/SubDir/NestedFile.txt: -------------------------------------------------------------------------------- 1 | Nested content 2 | -------------------------------------------------------------------------------- /src/NugetTests/SameNamedDescendants/SubDir1/Descendant/NestedFile.txt: -------------------------------------------------------------------------------- 1 | Nested content 2 | -------------------------------------------------------------------------------- /src/NugetTests/SameNamedDescendants/SubDir1/NestedFile.txt: -------------------------------------------------------------------------------- 1 | Nested content 2 | -------------------------------------------------------------------------------- /src/NugetTests/SameNamedDescendants/SubDir2/Descendant/NestedFile.txt: -------------------------------------------------------------------------------- 1 | Nested content 2 | -------------------------------------------------------------------------------- /src/NugetTests/SameNamedDescendants/SubDir2/NestedFile.txt: -------------------------------------------------------------------------------- 1 | Nested content 2 | -------------------------------------------------------------------------------- /src/NugetTests/SpecificDirectory/Dir1/File1.txt: -------------------------------------------------------------------------------- 1 | File 1 2 | -------------------------------------------------------------------------------- /src/NugetTests/SpecificDirectory/Dir1/File2.txt: -------------------------------------------------------------------------------- 1 | File 2 2 | -------------------------------------------------------------------------------- /src/NugetTests/SpecificDirectory/Dir2/File4.txt: -------------------------------------------------------------------------------- 1 | File 4 2 | -------------------------------------------------------------------------------- /src/NugetTests/SpecificDirectory/File3.txt: -------------------------------------------------------------------------------- 1 | File 3 2 | -------------------------------------------------------------------------------- /src/NugetTests/fileAtRoot.txt: -------------------------------------------------------------------------------- 1 | File 3 2 | -------------------------------------------------------------------------------- /src/NugetTests/globFileAtRoot.txt: -------------------------------------------------------------------------------- 1 | File 3 2 | -------------------------------------------------------------------------------- /src/NugetTests/lower-case/lower-case.json: -------------------------------------------------------------------------------- 1 | {"key":"value"} 2 | -------------------------------------------------------------------------------- /src/ProjectFiles.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/ProjectFiles.slnx -------------------------------------------------------------------------------- /src/ProjectFiles.slnx.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/ProjectFiles.slnx.DotSettings -------------------------------------------------------------------------------- /src/ProjectFiles/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/ProjectFiles/Extensions.cs -------------------------------------------------------------------------------- /src/ProjectFiles/Generator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/ProjectFiles/Generator.cs -------------------------------------------------------------------------------- /src/ProjectFiles/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/ProjectFiles/GlobalUsings.cs -------------------------------------------------------------------------------- /src/ProjectFiles/Identifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/ProjectFiles/Identifier.cs -------------------------------------------------------------------------------- /src/ProjectFiles/KeywordDetect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/ProjectFiles/KeywordDetect.cs -------------------------------------------------------------------------------- /src/ProjectFiles/ProjectFiles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/ProjectFiles/ProjectFiles.csproj -------------------------------------------------------------------------------- /src/ProjectFiles/buildTransitive/ProjectFiles.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/ProjectFiles/buildTransitive/ProjectFiles.props -------------------------------------------------------------------------------- /src/Shared.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Shared.sln.DotSettings -------------------------------------------------------------------------------- /src/Templates/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Templates/.editorconfig -------------------------------------------------------------------------------- /src/Templates/ProjectDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Templates/ProjectDirectory.cs -------------------------------------------------------------------------------- /src/Templates/ProjectFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Templates/ProjectFile.cs -------------------------------------------------------------------------------- /src/Templates/Templates.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Templates/Templates.csproj -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.AllMsBuildProperties#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.AllMsBuildProperties#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.AllMsBuildProperties#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.AllMsBuildProperties#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.AllMsBuildProperties#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.AllMsBuildProperties#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ConflictCaseInsensitive#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ConflictCaseInsensitive#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ConflictCaseInsensitive#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ConflictCaseInsensitive#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ConflictCaseInsensitive#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ConflictCaseInsensitive#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ConflictCaseInsensitive.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ConflictCaseInsensitive.verified.txt -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ConflictWithOtherValidFiles#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ConflictWithOtherValidFiles#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ConflictWithOtherValidFiles#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ConflictWithOtherValidFiles#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ConflictWithOtherValidFiles#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ConflictWithOtherValidFiles#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ConflictWithOtherValidFiles.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ConflictWithOtherValidFiles.verified.txt -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ConflictWithProjectDirectory#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ConflictWithProjectDirectory#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ConflictWithProjectDirectory#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ConflictWithProjectDirectory#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ConflictWithProjectDirectory#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ConflictWithProjectDirectory#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ConflictWithProjectDirectory.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ConflictWithProjectDirectory.verified.txt -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ConflictWithProjectFile#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ConflictWithProjectFile#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ConflictWithProjectFile#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ConflictWithProjectFile#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ConflictWithProjectFile#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ConflictWithProjectFile#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ConflictWithProjectFile.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ConflictWithProjectFile.verified.txt -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ConflictWithSolutionDirectory#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ConflictWithSolutionDirectory#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ConflictWithSolutionDirectory#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ConflictWithSolutionDirectory#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ConflictWithSolutionDirectory#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ConflictWithSolutionDirectory#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ConflictWithSolutionDirectory.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ConflictWithSolutionDirectory.verified.txt -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ConflictWithSolutionFile#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ConflictWithSolutionFile#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ConflictWithSolutionFile#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ConflictWithSolutionFile#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ConflictWithSolutionFile#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ConflictWithSolutionFile#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ConflictWithSolutionFile.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ConflictWithSolutionFile.verified.txt -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentAndNoneInSameDirectory#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentAndNoneInSameDirectory#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentAndNoneInSameDirectory#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentAndNoneInSameDirectory#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentAndNoneInSameDirectory#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentAndNoneInSameDirectory#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentAtRoot#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentAtRoot#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentAtRoot#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentAtRoot#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentAtRoot#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentAtRoot#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentInDirectory#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentInDirectory#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentInDirectory#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentInDirectory#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentInDirectory#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentInDirectory#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentInMultipleLevelsOfNesting#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentInMultipleLevelsOfNesting#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentInMultipleLevelsOfNesting#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentInMultipleLevelsOfNesting#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentInMultipleLevelsOfNesting#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentInMultipleLevelsOfNesting#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentItemsGenerateCorrectPropertyNames#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentItemsGenerateCorrectPropertyNames#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentItemsGenerateCorrectPropertyNames#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentItemsGenerateCorrectPropertyNames#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentItemsGenerateCorrectPropertyNames#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentItemsGenerateCorrectPropertyNames#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentMixedIncludeAndUpdate#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentMixedIncludeAndUpdate#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentMixedIncludeAndUpdate#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentMixedIncludeAndUpdate#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentMixedIncludeAndUpdate#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentMixedIncludeAndUpdate#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentWithAlwaysCopyToOutput#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentWithAlwaysCopyToOutput#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentWithAlwaysCopyToOutput#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentWithAlwaysCopyToOutput#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentWithAlwaysCopyToOutput#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentWithAlwaysCopyToOutput#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentWithGlobbingPattern#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentWithGlobbingPattern#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentWithGlobbingPattern#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentWithGlobbingPattern#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentWithGlobbingPattern#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentWithGlobbingPattern#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentWithIncludeAttribute#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentWithIncludeAttribute#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentWithIncludeAttribute#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentWithIncludeAttribute#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentWithIncludeAttribute#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentWithIncludeAttribute#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentWithUpdateAttribute#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentWithUpdateAttribute#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentWithUpdateAttribute#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentWithUpdateAttribute#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentWithUpdateAttribute#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentWithUpdateAttribute#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentWithVariousExtensions#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentWithVariousExtensions#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentWithVariousExtensions#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentWithVariousExtensions#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentWithVariousExtensions#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentWithVariousExtensions#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentWithoutCopyToOutputDirectoryShouldBeIgnored#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentWithoutCopyToOutputDirectoryShouldBeIgnored#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentWithoutCopyToOutputDirectoryShouldBeIgnored#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentWithoutCopyToOutputDirectoryShouldBeIgnored#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ContentWithoutCopyToOutputDirectoryShouldBeIgnored#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ContentWithoutCopyToOutputDirectoryShouldBeIgnored#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.DeepNestedStructure#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.DeepNestedStructure#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.DeepNestedStructure#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.DeepNestedStructure#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.DeepNestedStructure#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.DeepNestedStructure#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.DeeplyNestedWithSameNameAtDifferentLevels#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.DeeplyNestedWithSameNameAtDifferentLevels#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.DeeplyNestedWithSameNameAtDifferentLevels#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.DeeplyNestedWithSameNameAtDifferentLevels#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.DeeplyNestedWithSameNameAtDifferentLevels#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.DeeplyNestedWithSameNameAtDifferentLevels#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.FileExtensionsInPropertyNames#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.FileExtensionsInPropertyNames#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.FileExtensionsInPropertyNames#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.FileExtensionsInPropertyNames#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.FileExtensionsInPropertyNames#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.FileExtensionsInPropertyNames#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.FilesInNestedDirectories#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.FilesInNestedDirectories#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.FilesInNestedDirectories#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.FilesInNestedDirectories#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.FilesInNestedDirectories#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.FilesInNestedDirectories#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.FilesInSingleDirectory#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.FilesInSingleDirectory#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.FilesInSingleDirectory#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.FilesInSingleDirectory#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.FilesInSingleDirectory#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.FilesInSingleDirectory#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.FilesWithKeywordNames#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.FilesWithKeywordNames#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.FilesWithKeywordNames#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.FilesWithKeywordNames#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.FilesWithKeywordNames#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.FilesWithKeywordNames#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.FilesWithSpecialCharacters#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.FilesWithSpecialCharacters#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.FilesWithSpecialCharacters#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.FilesWithSpecialCharacters#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.FilesWithSpecialCharacters#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.FilesWithSpecialCharacters#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ImplicitUsingsDisabled#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ImplicitUsingsDisabled#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ImplicitUsingsDisabled#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ImplicitUsingsDisabled#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ImplicitUsingsDisabled#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ImplicitUsingsDisabled#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ImplicitUsingsEnabled#ProjectFiles.GlobalUsings.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ImplicitUsingsEnabled#ProjectFiles.GlobalUsings.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ImplicitUsingsEnabled#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ImplicitUsingsEnabled#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ImplicitUsingsEnabled#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ImplicitUsingsEnabled#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ImplicitUsingsEnabled#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ImplicitUsingsEnabled#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ImplicitUsingsFalse#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ImplicitUsingsFalse#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ImplicitUsingsFalse#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ImplicitUsingsFalse#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ImplicitUsingsFalse#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ImplicitUsingsFalse#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ImplicitUsingsNoFiles#ProjectFiles.GlobalUsings.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ImplicitUsingsNoFiles#ProjectFiles.GlobalUsings.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ImplicitUsingsNoFiles#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ImplicitUsingsNoFiles#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ImplicitUsingsNoFiles#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ImplicitUsingsNoFiles#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ImplicitUsingsNoFiles#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ImplicitUsingsNoFiles#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ImplicitUsingsNotSet#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ImplicitUsingsNotSet#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ImplicitUsingsNotSet#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ImplicitUsingsNotSet#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ImplicitUsingsNotSet#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ImplicitUsingsNotSet#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ImplicitUsingsTrue#ProjectFiles.GlobalUsings.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ImplicitUsingsTrue#ProjectFiles.GlobalUsings.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ImplicitUsingsTrue#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ImplicitUsingsTrue#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ImplicitUsingsTrue#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ImplicitUsingsTrue#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ImplicitUsingsTrue#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ImplicitUsingsTrue#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ImplicitUsingsWithMsBuildProperties#ProjectFiles.GlobalUsings.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ImplicitUsingsWithMsBuildProperties#ProjectFiles.GlobalUsings.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ImplicitUsingsWithMsBuildProperties#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ImplicitUsingsWithMsBuildProperties#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ImplicitUsingsWithMsBuildProperties#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ImplicitUsingsWithMsBuildProperties#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.ImplicitUsingsWithMsBuildProperties#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.ImplicitUsingsWithMsBuildProperties#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.MSBuildPropertiesWithUnixPaths#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.MSBuildPropertiesWithUnixPaths#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.MSBuildPropertiesWithUnixPaths#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.MSBuildPropertiesWithUnixPaths#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.MSBuildPropertiesWithUnixPaths#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.MSBuildPropertiesWithUnixPaths#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.MixedContentAndNoneItems#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.MixedContentAndNoneItems#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.MixedContentAndNoneItems#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.MixedContentAndNoneItems#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.MixedContentAndNoneItems#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.MixedContentAndNoneItems#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.MixedFileAndDirectoryConflicts#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.MixedFileAndDirectoryConflicts#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.MixedFileAndDirectoryConflicts#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.MixedFileAndDirectoryConflicts#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.MixedFileAndDirectoryConflicts#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.MixedFileAndDirectoryConflicts#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.MixedFileAndDirectoryConflicts.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.MixedFileAndDirectoryConflicts.verified.txt -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.MixedRootAndDirectoryFiles#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.MixedRootAndDirectoryFiles#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.MixedRootAndDirectoryFiles#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.MixedRootAndDirectoryFiles#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.MixedRootAndDirectoryFiles#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.MixedRootAndDirectoryFiles#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.MsBuildPropertiesWithFiles#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.MsBuildPropertiesWithFiles#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.MsBuildPropertiesWithFiles#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.MsBuildPropertiesWithFiles#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.MsBuildPropertiesWithFiles#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.MsBuildPropertiesWithFiles#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.MultipleConflicts#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.MultipleConflicts#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.MultipleConflicts#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.MultipleConflicts#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.MultipleConflicts#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.MultipleConflicts#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.MultipleConflicts.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.MultipleConflicts.verified.txt -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.MultipleContentItemsInNestedFolders#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.MultipleContentItemsInNestedFolders#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.MultipleContentItemsInNestedFolders#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.MultipleContentItemsInNestedFolders#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.MultipleContentItemsInNestedFolders#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.MultipleContentItemsInNestedFolders#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.MultipleFilesAtRoot#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.MultipleFilesAtRoot#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.MultipleFilesAtRoot#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.MultipleFilesAtRoot#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.MultipleFilesAtRoot#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.MultipleFilesAtRoot#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.MultipleNestedDirectoriesWithSameName#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.MultipleNestedDirectoriesWithSameName#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.MultipleNestedDirectoriesWithSameName#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.MultipleNestedDirectoriesWithSameName#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.MultipleNestedDirectoriesWithSameName#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.MultipleNestedDirectoriesWithSameName#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.NestedContentItems#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.NestedContentItems#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.NestedContentItems#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.NestedContentItems#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.NestedContentItems#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.NestedContentItems#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.NestedDirectoryConflictCaseInsensitive#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.NestedDirectoryConflictCaseInsensitive#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.NestedDirectoryConflictCaseInsensitive#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.NestedDirectoryConflictCaseInsensitive#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.NestedDirectoryConflictCaseInsensitive#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.NestedDirectoryConflictCaseInsensitive#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.NestedDirectoryWithSameName#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.NestedDirectoryWithSameName#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.NestedDirectoryWithSameName#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.NestedDirectoryWithSameName#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.NestedDirectoryWithSameName#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.NestedDirectoryWithSameName#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.NoConflictInSubdirectory#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.NoConflictInSubdirectory#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.NoConflictInSubdirectory#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.NoConflictInSubdirectory#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.NoConflictInSubdirectory#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.NoConflictInSubdirectory#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.NoConflictWhenPropertyNotSet#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.NoConflictWhenPropertyNotSet#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.NoConflictWhenPropertyNotSet#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.NoConflictWhenPropertyNotSet#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.NoConflictWhenPropertyNotSet#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.NoConflictWhenPropertyNotSet#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.NoConflictWhenPropertyNotSet.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.NoConflictWhenPropertyNotSet.verified.txt -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.NoFiles#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.NoFiles#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.NoFiles#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.NoFiles#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.NoFiles#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.NoFiles#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.NoFilesWithMetadata#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.NoFilesWithMetadata#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.NoFilesWithMetadata#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.NoFilesWithMetadata#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.NoFilesWithMetadata#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.NoFilesWithMetadata#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.OnlyProjectProperties#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.OnlyProjectProperties#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.OnlyProjectProperties#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.OnlyProjectProperties#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.OnlyProjectProperties#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.OnlyProjectProperties#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.OnlySolutionProperties#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.OnlySolutionProperties#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.OnlySolutionProperties#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.OnlySolutionProperties#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.OnlySolutionProperties#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.OnlySolutionProperties#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.PartialMetadataMatch#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.PartialMetadataMatch#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.PartialMetadataMatch#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.PartialMetadataMatch#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.PartialMetadataMatch#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.PartialMetadataMatch#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.PartialMsBuildProperties#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.PartialMsBuildProperties#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.PartialMsBuildProperties#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.PartialMsBuildProperties#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.PartialMsBuildProperties#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.PartialMsBuildProperties#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.SingleFileAtRoot#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.SingleFileAtRoot#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.SingleFileAtRoot#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.SingleFileAtRoot#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.SingleFileAtRoot#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.SingleFileAtRoot#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.TriplyNestedSameDirectory#ProjectFiles.ProjectDirectory.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.TriplyNestedSameDirectory#ProjectFiles.ProjectDirectory.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.TriplyNestedSameDirectory#ProjectFiles.ProjectFile.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.TriplyNestedSameDirectory#ProjectFiles.ProjectFile.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.TriplyNestedSameDirectory#ProjectFiles.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.TriplyNestedSameDirectory#ProjectFiles.g.verified.cs -------------------------------------------------------------------------------- /src/Tests/GeneratorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GeneratorTest.cs -------------------------------------------------------------------------------- /src/Tests/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/GlobalUsings.cs -------------------------------------------------------------------------------- /src/Tests/IdentifierTest.AnotherKeywordName.verified.txt: -------------------------------------------------------------------------------- 1 | @namespace -------------------------------------------------------------------------------- /src/Tests/IdentifierTest.ChineseCharacters.verified.txt: -------------------------------------------------------------------------------- 1 | 文件 -------------------------------------------------------------------------------- /src/Tests/IdentifierTest.KeywordName.verified.txt: -------------------------------------------------------------------------------- 1 | @class -------------------------------------------------------------------------------- /src/Tests/IdentifierTest.MixedCaseKeyword.verified.txt: -------------------------------------------------------------------------------- 1 | Class -------------------------------------------------------------------------------- /src/Tests/IdentifierTest.NameStartingWithDigit.verified.txt: -------------------------------------------------------------------------------- 1 | _123file -------------------------------------------------------------------------------- /src/Tests/IdentifierTest.NameWithDots.verified.txt: -------------------------------------------------------------------------------- 1 | my_config_json -------------------------------------------------------------------------------- /src/Tests/IdentifierTest.NameWithHyphens.verified.txt: -------------------------------------------------------------------------------- 1 | my_file -------------------------------------------------------------------------------- /src/Tests/IdentifierTest.NameWithMultipleUnderscores.verified.txt: -------------------------------------------------------------------------------- 1 | __my__file__ -------------------------------------------------------------------------------- /src/Tests/IdentifierTest.NameWithSpaces.verified.txt: -------------------------------------------------------------------------------- 1 | My_File -------------------------------------------------------------------------------- /src/Tests/IdentifierTest.NameWithSpecialCharacters.verified.txt: -------------------------------------------------------------------------------- 1 | file____name -------------------------------------------------------------------------------- /src/Tests/IdentifierTest.NameWithUnderscore.verified.txt: -------------------------------------------------------------------------------- 1 | _myfile -------------------------------------------------------------------------------- /src/Tests/IdentifierTest.NormalName.verified.txt: -------------------------------------------------------------------------------- 1 | MyFile -------------------------------------------------------------------------------- /src/Tests/IdentifierTest.NumbersInMiddle.verified.txt: -------------------------------------------------------------------------------- 1 | file123name -------------------------------------------------------------------------------- /src/Tests/IdentifierTest.SingleCharacter.verified.txt: -------------------------------------------------------------------------------- 1 | a -------------------------------------------------------------------------------- /src/Tests/IdentifierTest.SingleDigit.verified.txt: -------------------------------------------------------------------------------- 1 | _1 -------------------------------------------------------------------------------- /src/Tests/IdentifierTest.SingleSpecialCharacter.verified.txt: -------------------------------------------------------------------------------- 1 | _ -------------------------------------------------------------------------------- /src/Tests/IdentifierTest.UnicodeCharacters.verified.txt: -------------------------------------------------------------------------------- 1 | café -------------------------------------------------------------------------------- /src/Tests/IdentifierTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/IdentifierTest.cs -------------------------------------------------------------------------------- /src/Tests/KeywordDetectTests.AllKeywordsAreSanitized.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/KeywordDetectTests.AllKeywordsAreSanitized.verified.txt -------------------------------------------------------------------------------- /src/Tests/KeywordDetectTests.EmptyString.verified.txt: -------------------------------------------------------------------------------- 1 | emptyString -------------------------------------------------------------------------------- /src/Tests/KeywordDetectTests.KeywordClass.verified.txt: -------------------------------------------------------------------------------- 1 | @class -------------------------------------------------------------------------------- /src/Tests/KeywordDetectTests.KeywordFor.verified.txt: -------------------------------------------------------------------------------- 1 | @for -------------------------------------------------------------------------------- /src/Tests/KeywordDetectTests.KeywordInt.verified.txt: -------------------------------------------------------------------------------- 1 | @int -------------------------------------------------------------------------------- /src/Tests/KeywordDetectTests.KeywordNamespace.verified.txt: -------------------------------------------------------------------------------- 1 | @namespace -------------------------------------------------------------------------------- /src/Tests/KeywordDetectTests.KeywordPrivate.verified.txt: -------------------------------------------------------------------------------- 1 | @private -------------------------------------------------------------------------------- /src/Tests/KeywordDetectTests.KeywordPublic.verified.txt: -------------------------------------------------------------------------------- 1 | @public -------------------------------------------------------------------------------- /src/Tests/KeywordDetectTests.KeywordString.verified.txt: -------------------------------------------------------------------------------- 1 | @string -------------------------------------------------------------------------------- /src/Tests/KeywordDetectTests.KeywordWhile.verified.txt: -------------------------------------------------------------------------------- 1 | @while -------------------------------------------------------------------------------- /src/Tests/KeywordDetectTests.KeywordWithDifferentCase.verified.txt: -------------------------------------------------------------------------------- 1 | Class -------------------------------------------------------------------------------- /src/Tests/KeywordDetectTests.NonKeywordNormal.verified.txt: -------------------------------------------------------------------------------- 1 | MyClass -------------------------------------------------------------------------------- /src/Tests/KeywordDetectTests.NonKeywordWithNumbers.verified.txt: -------------------------------------------------------------------------------- 1 | class123 -------------------------------------------------------------------------------- /src/Tests/KeywordDetectTests.NonKeywordWithUnderscore.verified.txt: -------------------------------------------------------------------------------- 1 | my_class -------------------------------------------------------------------------------- /src/Tests/KeywordDetectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/KeywordDetectTests.cs -------------------------------------------------------------------------------- /src/Tests/MockAdditionalText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/MockAdditionalText.cs -------------------------------------------------------------------------------- /src/Tests/MockOptionsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/MockOptionsProvider.cs -------------------------------------------------------------------------------- /src/Tests/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Tests/TestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/TestExtensions.cs -------------------------------------------------------------------------------- /src/Tests/Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/Tests/Tests.csproj -------------------------------------------------------------------------------- /src/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/appveyor.yml -------------------------------------------------------------------------------- /src/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/global.json -------------------------------------------------------------------------------- /src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/icon.png -------------------------------------------------------------------------------- /src/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/key.snk -------------------------------------------------------------------------------- /src/mdsnippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/mdsnippets.json -------------------------------------------------------------------------------- /src/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonCropp/ProjectFiles/HEAD/src/nuget.config --------------------------------------------------------------------------------