Skip to content

Commit

Permalink
Update csproj
Browse files Browse the repository at this point in the history
  • Loading branch information
MSWS committed Jan 25, 2024
1 parent ee77b77 commit e8aa321
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
9 changes: 9 additions & 0 deletions mod/Jailbreak.Draw/DrawServiceExtension.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
namespace Jailbreak.Draw;

public static class DrawServiceExtension
{
public static void AddJailbreakDraw(this IServiceCollection serviceCollection)

Check failure on line 5 in mod/Jailbreak.Draw/DrawServiceExtension.cs

View workflow job for this annotation

GitHub Actions / build

The type or namespace name 'IServiceCollection' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 5 in mod/Jailbreak.Draw/DrawServiceExtension.cs

View workflow job for this annotation

GitHub Actions / build

The type or namespace name 'IServiceCollection' could not be found (are you missing a using directive or an assembly reference?)
{
serviceCollection.AddPluginBehavior<IDrawService, DrawManager>();
}
}
1 change: 1 addition & 0 deletions src/Jailbreak/Jailbreak.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@

<ItemGroup>
<ProjectReference Include="..\..\lang\Jailbreak.English\Jailbreak.English.csproj" />
<ProjectReference Include="..\..\mod\Jailbreak.Draw\Jailbreak.Draw.csproj" />
<ProjectReference Include="..\..\mod\Jailbreak.Teams\Jailbreak.Teams.csproj" />
<ProjectReference Include="..\..\mod\Jailbreak.Warden\Jailbreak.Warden.csproj" />
<ProjectReference Include="..\..\public\Jailbreak.Public\Jailbreak.Public.csproj" />
Expand Down

0 comments on commit e8aa321

Please sign in to comment.