Skip to content

Commit

Permalink
prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
mcb5637 committed Jul 11, 2023
1 parent df81999 commit 474946e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
4 changes: 3 additions & 1 deletion LuaDebugger/LuaDebugger.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,9 @@ xcopy /y /i "$(TargetDir)EasyHook.dll" "$(SolutionDir)LuaDebuggerStarter\Unpack\
xcopy /y /i "$(TargetDir)EasyHook32.dll" "$(SolutionDir)dbgenv\"
xcopy /y /i "$(TargetDir)EasyHook32.dll" "$(SolutionDir)LuaDebuggerStarter\Unpack\"
xcopy /y /i "$(TargetDir)ICSharpCode.TextEditor.dll" "$(SolutionDir)dbgenv\"
xcopy /y /i "$(TargetDir)ICSharpCode.TextEditor.dll" "$(SolutionDir)LuaDebuggerStarter\Unpack\"</PostBuildEvent>
xcopy /y /i "$(TargetDir)ICSharpCode.TextEditor.dll" "$(SolutionDir)LuaDebuggerStarter\Unpack\"
xcopy /y /i "$(TargetDir)bbaToolS5.exe" "$(SolutionDir)dbgenv\"
xcopy /y /i "$(TargetDir)bbaToolS5.exe" "$(SolutionDir)LuaDebuggerStarter\Unpack\"</PostBuildEvent>
</PropertyGroup>
<PropertyGroup>
<DllExportIdent>8FF0D3BF-79BA-479A-AF5E-1C0E3C5605C6</DllExportIdent>
Expand Down
3 changes: 3 additions & 0 deletions LuaDebuggerStarter/LdbgStarter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,9 @@ public void UnpackEnvironment()

using (FileStream fs = new FileStream(tmpPath + "EasyHook32.dll", FileMode.Create))
localAssembly.GetManifestResourceStream(res + "EasyHook32.dll").CopyTo(fs);

using (FileStream fs = new FileStream(tmpPath + "bbaToolS5.exe", FileMode.Create))
localAssembly.GetManifestResourceStream(res + "bbaToolS5.exe").CopyTo(fs);
}
catch
{
Expand Down
1 change: 1 addition & 0 deletions LuaDebuggerStarter/LuaDebuggerStarter.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@
</ItemGroup>
<ItemGroup>
<Content Include="bug.ico" />
<EmbeddedResource Include="Unpack\bbaToolS5.exe" />
<EmbeddedResource Include="Unpack\ICSharpCode.TextEditor.dll" />
<EmbeddedResource Include="Unpack\EasyHook.dll" />
<EmbeddedResource Include="Unpack\EasyHook32.dll" />
Expand Down

0 comments on commit 474946e

Please sign in to comment.