diff --git a/CSharpier.sln b/CSharpier.sln index 3bc9116eb..42d01e219 100644 --- a/CSharpier.sln +++ b/CSharpier.sln @@ -37,7 +37,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SyntaxFinder", "Src\SyntaxF EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CSharpier.Cli.Tests", "Src\CSharpier.Cli.Tests\CSharpier.Cli.Tests.csproj", "{FDCC2871-9003-4EB8-B714-5C7E50FD5D04}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Docs", "Docs\Docs.csproj", "{1E43290C-C7DA-43CA-ADC5-BD95786BA440}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Docs", "docs\Docs.csproj", "{1E43290C-C7DA-43CA-ADC5-BD95786BA440}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Scripts", "Scripts\Scripts.csproj", "{3CFB200D-ABA6-4021-AF40-CFCF26DBCD66}" EndProject diff --git a/Shell/CreateRelease.psm1 b/Shell/CreateRelease.psm1 index b9a6fef89..028ee014e 100644 --- a/Shell/CreateRelease.psm1 +++ b/Shell/CreateRelease.psm1 @@ -25,7 +25,7 @@ function CSH-CreateRelease { Set-Content -Encoding UTF8 -Path $changeLogPath -Value ($changeLog + $changeLogValue) - foreach ($file in Get-ChildItem ($PSScriptRoot + "/../Docs") -Filter "*.md") + foreach ($file in Get-ChildItem ($PSScriptRoot + "/../docs") -Filter "*.md") { Copy-Item $file.FullName ($PSScriptRoot + "/../Src/Website/docs/" + $file.Name) } diff --git a/Src/Website/docs/EditorsTroubleshooting.md b/Src/Website/docs/EditorsTroubleshooting.md index a47141fc7..d59891b5e 100644 --- a/Src/Website/docs/EditorsTroubleshooting.md +++ b/Src/Website/docs/EditorsTroubleshooting.md @@ -40,13 +40,13 @@ When the extension is unable to format files, it is generally a problem with bei ## Troubleshooting Steps The following can help track down issues with the extension being unable to install/run CSharpier -1. Validate the following command can run in the directory of your project\ +1. Validate the following command can run in the directory of your project \ `dotnet csharpier --version` -2. If the extension was able to install CSharpier it should exist at a path such as\ -`C:\Users\[UserName]\AppData\Local\CSharpier\[CSharpierVersion]` or\ +2. If the extension was able to install CSharpier it should exist at a path such as \ +`C:\Users\[UserName]\AppData\Local\CSharpier\[CSharpierVersion]` or \ `$Home/.cache/csharpier/[CSharpierVersion]` -3. Assuming the directory above exists, attempt to run the following in that directory\ +3. Assuming the directory above exists, attempt to run the following in that directory \ `dotnet-csharpier --version` -4. If the installation appears to be corrupt, delete the directory and install CSharpier there yourself\ +4. If the installation appears to be corrupt, delete the directory and install CSharpier there yourself \ `dotnet tool install csharpier --version [CSharpierVersion] --tool-path [PathFromStep2]` -5. Repeat step 3 to validate the install \ No newline at end of file +5. Repeat step 3 to validate the install diff --git a/Src/Website/docusaurus.config.js b/Src/Website/docusaurus.config.js index c6c7da50e..f1e2c5d32 100644 --- a/Src/Website/docusaurus.config.js +++ b/Src/Website/docusaurus.config.js @@ -25,7 +25,7 @@ const config = { ({ docs: { sidebarPath: require.resolve("./sidebars.js"), - editUrl: githubUrl + "/tree/master/Docs/", + editUrl: githubUrl + "/tree/master/", }, theme: { customCss: require.resolve("./src/css/custom.css"), diff --git a/Docs/API.md b/docs/API.md similarity index 100% rename from Docs/API.md rename to docs/API.md diff --git a/Docs/About.md b/docs/About.md similarity index 100% rename from Docs/About.md rename to docs/About.md diff --git a/Docs/CLI.md b/docs/CLI.md similarity index 100% rename from Docs/CLI.md rename to docs/CLI.md diff --git a/Docs/Configuration.md b/docs/Configuration.md similarity index 100% rename from Docs/Configuration.md rename to docs/Configuration.md diff --git a/Docs/ContinuousIntegration.md b/docs/ContinuousIntegration.md similarity index 100% rename from Docs/ContinuousIntegration.md rename to docs/ContinuousIntegration.md diff --git a/Docs/Docs.csproj b/docs/Docs.csproj similarity index 100% rename from Docs/Docs.csproj rename to docs/Docs.csproj diff --git a/Docs/Editors.md b/docs/Editors.md similarity index 100% rename from Docs/Editors.md rename to docs/Editors.md diff --git a/Docs/EditorsTroubleshooting.md b/docs/EditorsTroubleshooting.md similarity index 100% rename from Docs/EditorsTroubleshooting.md rename to docs/EditorsTroubleshooting.md diff --git a/Docs/ExtensionTestCases.md b/docs/ExtensionTestCases.md similarity index 100% rename from Docs/ExtensionTestCases.md rename to docs/ExtensionTestCases.md diff --git a/Docs/Ignore.md b/docs/Ignore.md similarity index 100% rename from Docs/Ignore.md rename to docs/Ignore.md diff --git a/Docs/Installation.md b/docs/Installation.md similarity index 100% rename from Docs/Installation.md rename to docs/Installation.md diff --git a/Docs/IntegratingWithLinters.md b/docs/IntegratingWithLinters.md similarity index 100% rename from Docs/IntegratingWithLinters.md rename to docs/IntegratingWithLinters.md diff --git a/Docs/MSBuild.md b/docs/MSBuild.md similarity index 100% rename from Docs/MSBuild.md rename to docs/MSBuild.md diff --git a/Docs/Pre-commit.md b/docs/Pre-commit.md similarity index 100% rename from Docs/Pre-commit.md rename to docs/Pre-commit.md