Skip to content

Commit

Permalink
DEV: update property SiteSettings.Icon nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasBuscarini committed Jun 4, 2024
1 parent 9fe3942 commit 20ca579
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gh-nuget-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Build, Test, and Publish NuGet
uses: wahinekai/actions-publish-nuget@v3.0.1
with:
version: 1.0.13
version: 1.0.14
project-path: FoodService.Models/FoodService.Models.csproj
solution-path: FoodService.Models.sln
nuget-feed-password: ${{ secrets.PACKAGES_TOKEN }}
2 changes: 1 addition & 1 deletion FoodService.Models/Entities/SiteSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class SiteSettings
/// <summary>
/// Gets or sets the icon of the service as a byte array.
/// </summary>
public byte[] Icon { get; set; }
public byte[]? Icon { get; set; }

/// <summary>
/// Gets or sets the date and time when the settings were last updated.
Expand Down
2 changes: 1 addition & 1 deletion FoodService.Models/FoodService.Models.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<PackageId>FoodService.Models</PackageId>
<Version>1.0.13</Version>
<Version>1.0.14</Version>
<Authors>FoodService</Authors>
<Company>FoodService</Company>
<PackageDescription>A library for models in FoodService project</PackageDescription>
Expand Down

0 comments on commit 20ca579

Please sign in to comment.