diff --git a/src/CodeContractNullability/CodeContractNullability.Vsix/source.extension.vsixmanifest b/src/CodeContractNullability/CodeContractNullability.Vsix/source.extension.vsixmanifest index 72a54f5..ae23d96 100644 --- a/src/CodeContractNullability/CodeContractNullability.Vsix/source.extension.vsixmanifest +++ b/src/CodeContractNullability/CodeContractNullability.Vsix/source.extension.vsixmanifest @@ -1,7 +1,7 @@  - + Resharper Code Contract Nullability Reports diagnostics, helping you to annotate your source tree with (Item)NotNull / (Item)CanBeNull attributes. See also: https://www.jetbrains.com/resharper/help/Code_Analysis__Code_Annotations.html https://github.com/bkoelman/ResharperCodeContractNullability diff --git a/src/CodeContractNullability/CodeContractNullability/CodeContractNullability.nuspec b/src/CodeContractNullability/CodeContractNullability/CodeContractNullability.nuspec index 18623b9..d34d039 100644 --- a/src/CodeContractNullability/CodeContractNullability/CodeContractNullability.nuspec +++ b/src/CodeContractNullability/CodeContractNullability/CodeContractNullability.nuspec @@ -12,10 +12,13 @@ Reports diagnostics, helping you to annotate your source tree with (Item)NotNull / (Item)CanBeNull attributes. See also: https://www.jetbrains.com/resharper/help/Code_Analysis__Code_Annotations.html You need - Visual Studio 2015 and Resharper v9 or higher to use this analyzer. See package "ResharperCodeContractNullabilityFxCop" if - you use Visual Studio 2013 or lower. + Visual Studio 2015 and Resharper v9 or higher to use this analyzer. See package + "ResharperCodeContractNullabilityFxCop" if you use Visual Studio 2013 or lower. - Bugfix in analysis of partially generic type hierarchy; support Resharper installation in 'All Users' mode. + + Configurable reporting on nullable value types; bugfixes in reporting correctness; performance + optimalizations; include debug symbols in NuGet package. + Apache License, Version 2.0 en-us diff --git a/src/CodeContractNullability/CodeContractNullability/Properties/AssemblyInfo.cs b/src/CodeContractNullability/CodeContractNullability/Properties/AssemblyInfo.cs index ed05794..b48c53d 100644 --- a/src/CodeContractNullability/CodeContractNullability/Properties/AssemblyInfo.cs +++ b/src/CodeContractNullability/CodeContractNullability/Properties/AssemblyInfo.cs @@ -33,6 +33,6 @@ // 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.4")] -[assembly: AssemblyFileVersion("1.0.4")] -[assembly: AssemblyInformationalVersion("1.0.4")] \ No newline at end of file +[assembly: AssemblyVersion("1.0.5")] +[assembly: AssemblyFileVersion("1.0.5")] +[assembly: AssemblyInformationalVersion("1.0.5")] \ No newline at end of file