Skip to content

Commit 9a655fb

Browse files
Merge pull request #10 from jonathanalgar/fix-sonarcloud-feedback
refactor Analyzer class
2 parents 8905155 + 8bd1f8e commit 9a655fb

6 files changed

Lines changed: 604 additions & 608 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Although IntelliSense in your IDE guides the available SDK decorators and their
2020

2121
When you upload your project's built assembly to the ODC Portal, it does not have access to the underlying code—the ODC Portal checks compliance with the rules using the assembly's metadata.
2222

23-
This extension, built from scratch, implements the rules using the rich code analysis APIs of [Roslyn](https://github.com/dotnet/roslyn), the .NET compiler.
23+
This component, built from scratch, implements the rules using the rich code analysis APIs of [Roslyn](https://github.com/dotnet/roslyn), the .NET compiler.
2424

2525
## How to use
2626

@@ -36,7 +36,7 @@ Add the [NuGet package](https://www.nuget.org/packages/CustomCode.Analyzer/) as
3636

3737
```dotnet add package CustomCode.Analyzer```
3838

39-
If your project references the External Libraries SDK (`OutSystems.ExternalLibraries.SDK`), the component should automatically start providing feedback on your code.
39+
If your project references the External Libraries SDK (`OutSystems.ExternalLibraries.SDK`), the package should automatically start providing feedback on your code.
4040

4141
> :bulb: Auto-updating extensions for Visual Studio Code and Rider are in the works.
4242
@@ -49,6 +49,6 @@ If your project references the External Libraries SDK (`OutSystems.ExternalLibra
4949

5050
## Contributing
5151

52-
Please report bugs and feature requests [here](https://github.com/jonathanalgar/CustomCode-Analyzer/issues).
52+
Please report bugs and feature requests [here](https://github.com/jonathanalgar/CustomCode-Analyzer/issues/new/choose).
5353

54-
PRs are welcome. Code quality improvements, features (especially those in the TODO list) and documentation improvements are all welcome 🤗 All changes to Analyzer code should pass all existing tests (`dotnet test`) and all new features should be comprehensively covered by new tests.
54+
PRs are welcome. Code quality improvements, features (especially those in the TODO list) and documentation improvements are all welcome 🤗 All changes to Analyzer code should pass all existing tests (`dotnet test`) and all new features should be covered by new tests.

src/CustomCode-Analyzer.Vsix/CustomCode-Analyzer.Vsix.csproj

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,11 @@
7070
<IncludeInVSIX>true</IncludeInVSIX>
7171
<Link>README.md</Link>
7272
</Content>
73+
<Content Include="..\..\screenshot.png">
74+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
75+
<IncludeInVSIX>true</IncludeInVSIX>
76+
<Link>Resources\screenshot.png</Link>
77+
</Content>
7378
</ItemGroup>
7479

7580

src/CustomCode-Analyzer.Vsix/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
33
<Metadata>
4-
<Identity Id="CustomCode_Analyzer.Vsix.e1c79fe3-d19f-4bf9-9c0c-57ba1f95b494" Version="0.1.1" Language="en-US" Publisher="Jonathan Algar"/>
4+
<Identity Id="CustomCode_Analyzer.Vsix.e1c79fe3-d19f-4bf9-9c0c-57ba1f95b494" Version="0.1.2" Language="en-US" Publisher="Jonathan Algar"/>
55
<DisplayName>ODC Custom Code Analyzer</DisplayName>
66
<Description xml:space="preserve">Get feedback on your OutSytems Developer Cloud (ODC) custom C# code as you code.</Description>
77
<MoreInfo>https://github.com/jonathanalgar/CustomCode-Analyzer</MoreInfo>

0 commit comments

Comments
 (0)