mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-02-21 00:39:53 +00:00
Merge branch 'dev' of https://github.com/misternebula/quantum-space-buddies into dev
This commit is contained in:
commit
ef3757d43e
@ -32,7 +32,7 @@
|
||||
<DebugType>portable</DebugType>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
||||
<DebugType>portable</DebugType>
|
||||
<DebugType>none</DebugType>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
@ -41,7 +41,6 @@ namespace MirrorWeaver
|
||||
var assembly = AssemblyDefinition.ReadAssembly(qsbDll, new ReaderParameters
|
||||
{
|
||||
ReadWrite = true,
|
||||
ReadSymbols = true,
|
||||
AssemblyResolver = resolver
|
||||
});
|
||||
|
||||
@ -52,7 +51,7 @@ namespace MirrorWeaver
|
||||
Environment.Exit(1);
|
||||
}
|
||||
|
||||
assembly.Write(new WriterParameters { WriteSymbols = true });
|
||||
assembly.Write();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -24,7 +24,6 @@ namespace ProxyInjector
|
||||
using var qsbModule = ModuleDefinition.ReadModule(qsbDll, new ReaderParameters
|
||||
{
|
||||
ReadWrite = true,
|
||||
ReadSymbols = true,
|
||||
AssemblyResolver = resolver
|
||||
});
|
||||
using var gameModule = ModuleDefinition.ReadModule(gameDll, new ReaderParameters { AssemblyResolver = resolver });
|
||||
@ -53,7 +52,7 @@ namespace ProxyInjector
|
||||
count++;
|
||||
}
|
||||
|
||||
qsbModule.Write(new WriterParameters { WriteSymbols = true });
|
||||
qsbModule.Write();
|
||||
|
||||
Console.WriteLine($"injected {count} proxy scripts in {sw.ElapsedMilliseconds} ms");
|
||||
}
|
||||
|
@ -36,7 +36,7 @@
|
||||
|
||||
<Exec Command="copy /y "$(OutputPath)\*.dll" "$(UnityDllsDir)"" />
|
||||
<Exec Command="copy /y "$(OutputPath)\*.exe" "$(UnityDllsDir)"" />
|
||||
<Exec Command="copy /y "$(OutputPath)\*.pdb" "$(UnityDllsDir)"" />
|
||||
<Exec Command="copy /y "$(OutputPath)\*.pdb" "$(UnityDllsDir)"" IgnoreExitCode="true" />
|
||||
|
||||
<Exec Command="copy /y "$(GameDllsDir)\Assembly-CSharp*.dll" "$(UnityDllsDir)"" />
|
||||
<Exec Command="copy /y "$(GameDllsDir)\Unity.InputSystem.dll" "$(UnityDllsDir)"" />
|
||||
|
Loading…
x
Reference in New Issue
Block a user