Skip to content

Commit

Permalink
Metadata updates for next release: v2.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Bart Koelman authored and Bart Koelman committed Dec 5, 2017
1 parent 875d82f commit f4f6a46
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 21 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,16 @@ See [Overview](https://github.com/bkoelman/CSharpGuidelinesAnalyzer/blob/master/

## Get started

The latest stable version requires [Visual Studio 2017 with Update 3](https://www.visualstudio.com/). 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).
The latest stable version requires [Visual Studio 2017 with Update 5](https://www.visualstudio.com/). 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).

* From the NuGet package manager console:

`Install-Package CSharpGuidelinesAnalyzer`

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

`Install-Package CSharpGuidelinesAnalyzer -version 2.0.0`

or, if you are using Visual Studio 2015 with Update 2 or higher:

`Install-Package CSharpGuidelinesAnalyzer -version 1.0.1`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@
</PropertyGroup>
<PropertyGroup>
<!-- https://github.com/NuGet/Home/issues/5630 -->
<PackageId>CSharpGuidelinesAnalyzer.NuGetBugRequiresNewId</PackageId>
<PackageId>CSharpGuidelinesAnalyzer</PackageId>
<Title>C# Coding Guidelines Analyzer</Title>
<Version>2.0.1-pre</Version>
<Version>2.6.0</Version>
<Authors>Bart Koelman</Authors>
<Company />
<PackageLicenseUrl>http://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/bkoelman/CSharpGuidelinesAnalyzer</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Description>Reports diagnostics for C# coding guidelines that are not already covered by Resharper. Requires Visual Studio 2017 Update 3. Use v1.0.1 if you are using Visual Studio 2015 with Update 2 or higher.</Description>
<PackageReleaseNotes>Updated for IOperation API changes in Visual Studio 2017 Update 3. Use v1.0.1 if you are using Visual Studio 2015 with Update 2 or higher.</PackageReleaseNotes>
<Description>Reports diagnostics for C# coding guidelines that are not already covered by Resharper. Requires Visual Studio 2017 Update 5 or higher.</Description>
<PackageReleaseNotes>Updated for IOperation API changes in Visual Studio 2017 Update 5.</PackageReleaseNotes>
<Copyright>Apache License, Version 2.0</Copyright>
<PackageTags>csharp c# coding guidelines analyzer</PackageTags>
<NoPackageAnalysis>true</NoPackageAnalysis>
Expand All @@ -35,7 +35,6 @@
</ItemGroup>
<ItemGroup>
<None Update="tools\*.ps1" CopyToOutputDirectory="PreserveNewest" Pack="true" PackagePath="" />
<None Update="build\*.props" CopyToOutputDirectory="PreserveNewest" Pack="true" PackagePath="" />
<None Include="$(OutputPath)\$(AssemblyName).dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
</ItemGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public bool IsCompatible()
public string GetMessage()
{
return VersionStatusLazy.Value == VisualStudioVersionStatus.TooLow
? "This analyzer package requires Visual Studio 2017 Update 5 or later. Please upgrade to a newer version of Visual Studio."
? "This analyzer package requires Visual Studio 2017 Update 5 or higher. Please upgrade to a newer version of Visual Studio."
: null;
}

Expand Down

This file was deleted.

0 comments on commit f4f6a46

Please sign in to comment.