XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet
公开
关注 0 Fork 0 Star 0
返回提交历史

SpaceEngineersModDev/SpaceEngineersBlueprintEditorInWinUI

增加配置文件注释 路径增加全部游戏集文件位置

80184ed
XFE工作室室长 <mail@xfegzs.com>
提交于

代码差异

2 个文件 +35 -0
Modified SpaceEngineersBlueprintEditor/SpaceEngineersBlueprintEditor.csproj +1 -0
@@ -26,6 +26,7 @@
26 26 </Content>
27 27 </ItemGroup>
28 28
29 <!--Enable when need to publish sigle file-->
29 30 <ItemGroup>
30 31 <None Include="Assets\**\*">
31 32 <CopyToOutputDirectory>Always</CopyToOutputDirectory>
Modified SpaceEngineersBlueprintEditor/Utilities/SpaceEngineersPath.cs +34 -0
@@ -16,4 +16,38 @@ public partial class SpaceEngineersPath
16 16 private static readonly string workshopBlueprints = $@"{BlueprintsRoot}\workshop\temp\Steam";
17 17 public static string SpaceEngineerContentPath => $@"{SystemProfile.GameRootPath}\Content";
18 18 public static string SpaceEngineerBinPath => $@"{SystemProfile.GameRootPath}\Bin64";
19 public static string[] SpaceEngineerDynamicLibrary =>
20 [
21 $@"{SpaceEngineerBinPath}\EmptyKeys.UserInterface.Core.dll",
22 $@"{SpaceEngineerBinPath}\EmptyKeys.UserInterface.dll",
23 $@"{SpaceEngineerBinPath}\HavokWrapper.dll",
24 $@"{SpaceEngineerBinPath}\ProtoBuf.Net.Core.dll",
25 $@"{SpaceEngineerBinPath}\ProtoBuf.Net.dll",
26 $@"{SpaceEngineerBinPath}\Sandbox.Common.dll",
27 $@"{SpaceEngineerBinPath}\Sandbox.Game.dll",
28 $@"{SpaceEngineerBinPath}\Sandbox.Game.XmlSerializers.dll",
29 $@"{SpaceEngineerBinPath}\Sandbox.Graphics.dll",
30 $@"{SpaceEngineerBinPath}\Sandbox.RenderDirect.dll",
31 $@"{SpaceEngineerBinPath}\SpaceEngineers.Game.dll",
32 $@"{SpaceEngineerBinPath}\SpaceEngineers.ObjectBuilders.dll",
33 $@"{SpaceEngineerBinPath}\steam_api64.dll",
34 $@"{SpaceEngineerBinPath}\VRage.dll",
35 $@"{SpaceEngineerBinPath}\VRage.Ansel.dll",
36 $@"{SpaceEngineerBinPath}\VRage.Audio.dll",
37 $@"{SpaceEngineerBinPath}\VRage.Game.dll",
38 $@"{SpaceEngineerBinPath}\VRage.Game.XmlSerializers.dll",
39 $@"{SpaceEngineerBinPath}\VRage.Input.dll",
40 $@"{SpaceEngineerBinPath}\VRage.Library.dll",
41 $@"{SpaceEngineerBinPath}\VRage.Math.dll",
42 $@"{SpaceEngineerBinPath}\VRage.Math.XmlSerializers.dll",
43 $@"{SpaceEngineerBinPath}\VRage.Native.dll",
44 $@"{SpaceEngineerBinPath}\VRage.NativeWrapper.dll",
45 $@"{SpaceEngineerBinPath}\VRage.Network.dll",
46 $@"{SpaceEngineerBinPath}\VRage.Render.dll",
47 $@"{SpaceEngineerBinPath}\VRage.Render11.dll",
48 $@"{SpaceEngineerBinPath}\VRage.Scripting.dll",
49 $@"{SpaceEngineerBinPath}\VRage.Steam.dll",
50 $@"{SpaceEngineerBinPath}\VRage.UserInterface.dll",
51 $@"{SpaceEngineerBinPath}\VRage.XmlSerializers.dll"
52 ];
19 53 }