Skip to content

Commit

Permalink
Update EditorsTroubleshooting.md (#1058)
Browse files Browse the repository at this point in the history
* Update EditorsTroubleshooting.md

* Update docusaurus.config.js

* fixing edit url
  • Loading branch information
belav authored Dec 4, 2023
1 parent 70b414a commit 9822a14
Show file tree
Hide file tree
Showing 18 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CSharpier.sln
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Shell/CreateRelease.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down
12 changes: 6 additions & 6 deletions Src/Website/docs/EditorsTroubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
5. Repeat step 3 to validate the install
2 changes: 1 addition & 1 deletion Src/Website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 9822a14

Please sign in to comment.