|
13 | 13 | <TargetFrameworks>net9.0-android;net9.0-ios;net9.0-maccatalyst</TargetFrameworks> |
14 | 14 | </PropertyGroup> |
15 | 15 |
|
16 | | - <PropertyGroup Condition="'$(TargetFramework)' == 'net9.0-maccatalyst'"> |
17 | | - <RuntimeIdentifiers>maccatalyst-x64;maccatalyst-arm64</RuntimeIdentifiers> |
18 | | - </PropertyGroup> |
19 | | - |
20 | 16 | <PropertyGroup> |
21 | 17 | <OutputType>Exe</OutputType> |
22 | 18 | <RootNamespace>TransactionMobile.Maui</RootNamespace> |
23 | | - <UseMaui>true</UseMaui> |
| 19 | + <!--<UseMaui>true</UseMaui>--> |
24 | 20 | <SingleProject>true</SingleProject> |
25 | 21 | <ImplicitUsings>enable</ImplicitUsings> |
26 | 22 | <PublishReadyToRun>false</PublishReadyToRun> |
|
39 | 35 | <TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion> |
40 | 36 | <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion> |
41 | 37 | <PackageCertificateThumbprint>376AD93CB29454751B808E6883ED14E377D979F2</PackageCertificateThumbprint> |
42 | | - <AppxPackageSigningEnabled>True</AppxPackageSigningEnabled> |
| 38 | + <AppxPackageSigningEnabled>False</AppxPackageSigningEnabled> |
| 39 | + <GenerateAppInstallerFile>True</GenerateAppInstallerFile> |
| 40 | + <AppxPackageSigningTimestampDigestAlgorithm>SHA256</AppxPackageSigningTimestampDigestAlgorithm> |
| 41 | + <AppxAutoIncrementPackageRevision>True</AppxAutoIncrementPackageRevision> |
| 42 | + <AppxSymbolPackageEnabled>False</AppxSymbolPackageEnabled> |
| 43 | + <GenerateTestArtifacts>True</GenerateTestArtifacts> |
| 44 | + <AppInstallerUri>c:\temp</AppInstallerUri> |
| 45 | + <HoursBetweenUpdateChecks>0</HoursBetweenUpdateChecks> |
43 | 46 | </PropertyGroup> |
44 | 47 |
|
45 | 48 | <ItemGroup> |
|
262 | 265 | </ItemGroup> |
263 | 266 |
|
264 | 267 | <PropertyGroup Condition="$(TargetFramework.Contains('-maccatalyst'))"> |
265 | | - <RuntimeIdentifiers>maccatalyst-x64</RuntimeIdentifiers> |
| 268 | + <RuntimeIdentifiers>maccatalyst-x64;maccatalyst-arm64</RuntimeIdentifiers> |
266 | 269 | </PropertyGroup> |
267 | 270 |
|
| 271 | + <PropertyGroup Condition="$(TargetFramework.Contains('-windows'))"> |
| 272 | + <RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers> |
| 273 | + </PropertyGroup> |
| 274 | + |
268 | 275 | <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net9.0-android|AnyCPU'"> |
269 | 276 | <AndroidPackageFormat>apk</AndroidPackageFormat> |
270 | 277 | </PropertyGroup> |
|
294 | 301 | <Optimize>False</Optimize> |
295 | 302 | </PropertyGroup> |
296 | 303 |
|
297 | | - <ItemGroup> |
298 | | - <Content Remove="**\WindowRootViewStyle.xbf" /> |
299 | | - <None Remove="**\WindowRootViewStyle.xbf" /> |
300 | | - </ItemGroup> |
| 304 | + <Target Name="RemoveWindowRootViewStyleXbf" BeforeTargets="GenerateProjectPriFile"> |
| 305 | + <ItemGroup> |
| 306 | + <PRIResource Remove="@(PRIResource)" Condition="'%(PRIResource.Identity)' == 'Files/Microsoft.Maui/Platform/Windows/Styles/WindowRootViewStyle.xbf'" /> |
| 307 | + </ItemGroup> |
| 308 | + </Target> |
301 | 309 |
|
302 | 310 | </Project> |
0 commit comments