Skip to content

Commit 7e24350

Browse files
committed
Bump plugin version to 0.8.2 and fix compile error
1 parent 9d734de commit 7e24350

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

Hi3Helper.Plugin.HBR.sln

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ Global
4545
{0D34F528-5F09-AD5B-9804-C4EE38FACD1C}.ReleaseNoReflection|x64.Build.0 = Release|x64
4646
{9E58C55F-9D8C-F9CB-F23A-11E336C9D51D}.Debug|x64.ActiveCfg = Debug|x64
4747
{9E58C55F-9D8C-F9CB-F23A-11E336C9D51D}.Debug|x64.Build.0 = Debug|x64
48-
{9E58C55F-9D8C-F9CB-F23A-11E336C9D51D}.DebugNoReflection|x64.ActiveCfg = Debug|x64
49-
{9E58C55F-9D8C-F9CB-F23A-11E336C9D51D}.DebugNoReflection|x64.Build.0 = Debug|x64
48+
{9E58C55F-9D8C-F9CB-F23A-11E336C9D51D}.DebugNoReflection|x64.ActiveCfg = DebugNoReflection|x64
49+
{9E58C55F-9D8C-F9CB-F23A-11E336C9D51D}.DebugNoReflection|x64.Build.0 = DebugNoReflection|x64
5050
{9E58C55F-9D8C-F9CB-F23A-11E336C9D51D}.Release|x64.ActiveCfg = Release|x64
5151
{9E58C55F-9D8C-F9CB-F23A-11E336C9D51D}.Release|x64.Build.0 = Release|x64
52-
{9E58C55F-9D8C-F9CB-F23A-11E336C9D51D}.ReleaseNoReflection|x64.ActiveCfg = Release|x64
53-
{9E58C55F-9D8C-F9CB-F23A-11E336C9D51D}.ReleaseNoReflection|x64.Build.0 = Release|x64
52+
{9E58C55F-9D8C-F9CB-F23A-11E336C9D51D}.ReleaseNoReflection|x64.ActiveCfg = ReleaseNoReflection|x64
53+
{9E58C55F-9D8C-F9CB-F23A-11E336C9D51D}.ReleaseNoReflection|x64.Build.0 = ReleaseNoReflection|x64
5454
EndGlobalSection
5555
GlobalSection(SolutionProperties) = preSolution
5656
HideSolutionNode = FALSE

Hi3Helper.Plugin.HBR/Exports.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace Hi3Helper.Plugin.HBR;
1515
public class Seraphim : SharedStatic<Seraphim> // 2025-08-18: We use generic version of SharedStatic<T> to add support for game launch API.
1616
// Though, the devs can still use the old SharedStatic without any compatibility issue.
1717
{
18-
static Seraphim() => Load<HBRPlugin>(!RuntimeFeature.IsDynamicCodeCompiled ? new Core.Management.GameVersion(0, 8, 1, 1) : default); // Loads the IPlugin instance as HBRPlugin.
18+
static Seraphim() => Load<HBRPlugin>(!RuntimeFeature.IsDynamicCodeCompiled ? new Core.Management.GameVersion(0, 8, 2, 0) : default); // Loads the IPlugin instance as HBRPlugin.
1919

2020
[UnmanagedCallersOnly(EntryPoint = "TryGetApiExport", CallConvs = [typeof(CallConvCdecl)])]
2121
public static unsafe int TryGetApiExport(char* exportName, void** delegateP) =>

Hi3Helper.Plugin.HBR/Hi3Helper.Plugin.HBR.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828
</ItemGroup>
2929

3030
<ItemGroup>
31-
<PackageReference Include="System.IO.Hashing" Version="9.0.7" />
31+
<PackageReference Include="System.IO.Hashing" Version="9.0.8" />
32+
<PackageReference Include="Microsoft.NET.ILLink.Tasks" Version="9.0.8" />
3233
</ItemGroup>
3334

3435
<PropertyGroup Condition="'$(Configuration)'=='DebugNoReflection'">

Indexer/Properties/launchSettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"profiles": {
33
"Indexer": {
44
"commandName": "Project",
5-
"commandLineArgs": "H:\\myGit\\Hi3Helper.Plugin.HBR\\Hi3Helper.Plugin.HBR\\publish\\Release"
5+
"commandLineArgs": "E:\\myGit\\Hi3Helper.Plugin.HBR\\Hi3Helper.Plugin.HBR\\publish\\Release"
66
}
77
}
88
}

0 commit comments

Comments
 (0)