Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Andras-Csanyi committed Apr 27, 2024
1 parent 05dcf94 commit a4d5659
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
10 changes: 1 addition & 9 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,6 @@ replace = {new_version}
search = {current_version}
replace = {new_version}

[bumpversion:file:src/EG.Common/BusinessLogic.Contracts/BusinessLogic.Contracts.csproj]
search = {current_version}
replace = {new_version}

[bumpversion:file:src/EG.Backend/BusinessLogic/BusinessLogic.csproj]
search = {current_version}
replace = {new_version}

[bumpversion:file:src/EG.FrontEnd/UIWasm/UIWasm.csproj]
[bumpversion:file:BusinessLogic.Contracts/BusinessLogic.Contracts.csproj]
search = {current_version}
replace = {new_version}
5 changes: 4 additions & 1 deletion BusinessLogic.Contracts/ApplicationResult.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
namespace EncyclopediaGalactica.BusinessLogic.Contracts;

/// <summary>
///
/// </summary>
public class ApplicationResult
{
public long Id { get; set; }
public string Name { get; set; }

Check warning on line 9 in BusinessLogic.Contracts/ApplicationResult.cs

View workflow job for this annotation

GitHub Actions / EG.Commons

Non-nullable property 'Name' must contain a non-null value when exiting constructor. Consider declaring the property as nullable.
public string Description { get; set; }

Check warning on line 10 in BusinessLogic.Contracts/ApplicationResult.cs

View workflow job for this annotation

GitHub Actions / EG.Commons

Non-nullable property 'Description' must contain a non-null value when exiting constructor. Consider declaring the property as nullable.
}
}

0 comments on commit a4d5659

Please sign in to comment.