Skip to content

Commit

Permalink
Update to EXILED 8.7.3 and pack dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
0b10000 committed Feb 5, 2024
1 parent 14bbef7 commit b59faeb
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ obj/
/packages/
riderModule.iml
/_ReSharper.Caches/
KillLogs.sln.DotSettings.user
KillLogs.sln.DotSettings.user
FodyWeavers.xsd
9 changes: 9 additions & 0 deletions FodyWeavers.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<Weavers xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="FodyWeavers.xsd">
<Costura>
<IncludeAssemblies>
DSharp4Webhook
Newtonsoft.Json
</IncludeAssemblies>
</Costura>
</Weavers>
12 changes: 11 additions & 1 deletion KillLogs.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,18 @@
<Compile Include="LogManager.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Costura.Fody" Version="5.8.0-alpha0098">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="DSharp4Webhook" Version="2.0.1" />
<PackageReference Include="EXILED" Version="8.0.1" />
<PackageReference Include="EXILED" Version="8.7.3" />
<PackageReference Include="Fody" Version="6.8.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Content Include="FodyWeavers.xml" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Expand Down
4 changes: 2 additions & 2 deletions Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ public class Plugin : Plugin<Config>
public override string Author => "0b10000";
public override string Name => "KillLogs";
public override string Prefix => "KillLogs";
public override Version Version { get; } = new(6, 0, 0);
public override Version RequiredExiledVersion { get; } = new(8, 0, 0);
public override Version Version { get; } = new(7, 0, 0);
public override Version RequiredExiledVersion { get; } = new(8, 7, 3);

private EventHandlers EventHandlers { get; set; }
internal Methods Methods { get; set; }
Expand Down

0 comments on commit b59faeb

Please sign in to comment.