Skip to content

Commit 81a0507

Browse files
Bart KoelmanBart Koelman
authored andcommitted
Use relative links in markdown
1 parent 01b436a commit 81a0507

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@
33
[![Build status](https://ci.appveyor.com/api/projects/status/q37dldfggtcwf6u4/branch/master?svg=true)](https://ci.appveyor.com/project/bkoelman/csharpguidelinesanalyzer/branch/master)
44
[![codecov](https://codecov.io/gh/bkoelman/CSharpGuidelinesAnalyzer/branch/master/graph/badge.svg)](https://codecov.io/gh/bkoelman/CSharpGuidelinesAnalyzer)
55

6-
This Visual Studio analyzer supports you in making your code comply with the C# coding guidelines at [CSharpGuidelines](https://github.com/dennisdoomen/CSharpGuidelines).
6+
This Visual Studio analyzer supports you in making your code comply with the C# coding guidelines at [CSharpGuidelines](https://github.com/dennisdoomen/CSharpGuidelines).
77

8-
Note that many guidelines are already covered by [Resharper](https://www.jetbrains.com/resharper/), for which [a layer file is provided](https://github.com/bkoelman/CSharpGuidelinesAnalyzer/blob/master/docs/Resharper%20Settings.md).
9-
See [Overview](https://github.com/bkoelman/CSharpGuidelinesAnalyzer/blob/master/docs/Overview.md) for the list of supported rules.
8+
Note that many guidelines are already covered by [Resharper](https://www.jetbrains.com/resharper/), for which [a layer file is provided](/docs/Resharper%20Settings.md).
9+
See [Overview](/docs/Overview.md) for the list of supported rules.
1010

1111
![Analyzer in action](https://github.com/bkoelman/CSharpGuidelinesAnalyzer/blob/gh-pages/images/analyzer-in-action.png)
1212

1313
## Get started
1414

15-
The latest version requires [Visual Studio 2017 with Update 5](https://www.visualstudio.com/) or higher. To get instant feedback on all files in your solution, activate [Full Solution Analysis](https://github.com/bkoelman/CSharpGuidelinesAnalyzer/blob/master/docs/Full%20Solution%20Analysis.md).
15+
The latest version requires [Visual Studio 2017 with Update 5](https://www.visualstudio.com/) or higher. To get instant feedback on all files in your solution, activate [Full Solution Analysis](/docs/Full%20Solution%20Analysis.md).
1616

1717
* From the NuGet package manager console:
1818

19-
`Install-Package CSharpGuidelinesAnalyzer`
19+
`Install-Package CSharpGuidelinesAnalyzer`
2020

2121
or, if you are using Visual Studio 2017 with Update 3:
2222

@@ -28,7 +28,7 @@ The latest version requires [Visual Studio 2017 with Update 5](https://www.visua
2828

2929
* Rebuild your solution
3030

31-
* Optional: [Reference CSharpGuidelines.Layer.DotSettings in your existing Resharper preferences](https://github.com/bkoelman/CSharpGuidelinesAnalyzer/blob/master/docs/Resharper%20Settings.md)
31+
* Optional: [Reference CSharpGuidelines.Layer.DotSettings in your existing Resharper preferences](/docs/Resharper%20Settings.md)
3232

3333
## Suppressing rules
3434
Rule warnings can be suppressed at various scopes, ranging from per line to at the project or solution level.

docs/Overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ This analyzer reports when:
158158
- the compiler warning level is below 4 in the build settings
159159
- warnings are not treated as errors in the build settings.
160160

161-
Note: this analyzer requires [Full Solution Analysis](https://github.com/bkoelman/CSharpGuidelinesAnalyzer/blob/master/docs/Full%20Solution%20Analysis.md) enabled.
161+
Note: this analyzer requires [Full Solution Analysis](/docs/Full%20Solution%20Analysis.md) enabled.
162162

163163
### [AV2220](https://github.com/dennisdoomen/CSharpGuidelines/blob/1a90b74c95225a0f7e4d0e7a341fd027e17c2320/_pages/2200_FrameworkGuidelines.md#av2220): Avoid LINQ for simple expressions ![](/images/info.png "severity: info")
164164
This analyzer reports when a query (LINQ expression) can be changed into a single method call.

docs/Resharper Settings.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Resharper settings
22

3-
Many guidelines are covered by Resharper. To verify those, this repository contains a special DotSettings file.
3+
Many guidelines are covered by Resharper. To verify those, this repository contains a special DotSettings file.
44
You can easily use it in combination with your own Resharper settings, by adding it as a layer. That way, your existing preferences are merged with it.
55

66
To try it out, follow the next steps:
77
* Open your solution in Visual Studio
88
* Go to **Resharper**, **Manage Options**
99
* At the level **Solution team-shared**, click the green plus next to it and select **Open Settings File**
10-
* Download [CSharpGuidelines.Layer.DotSettings](https://github.com/bkoelman/CSharpGuidelinesAnalyzer/blob/master/CSharpGuidelines.Layer.DotSettings) to your solution folder and browse to it
10+
* Download [CSharpGuidelines.Layer.DotSettings](/CSharpGuidelines.Layer.DotSettings) to your solution folder and browse to it
1111
* Click **Close** to save changes

0 commit comments

Comments
 (0)