-
Notifications
You must be signed in to change notification settings - Fork 334
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ToString() should also include the Guid for plugins
- Loading branch information
Showing
2 changed files
with
34 additions
and
6 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
src/Persistence/EntityFramework/Model/PlugInConfiguration.Custom.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// <copyright file="PlugInConfiguration.Custom.cs" company="MUnique"> | ||
// Licensed under the MIT License. See LICENSE file in the project root for full license information. | ||
// </copyright> | ||
|
||
namespace MUnique.OpenMU.Persistence.EntityFramework.Model; | ||
|
||
/// <summary> | ||
/// Custom additions to the generated <see cref="PlugInConfiguration"/>. | ||
/// </summary> | ||
internal partial class PlugInConfiguration | ||
{ | ||
/// <inheritdoc /> | ||
public override string ToString() | ||
{ | ||
return $"{base.ToString()} ({this.Id})"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters