|
1 | | -<Project Sdk="Microsoft.NET.Sdk"> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 | <PropertyGroup> |
3 | 3 | <OutputType>WinExe</OutputType> |
4 | 4 | <TargetFramework>net7.0-windows10.0.19041.0</TargetFramework> |
|
9 | 9 | <Platforms>x86;x64;arm64</Platforms> |
10 | 10 | <RuntimeIdentifiers>win10-x86;win10-x64;win10-arm64</RuntimeIdentifiers> |
11 | 11 | <PublishProfile>Properties\PublishProfiles\win10-$(Platform).pubxml</PublishProfile> |
12 | | - <ImplicitUsings>enable</ImplicitUsings> |
13 | | - <Nullable>enable</Nullable> |
14 | | - <UseWinUI>true</UseWinUI> |
| 12 | + <ImplicitUsings>enable</ImplicitUsings> |
| 13 | + <Nullable>enable</Nullable> |
| 14 | + <UseWinUI>true</UseWinUI> |
| 15 | + <GenerateAppInstallerFile>True</GenerateAppInstallerFile> |
| 16 | + <AppxAutoIncrementPackageRevision>False</AppxAutoIncrementPackageRevision> |
| 17 | + <AppxSymbolPackageEnabled>False</AppxSymbolPackageEnabled> |
| 18 | + <GenerateTestArtifacts>True</GenerateTestArtifacts> |
15 | 19 | <EnableMsixTooling>true</EnableMsixTooling> |
16 | 20 | <DefaultLanguage>ja-JP</DefaultLanguage> |
17 | 21 | <PackageCertificateThumbprint>55C2EC7BEC9FC97A601C6229C333D4EF89E30819</PackageCertificateThumbprint> |
18 | 22 | <AppxPackageSigningEnabled>True</AppxPackageSigningEnabled> |
| 23 | + <PlatformTarget>x64</PlatformTarget> |
19 | 24 | </PropertyGroup> |
20 | 25 | <ItemGroup> |
21 | 26 | <Content Remove="Assets\Icon\icon.pdf" /> |
|
130 | 135 | <PropertyGroup Condition="'$(DisableHasPackageAndPublishMenuAddedByProject)'!='true' and '$(EnableMsixTooling)'=='true'"> |
131 | 136 | <HasPackageAndPublishMenu>true</HasPackageAndPublishMenu> |
132 | 137 | </PropertyGroup> |
| 138 | + |
| 139 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'"> |
| 140 | + <DebugType>portable</DebugType> |
| 141 | + </PropertyGroup> |
| 142 | + |
| 143 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> |
| 144 | + <DebugType>portable</DebugType> |
| 145 | + </PropertyGroup> |
| 146 | + |
| 147 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|arm64'"> |
| 148 | + <DebugType>portable</DebugType> |
| 149 | + </PropertyGroup> |
| 150 | + |
| 151 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'"> |
| 152 | + <DebugType>portable</DebugType> |
| 153 | + </PropertyGroup> |
| 154 | + |
| 155 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> |
| 156 | + <DebugType>portable</DebugType> |
| 157 | + </PropertyGroup> |
| 158 | + |
| 159 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|arm64'"> |
| 160 | + <DebugType>portable</DebugType> |
| 161 | + </PropertyGroup> |
133 | 162 | </Project> |
0 commit comments