Skip to content

Commit

Permalink
[HC] Fix dependency version
Browse files Browse the repository at this point in the history
  • Loading branch information
ManlyMarco committed Feb 17, 2024
1 parent 65d8716 commit 691de53
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion HC_CheatTools/CheatToolsPlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
namespace CheatTools
{
[BepInPlugin(GUID, DisplayName, Version)]
[BepInDependency(RuntimeUnityEditorCore.GUID, RuntimeUnityEditorCore.Version)]
[BepInDependency(RuntimeUnityEditorCore.GUID, ">=" + RuntimeUnityEditorCore.Version)]
[BepInProcess("HoneyCome")] // Studio is missing some important classes, so we can't run in it
public class CheatToolsPlugin : BasePlugin
{
Expand Down
2 changes: 1 addition & 1 deletion HC_CheatTools/HC_CheatTools.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</ItemGroup>

<Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<Delete Files="$(OutputPath)\HC_CheatTools.deps.json" />
<Delete Files="$(OutputPath)\$(AssemblyName).deps.json" />
</Target>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Shared/Metadata.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ internal static class Metadata
{
public const string DisplayName = "Cheat Tools";
public const string GUID = "CheatTools";
public const string Version = "3.3.1";
public const string Version = "3.3.1.1";
}
}

0 comments on commit 691de53

Please sign in to comment.