fix pathing

This commit is contained in:
CWX 2024-08-09 21:55:31 +01:00
parent f3d095a0a7
commit 5f448a7aee
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@
</PropertyGroup> </PropertyGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent"> <Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy &quot;$(SolutionDir)Templates&quot; &quot;$(TargetDir)Data&quot; /E /I /Y" /> <Exec Command="xcopy &quot;$(SolutionDir)\Assets\Templates&quot; &quot;$(TargetDir)Data&quot; /E /I /Y" />
</Target> </Target>
<ItemGroup> <ItemGroup>

View File

@ -9,7 +9,7 @@ public static class Deobfuscator
{ {
public static void Deobfuscate(string assemblyPath) public static void Deobfuscate(string assemblyPath)
{ {
var executablePath = Path.Combine(DataProvider.DataPath, "Assets", "De4dot", "de4dot.exe"); var executablePath = Path.Combine(DataProvider.DataPath, "De4dot", "de4dot.exe");
string token; string token;