-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #389 from TimeWarpEngineering/Cramer/2024-03-04/An…
…notations Use AssemblyMarker
- Loading branch information
Showing
7 changed files
with
39 additions
and
35 deletions.
There are no files selected for viewing
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
This file was deleted.
Oops, something went wrong.
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,12 @@ | ||
namespace BlazorState; | ||
|
||
/// <summary> | ||
/// Serves as a marker for the assembly, facilitating easy identification and reflection-based operations. | ||
/// </summary> | ||
/// <remarks> | ||
/// This class is intended to be used as a reference point within the assembly for scenarios such as assembly scanning, | ||
/// where a stable, known type is required to locate the assembly at runtime. The class is sealed to indicate it is not | ||
/// designed for inheritance or extension, reinforcing its role as a simple marker. | ||
/// </remarks> | ||
[UsedImplicitly] | ||
public sealed class AssemblyMarker { } |
This file was deleted.
Oops, something went wrong.
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,12 @@ | ||
namespace TimeWarp.State.Plus; | ||
|
||
/// <summary> | ||
/// Serves as a marker for the assembly, facilitating easy identification and reflection-based operations. | ||
/// </summary> | ||
/// <remarks> | ||
/// This class is intended to be used as a reference point within the assembly for scenarios such as assembly scanning, | ||
/// where a stable, known type is required to locate the assembly at runtime. The class is sealed to indicate it is not | ||
/// designed for inheritance or extension, reinforcing its role as a simple marker. | ||
/// </remarks> | ||
[UsedImplicitly] | ||
public sealed class AssemblyMarker { } |
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,12 @@ | ||
namespace Test.App.Client; | ||
|
||
/// <summary> | ||
/// Serves as a marker for the assembly, facilitating easy identification and reflection-based operations. | ||
/// </summary> | ||
/// <remarks> | ||
/// This class is intended to be used as a reference point within the assembly for scenarios such as assembly scanning, | ||
/// where a stable, known type is required to locate the assembly at runtime. The class is sealed to indicate it is not | ||
/// designed for inheritance or extension, reinforcing its role as a simple marker. | ||
/// </remarks> | ||
[UsedImplicitly] | ||
public sealed class AssemblyMarker { } |
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