* Now, command management is done in its own class, which is properly registered as a singleton. * The CommandTracker class was replaced with per-command disposables, which can be used with Impostor's MultiDisposable class * Minor bugfixes were introduced * The local dependency on my patched Impostor was replaced with a nuget dependency The plugin is basically ready for general usage, however I may change ICommand, ISender, and/or CommandReader in breaking ways later
8 lines
236 B
XML
8 lines
236 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Impostor.Api" Version="1.10.2" />
|
|
</ItemGroup>
|
|
</Project>
|