mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-15 05:04:15 +01:00
Fix net5 process start for base and temp path.
This commit is contained in:
parent
1b576469f3
commit
ac19a599ed
1 changed files with 8 additions and 2 deletions
|
|
@ -79,7 +79,10 @@ namespace Penumbra.UI
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Process.Start( _base._modManager.TempPath.FullName );
|
Process.Start( new ProcessStartInfo( _base._modManager.TempPath.FullName )
|
||||||
|
{
|
||||||
|
UseShellExecute = true,
|
||||||
|
} );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -102,7 +105,10 @@ namespace Penumbra.UI
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Process.Start( _config.ModDirectory );
|
Process.Start( new ProcessStartInfo( _config.ModDirectory )
|
||||||
|
{
|
||||||
|
UseShellExecute = true,
|
||||||
|
} );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue