fix(injector): support relative path when injecting
2 files changed, 3 insertions(+), 1 deletions(-) M src/Inject/NosSmooth.Injector/NosInjector.cs M src/Inject/NosSmooth.Injector/NosSmooth.Injector.csproj
M src/Inject/NosSmooth.Injector/NosInjector.cs => src/Inject/NosSmooth.Injector/NosInjector.cs +1 -0
@@ 81,6 81,7 @@ public class NosInjector { try { dllPath = Path.GetFullPath(dllPath); if (!File.Exists(dllPath)) { return new NotFoundError($"Could not find the managed dll file at \"{dllPath}\".");
M src/Inject/NosSmooth.Injector/NosSmooth.Injector.csproj => src/Inject/NosSmooth.Injector/NosSmooth.Injector.csproj +2 -1
@@ 4,7 4,8 @@ <TargetFramework>net7.0</TargetFramework> <ImplicitUsings>enable</ImplicitUsings> <Nullable>enable</Nullable> <VersionPrefix>1.0.0</VersionPrefix> <VersionPrefix>1.0.1</VersionPrefix> <PackageReleaseNotes>Support relative path when injecting.</PackageReleaseNotes> </PropertyGroup> <ItemGroup>