Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Although IntelliSense in your IDE guides the available SDK decorators and their

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.

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

## How to use

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

```dotnet add package CustomCode.Analyzer```

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

> :bulb: Auto-updating extensions for Visual Studio Code and Rider are in the works.

Expand All @@ -49,6 +49,6 @@ If your project references the External Libraries SDK (`OutSystems.ExternalLibra

## Contributing

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

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.
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.
5 changes: 5 additions & 0 deletions src/CustomCode-Analyzer.Vsix/CustomCode-Analyzer.Vsix.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,11 @@
<IncludeInVSIX>true</IncludeInVSIX>
<Link>README.md</Link>
</Content>
<Content Include="..\..\screenshot.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<IncludeInVSIX>true</IncludeInVSIX>
<Link>Resources\screenshot.png</Link>
</Content>
</ItemGroup>


Expand Down
2 changes: 1 addition & 1 deletion src/CustomCode-Analyzer.Vsix/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<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">
<Metadata>
<Identity Id="CustomCode_Analyzer.Vsix.e1c79fe3-d19f-4bf9-9c0c-57ba1f95b494" Version="0.1.1" Language="en-US" Publisher="Jonathan Algar"/>
<Identity Id="CustomCode_Analyzer.Vsix.e1c79fe3-d19f-4bf9-9c0c-57ba1f95b494" Version="0.1.2" Language="en-US" Publisher="Jonathan Algar"/>
<DisplayName>ODC Custom Code Analyzer</DisplayName>
<Description xml:space="preserve">Get feedback on your OutSytems Developer Cloud (ODC) custom C# code as you code.</Description>
<MoreInfo>https://github.com/jonathanalgar/CustomCode-Analyzer</MoreInfo>
Expand Down
Loading