Skip to content

Commit

Permalink
try again
Browse files Browse the repository at this point in the history
  • Loading branch information
connorivy committed Dec 3, 2024
1 parent 89f9c72 commit c56af8c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/MockMe.Generator/MockStoreGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ public void Initialize(IncrementalGeneratorInitializationContext context)
string message;
#if DEBUG
message =
$"Generator is running in debug at {Assembly.GetExecutingAssembly().Location}";
$"Generator is running in debug at {typeof(MockStoreGenerator).Assembly.Location}";
#elif RELEASE
message =
$"Generator is running in release at {Assembly.GetExecutingAssembly().Location}";
$"Generator is running in release at {typeof(MockStoreGenerator).Assembly.Location}";
#else
message =
$"Generator is running in other at {Assembly.GetExecutingAssembly().Location}";
$"Generator is running in other at {typeof(MockStoreGenerator).Assembly.Location}";
#endif
ctx.ReportDiagnostic(
Diagnostic.Create(
Expand Down

0 comments on commit c56af8c

Please sign in to comment.