diff --git a/InheritDoc/InheritDoc.csproj b/InheritDoc/InheritDoc.csproj index 9d0ac98..dbc8d6e 100644 --- a/InheritDoc/InheritDoc.csproj +++ b/InheritDoc/InheritDoc.csproj @@ -1,7 +1,7 @@  - 2.0.1 + 2.0.2 Command line tool that post processes XML documentation files to support an tag allowing inheriting XML comments from base types, interfaces, and similar methods. Works with .NET Framework, .NET Standard, and .NET Core projects. See the separate InheritDocLib NuGet package for a programmatic interface. Fireshark Studios, LLC Copyright © 2017-2018 diff --git a/InheritDocVsix/Properties/AssemblyInfo.cs b/InheritDocVsix/Properties/AssemblyInfo.cs index dc08d41..9a7f1a1 100644 --- a/InheritDocVsix/Properties/AssemblyInfo.cs +++ b/InheritDocVsix/Properties/AssemblyInfo.cs @@ -29,5 +29,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.2.0.3")] -[assembly: AssemblyFileVersion("1.2.0.3")] +[assembly: AssemblyVersion("2.0.2.0")] +[assembly: AssemblyFileVersion("2.0.2.0")] diff --git a/InheritDocVsix/source.extension.vsixmanifest b/InheritDocVsix/source.extension.vsixmanifest index 9202847..bbc210a 100644 --- a/InheritDocVsix/source.extension.vsixmanifest +++ b/InheritDocVsix/source.extension.vsixmanifest @@ -1,7 +1,7 @@  - + InheritDoc Allows using <inheritdoc/> tags in XML comments that copy and extend the XML comments from base types and interfaces diff --git a/www.inheritdoc.io/index.html b/www.inheritdoc.io/index.html index 4966b22..1e7d13d 100644 --- a/www.inheritdoc.io/index.html +++ b/www.inheritdoc.io/index.html @@ -368,9 +368,9 @@

InheritDoc

  • Run InheritDoc by entering this in the Package Manager Console... -
    .\packages\InheritDoc.2.0.1\tools\InheritDoc
    +
    .\packages\InheritDoc.2.0.2\tools\InheritDoc

    -or-

    -
    \Users\<your user name>\.nuget\packages\inheritdoc\2.0.1\tools\InheritDoc.exe
    +
    \Users\<your user name>\.nuget\packages\inheritdoc\2.0.2\tools\InheritDoc.exe

    The path depends on the type of project (.NET Framework vs .NET Standard/Core).

  • @@ -514,6 +514,7 @@

    FAQ

    Release Notes

      +
    • v2.0.2 (10/23/2018) - Fixed wrong version number in VSIX package
    • v2.0.1 (10/23/2018) - Changed InheritDocLib to shared project to avoid loading issues for VSIX
    • v2.0.0 (8/23/2018) - Converted InheritDocLib to also target .NET Core (thanks johan-v-r)
    • v1.2.3 (8/21/2018) - Upgraded to latest version of Mono.Cecil