返回提交历史
Modified
SpaceEngineersBlueprintEditor/SpaceEngineersBlueprintEditor.csproj
+2
-25
SpaceEngineersModDev/SpaceEngineersBlueprintEditorInWinUI
fix-修复无法打包发布的bug
5367138
代码差异
1 个文件
+2
-25
@@ -6,21 +6,15 @@
6
6
<RootNamespace>SpaceEngineersBlueprintEditor</RootNamespace>
7
7
<ApplicationManifest>app.manifest</ApplicationManifest>
8
8
<Platforms>x86;x64;ARM64</Platforms>
9
<RuntimeIdentifiers Condition="$([MSBuild]::GetTargetFrameworkVersion('$(TargetFramework)')) >= 8">win-x86;win-x64;win-arm64</RuntimeIdentifiers>
10
<RuntimeIdentifiers Condition="$([MSBuild]::GetTargetFrameworkVersion('$(TargetFramework)')) < 8">win10-x86;win10-x64;win10-arm64</RuntimeIdentifiers>
11
<PublishProfile>win-$(Platform).pubxml</PublishProfile>
9
<RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers>
12
10
<UseWinUI>true</UseWinUI>
13
11
<EnableMsixTooling>true</EnableMsixTooling>
14
12
<Nullable>enable</Nullable>
15
13
<WindowsPackageType>None</WindowsPackageType>
16
14
<WindowsAppSDKSelfContained>true</WindowsAppSDKSelfContained>
17
<WindowsSdkPackageVersion>10.0.22621.38</WindowsSdkPackageVersion>
18
15
<ImplicitUsings>enable</ImplicitUsings>
19
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
16
<ApplicationIcon>Assets\Icons\EditorIcon.ico</ApplicationIcon>
20
17
</PropertyGroup>
21
<ItemGroup>
22
<Page Remove="Styles\Thickness.xaml" />
23
</ItemGroup>
24
18
<ItemGroup>
25
19
<Content Include="Styles\Thickness.xaml">
26
20
<Generator>MSBuild:Compile</Generator>
@@ -185,21 +179,4 @@
185
179
<Generator>MSBuild:Compile</Generator>
186
180
</Page>
187
181
</ItemGroup>
188
189
<!--
190
Defining the "HasPackageAndPublishMenuAddedByProject" property here allows the Solution
191
Explorer "Package and Publish" context menu entry to be enabled for this project even if
192
the Windows App SDK Nuget package has not yet been restored.
193
-->
194
<PropertyGroup Condition="'$(DisableHasPackageAndPublishMenuAddedByProject)'!='true' and '$(EnableMsixTooling)'=='true'">
195
<HasPackageAndPublishMenu>true</HasPackageAndPublishMenu>
196
</PropertyGroup>
197
198
<!-- Publish Properties -->
199
<PropertyGroup>
200
<PublishReadyToRun Condition="'$(Configuration)' == 'Debug'">False</PublishReadyToRun>
201
<PublishReadyToRun Condition="'$(Configuration)' != 'Debug'">True</PublishReadyToRun>
202
<PublishTrimmed Condition="'$(Configuration)' == 'Debug'">False</PublishTrimmed>
203
<PublishTrimmed Condition="'$(Configuration)' != 'Debug'">True</PublishTrimmed>
204
</PropertyGroup>
205
182
</Project>