Skip to content

Commit

Permalink
Update to version 2024.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Mahmoud Fakhoury authored and Mahmoud Fakhoury committed Apr 19, 2024
1 parent b1de5d9 commit c7d5bd2
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Exceptional is an extension for ReSharper which analyzes thrown and documented C# exceptions and suggests improvements.

**Last Update: Date: 17.12.2023 - Resharper SDK 2023.3.1** Wave 233
**Last Update: Date: 19.04.2024 - Resharper SDK 2024.4.1** Wave 241

### Motivation

Expand Down
6 changes: 3 additions & 3 deletions build/Old Build/ExceptionalDevs.Exceptional.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
<package>
<metadata>
<id>ExceptionalDevs.Exceptional.MF</id>
<version>2023.3.1</version>
<version>2024.1.1</version>
<title>Exceptional by MF</title>
<description>Analyzes thrown and documented C# exceptions and suggests improvements.</description>
<authors>Mahmoud Fakhoury</authors>
<projectUrl>https://github.com/hhu-mahmoud/ExceptionalReSharper</projectUrl>
<copyright>Copyright © 2023 MF</copyright>
<copyright>Copyright © 2024 MF</copyright>
<tags>Exception XMLdoc</tags>
<licenseUrl>https://github.com/hhu-mahmoud/ExceptionalReSharper/blob/master/LICENSE.md</licenseUrl>
<dependencies>
<dependency id="Wave" version="[233]" />
<dependency id="Wave" version="[241]" />
</dependencies>
</metadata>
<files>
Expand Down
Binary file modified build/Old Build/lib/ReSharper.Exceptional.MF.dll
Binary file not shown.
Binary file not shown.
6 changes: 3 additions & 3 deletions src/Exceptional/Exceptional.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,13 @@
<Version>2023.3.0</Version>
</PackageReference>
<PackageReference Include="JetBrains.Lifetimes">
<Version>2023.3.3</Version>
<Version>2024.1.1</Version>
</PackageReference>
<PackageReference Include="JetBrains.RdFramework">
<Version>2023.3.3</Version>
<Version>2024.1.1</Version>
</PackageReference>
<PackageReference Include="JetBrains.ReSharper.SDK" Version="2021.3.2">
<Version>2023.3.1</Version>
<Version>2024.1.1</Version>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
2 changes: 2 additions & 0 deletions src/Exceptional/Options/GeneralOptionsPage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ public GeneralOptionsPage(
{
CreateCheckboxInspectPublic(lifetime, optionsSettingsSmartContext.StoreOptionsTransactionContext);
CreateDocumentationSection(lifetime, optionsSettingsSmartContext.StoreOptionsTransactionContext);
AddEmptyLine();
AddText(OptionsLabels.General.ExtensionVersion);
}

#endregion
Expand Down
4 changes: 4 additions & 0 deletions src/Exceptional/Options/OptionsLabels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,15 @@ public static class General
{
#region constants

private static readonly System.Reflection.Assembly Assembly = System.Reflection.Assembly.GetExecutingAssembly();
private static readonly System.Diagnostics.FileVersionInfo Fvi = System.Diagnostics.FileVersionInfo.GetVersionInfo(Assembly.Location);
private static readonly string Version = Fvi.FileVersion;
public const string DelegateInvocationsMayThrowSystemException = "Delegate invocations may throw System.Exception";

public const string DocumentationOfThrownExceptionsSubtypeHeader = "Documentation of thrown exception's subtype is sufficient...";
public const string IsDocumentationOfExceptionSubtypeSufficientForReferenceExpressions = "... for method or property invocations";
public const string IsDocumentationOfExceptionSubtypeSufficientForThrowStatements = "... for throw statements";
public static readonly string ExtensionVersion = @$"Exceptional by MF - Version: {Version}";

#endregion
}
Expand Down
4 changes: 2 additions & 2 deletions src/Exceptional/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
[assembly: System.Reflection.AssemblyDescription("Analyzes thrown and documented C# exceptions and suggests improvements.")]
[assembly: System.Reflection.AssemblyProduct("Exceptional")]
[assembly: System.Reflection.AssemblyCompany("Mahmoud Fakhoury")]
[assembly: System.Reflection.AssemblyCopyright("Copyright © 2023 MF")]
[assembly: System.Reflection.AssemblyVersion("2023.3.1")]
[assembly: System.Reflection.AssemblyCopyright("Copyright © 2024 MF")]
[assembly: System.Reflection.AssemblyVersion("2024.1.1")]
[assembly: System.Runtime.InteropServices.ComVisible(false)]
[assembly: System.Runtime.InteropServices.Guid("3628d589-e118-4c2c-bd8e-fdef6b6ed07c")]

Expand Down

0 comments on commit c7d5bd2

Please sign in to comment.