├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── 01_bug_report.yml │ ├── 02_api_proposal.yml │ ├── 03_general_feature.yml │ └── config.yml ├── dependabot.yml ├── funding.yml ├── release.yml └── workflows │ └── build.yml ├── .gitignore ├── .nuke ├── .gitignore ├── build.schema.json └── parameters.json ├── .packageguard ├── cache.bin └── config.json ├── AcceptApiChanges.ps1 ├── AcceptApiChanges.sh ├── Build ├── .editorconfig ├── Build.cs ├── Configuration.cs ├── Directory.Build.props ├── Directory.Build.targets ├── _build.csproj └── _build.csproj.DotSettings ├── CONTRIBUTING.md ├── Directory.Build.props ├── GitVersion.yml ├── LICENSE ├── PackageIcon.png ├── PathWeaver.sln.DotSettings ├── Pathy.ApiVerificationTests ├── .editorconfig ├── ApiApproval.cs ├── ApprovedApi │ ├── pathy.globbing.net47.verified.txt │ ├── pathy.globbing.net8.0.verified.txt │ ├── pathy.globbing.netstandard2.0.verified.txt │ ├── pathy.globbing.netstandard2.1.verified.txt │ ├── pathy.net47.verified.txt │ ├── pathy.net8.0.verified.txt │ ├── pathy.netstandard2.0.verified.txt │ └── pathy.netstandard2.1.verified.txt └── Pathy.ApiVerificationTests.csproj ├── Pathy.Globbing ├── .nuspec ├── Pathy.Globbing.csproj ├── Pathy.Globbing.props └── PathyGlobbing.cs ├── Pathy.Specs ├── .editorconfig ├── ChainablePathExtensionSpecs.cs ├── ChainablePathSpecs.cs └── Pathy.Specs.csproj ├── Pathy.sln ├── Pathy.sln.DotSettings ├── Pathy ├── .nuspec ├── ChainablePath.cs ├── ChainablePathExtensions.cs ├── Pathy.csproj └── Pathy.props ├── README.md ├── global.json ├── logo.png └── nuget.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/01_bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/.github/ISSUE_TEMPLATE/01_bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02_api_proposal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/.github/ISSUE_TEMPLATE/02_api_proposal.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/03_general_feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/.github/ISSUE_TEMPLATE/03_general_feature.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/funding.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/.github/funding.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuke/.gitignore: -------------------------------------------------------------------------------- 1 | /temp -------------------------------------------------------------------------------- /.nuke/build.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/.nuke/build.schema.json -------------------------------------------------------------------------------- /.nuke/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/.nuke/parameters.json -------------------------------------------------------------------------------- /.packageguard/cache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/.packageguard/cache.bin -------------------------------------------------------------------------------- /.packageguard/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/.packageguard/config.json -------------------------------------------------------------------------------- /AcceptApiChanges.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/AcceptApiChanges.ps1 -------------------------------------------------------------------------------- /AcceptApiChanges.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/AcceptApiChanges.sh -------------------------------------------------------------------------------- /Build/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/Build/.editorconfig -------------------------------------------------------------------------------- /Build/Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/Build/Build.cs -------------------------------------------------------------------------------- /Build/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/Build/Configuration.cs -------------------------------------------------------------------------------- /Build/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/Build/Directory.Build.props -------------------------------------------------------------------------------- /Build/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/Build/Directory.Build.targets -------------------------------------------------------------------------------- /Build/_build.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/Build/_build.csproj -------------------------------------------------------------------------------- /Build/_build.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/Build/_build.csproj.DotSettings -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /GitVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/GitVersion.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/LICENSE -------------------------------------------------------------------------------- /PackageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/PackageIcon.png -------------------------------------------------------------------------------- /PathWeaver.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/PathWeaver.sln.DotSettings -------------------------------------------------------------------------------- /Pathy.ApiVerificationTests/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/Pathy.ApiVerificationTests/.editorconfig -------------------------------------------------------------------------------- /Pathy.ApiVerificationTests/ApiApproval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/Pathy.ApiVerificationTests/ApiApproval.cs -------------------------------------------------------------------------------- /Pathy.ApiVerificationTests/ApprovedApi/pathy.globbing.net47.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/Pathy.ApiVerificationTests/ApprovedApi/pathy.globbing.net47.verified.txt -------------------------------------------------------------------------------- /Pathy.ApiVerificationTests/ApprovedApi/pathy.globbing.net8.0.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/Pathy.ApiVerificationTests/ApprovedApi/pathy.globbing.net8.0.verified.txt -------------------------------------------------------------------------------- /Pathy.ApiVerificationTests/ApprovedApi/pathy.globbing.netstandard2.0.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/Pathy.ApiVerificationTests/ApprovedApi/pathy.globbing.netstandard2.0.verified.txt -------------------------------------------------------------------------------- /Pathy.ApiVerificationTests/ApprovedApi/pathy.globbing.netstandard2.1.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/Pathy.ApiVerificationTests/ApprovedApi/pathy.globbing.netstandard2.1.verified.txt -------------------------------------------------------------------------------- /Pathy.ApiVerificationTests/ApprovedApi/pathy.net47.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/Pathy.ApiVerificationTests/ApprovedApi/pathy.net47.verified.txt -------------------------------------------------------------------------------- /Pathy.ApiVerificationTests/ApprovedApi/pathy.net8.0.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/Pathy.ApiVerificationTests/ApprovedApi/pathy.net8.0.verified.txt -------------------------------------------------------------------------------- /Pathy.ApiVerificationTests/ApprovedApi/pathy.netstandard2.0.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/Pathy.ApiVerificationTests/ApprovedApi/pathy.netstandard2.0.verified.txt -------------------------------------------------------------------------------- /Pathy.ApiVerificationTests/ApprovedApi/pathy.netstandard2.1.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/Pathy.ApiVerificationTests/ApprovedApi/pathy.netstandard2.1.verified.txt -------------------------------------------------------------------------------- /Pathy.ApiVerificationTests/Pathy.ApiVerificationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/Pathy.ApiVerificationTests/Pathy.ApiVerificationTests.csproj -------------------------------------------------------------------------------- /Pathy.Globbing/.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/Pathy.Globbing/.nuspec -------------------------------------------------------------------------------- /Pathy.Globbing/Pathy.Globbing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/Pathy.Globbing/Pathy.Globbing.csproj -------------------------------------------------------------------------------- /Pathy.Globbing/Pathy.Globbing.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/Pathy.Globbing/Pathy.Globbing.props -------------------------------------------------------------------------------- /Pathy.Globbing/PathyGlobbing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/Pathy.Globbing/PathyGlobbing.cs -------------------------------------------------------------------------------- /Pathy.Specs/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/Pathy.Specs/.editorconfig -------------------------------------------------------------------------------- /Pathy.Specs/ChainablePathExtensionSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/Pathy.Specs/ChainablePathExtensionSpecs.cs -------------------------------------------------------------------------------- /Pathy.Specs/ChainablePathSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/Pathy.Specs/ChainablePathSpecs.cs -------------------------------------------------------------------------------- /Pathy.Specs/Pathy.Specs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/Pathy.Specs/Pathy.Specs.csproj -------------------------------------------------------------------------------- /Pathy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/Pathy.sln -------------------------------------------------------------------------------- /Pathy.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/Pathy.sln.DotSettings -------------------------------------------------------------------------------- /Pathy/.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/Pathy/.nuspec -------------------------------------------------------------------------------- /Pathy/ChainablePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/Pathy/ChainablePath.cs -------------------------------------------------------------------------------- /Pathy/ChainablePathExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/Pathy/ChainablePathExtensions.cs -------------------------------------------------------------------------------- /Pathy/Pathy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/Pathy/Pathy.csproj -------------------------------------------------------------------------------- /Pathy/Pathy.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/Pathy/Pathy.props -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/README.md -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/global.json -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/logo.png -------------------------------------------------------------------------------- /nuget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisdoomen/pathy/HEAD/nuget.png --------------------------------------------------------------------------------