Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
aritchie committed Jun 1, 2024
1 parent 2006a23 commit 4ca2e91
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
7 changes: 4 additions & 3 deletions Sample/Sample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,9 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\src\Shiny.Mediator.Contracts\Shiny.Mediator.Contracts.csproj" />
<ProjectReference Include="..\src\Shiny.Mediator.Maui\Shiny.Mediator.Maui.csproj" />
<ProjectReference Include="..\src\Shiny.Mediator\Shiny.Mediator.csproj" />
<ProjectReference Include="..\src\Shiny.Mediator.Contracts\Shiny.Mediator.Contracts.csproj"/>
<ProjectReference Include="..\src\Shiny.Mediator.Maui\Shiny.Mediator.Maui.csproj"/>
<ProjectReference Include="..\src\Shiny.Mediator.SourceGenerators\Shiny.Mediator.SourceGenerators.csproj"/>
<ProjectReference Include="..\src\Shiny.Mediator\Shiny.Mediator.csproj"/>
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Shiny Mediator (Preview)

<a href="https://www.nuget.org/packages/Shiny.Mediator" target="_blank">
<img src="https://buildstats.info/nuget/Shiny.Mediator" />
<img src="https://buildstats.info/nuget/Shiny.Mediator?includePreReleases=true" />
</a>

A mediator pattern, but for apps. Apps have pages with lifecycles that don't necessarily participate in the standard
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ public void Execute(GeneratorExecutionContext context)
if (!(context.SyntaxContextReceiver is SyntaxReceiver receiver))
return;

// TODO: detect double registration of request handlers
var sb = new StringBuilder();
sb
.AppendLine("namespace Shiny.Mediator;")
Expand Down

0 comments on commit 4ca2e91

Please sign in to comment.