Skip to content

Commit

Permalink
Merge pull request #275 from nikeee/dependabot/nuget/ThisAssembly-1.5.0
Browse files Browse the repository at this point in the history
Bump ThisAssembly from 1.4.3 to 1.5.0
  • Loading branch information
nikeee authored Sep 3, 2024
2 parents 95702fa + ba81f37 commit 6eb5a86
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/Common.props
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,15 @@
<Constant Include="SpdxLicense" Value="AGPL-3.0" />
<Constant Include="Website" Value="https://holzshots.net" />

<!-- Make these available via ThisAssembly.Project -->
<ProjectProperty Include="RepositoryUrl" />

<!-- TODO: fill this constant in CI -->
<Constant Include="BuildDate" Value="2022-02-28" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="ThisAssembly" Version="1.4.3" />
<PackageReference Include="ThisAssembly" Version="1.5.0" />
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="8.0.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/HolzShots.Core/LibraryInformation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public static class LibraryInformation
public static readonly DateTime VersionDate = DateTime.ParseExact(ThisAssembly.Constants.BuildDate, "yyyy-MM-dd", System.Globalization.CultureInfo.InvariantCulture);

public const string SiteUrl = ThisAssembly.Constants.Website;
public const string SourceUrl = ThisAssembly.Metadata.RepositoryUrl;
public const string SourceUrl = ThisAssembly.Project.RepositoryUrl;

public const string IssuesUrl = SourceUrl + "/issues";
public const string LicenseUrl = SourceUrl + "/blob/master/LICENSE";
Expand Down

0 comments on commit 6eb5a86

Please sign in to comment.