XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

XFEToolBox

【WPF】XFE工具箱

公开
关注 0 Fork 0 Star 0
返回提交历史

XFEstudio/XFEToolBox

新增自研 XFE 太空工程师插件加载与管理工具

278662a
XFE工作室室长 <mail@xfegzs.com>
提交于

代码差异

29 个文件 +2824 -0
Added tests/SpaceEngineersPluginManager.Validation/.gitignore +1 -0
Added tests/SpaceEngineersPluginManager.Validation/Fixtures/FakeFileSystem.cs +8 -0
Added tests/SpaceEngineersPluginManager.Validation/Fixtures/FakeGame.cs +54 -0
Added tests/SpaceEngineersPluginManager.Validation/Fixtures/FakePluginContract.cs +42 -0
Added tests/SpaceEngineersPluginManager.Validation/Fixtures/FixturePlugin.cs +58 -0
Added tests/SpaceEngineersPluginManager.Validation/Fixtures/PluginDependency.cs +7 -0
Added tests/SpaceEngineersPluginManager.Validation/LoaderFixtureTests.cs +125 -0
Added tests/SpaceEngineersPluginManager.Validation/ProfileTests.cs +59 -0
Added tests/SpaceEngineersPluginManager.Validation/Program.cs +136 -0
Added tests/SpaceEngineersPluginManager.Validation/README.md +19 -0
Added tests/SpaceEngineersPluginManager.Validation/RuntimeTests.cs +127 -0
Added tests/SpaceEngineersPluginManager.Validation/ServiceTests.cs +104 -0
Added tests/SpaceEngineersPluginManager.Validation/SpaceEngineersPluginManager.Validation.csproj +22 -0
Added tests/SpaceEngineersPluginManager.Validation/ViewModelUiTests.cs +48 -0
Added tests/SpaceEngineersPluginManager.Validation/ViewTests.cs +74 -0
Added tools/SpaceEngineersPluginManager/Assets/icon.png +0 -0
二进制文件已变更,无法进行逐行预览。
Added tools/SpaceEngineersPluginManager/Code/Models/ManagerModels.cs +38 -0
Added tools/SpaceEngineersPluginManager/Code/Services/GameDiscovery.cs +54 -0
Added tools/SpaceEngineersPluginManager/Code/Services/GameRuntime.cs +136 -0
Added tools/SpaceEngineersPluginManager/Code/Services/ManagerService.cs +209 -0
Added tools/SpaceEngineersPluginManager/Code/Services/PluginFiles.cs +98 -0
Added tools/SpaceEngineersPluginManager/Code/Services/PluginProfileStore.cs +132 -0
Added tools/SpaceEngineersPluginManager/Code/Services/XfeLoaderBuilder.cs +150 -0
Added tools/SpaceEngineersPluginManager/Code/Services/XfeLoaderSources.cs +333 -0
Added tools/SpaceEngineersPluginManager/Code/ViewModels/MainPageViewModel.cs +478 -0
Added tools/SpaceEngineersPluginManager/Code/Views/MainPage.xaml +187 -0
Added tools/SpaceEngineersPluginManager/Code/Views/MainPage.xaml.cs +44 -0
Added tools/SpaceEngineersPluginManager/README.md +47 -0
Added tools/SpaceEngineersPluginManager/manifest.json +34 -0