This commit is contained in:
jess 2026-04-23 07:20:00 -07:00
parent 7ca67f9094
commit 23afd4903c
2 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,7 @@ popd
rem --- 3. Stage ---
set "CSHARP_OUT=%ROOT%\shell\windows\LayersShell\bin\Release\net8.0-windows10.0.19041.0\%NET_RID%\publish"
xcopy /e /i /y /q "%CSHARP_OUT%" "%APPDIR%" >nul
copy /y "%ROOT%\target\%RUST_TARGET%\release\layers.dll" "%APPDIR%\layers.dll" >nul
copy /y "%ROOT%\target\%RUST_TARGET%\release\layers.dll" "%APPDIR%\layers_native.dll" >nul
if exist "%ROOT%\LICENCE" copy /y "%ROOT%\LICENCE" "%STAGE%\LICENCE" >nul
xcopy /e /i /y /q "%ROOT%\resources" "%STAGE%\resources" >nul

View File

@ -5,7 +5,7 @@ namespace LayersShell;
internal static class LayersNative
{
private const string Dll = "layers";
private const string Dll = "layers_native";
private static bool _startedUp;
public static void StartupIfNeeded()