|
6 | 6 | <RootNamespace>Simple_QR_Code_Maker</RootNamespace> |
7 | 7 | <ApplicationIcon>Assets/WindowIcon.ico</ApplicationIcon> |
8 | 8 | <ApplicationManifest>app.manifest</ApplicationManifest> |
9 | | - <Platforms>x86;x64;arm64</Platforms> |
10 | | - <RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers> |
11 | | - <PublishProfile>Properties\PublishProfiles\win-$(Platform).pubxml</PublishProfile> |
12 | | - <ImplicitUsings>enable</ImplicitUsings> |
13 | | - <Nullable>enable</Nullable> |
14 | | - <UseWinUI>true</UseWinUI> |
15 | | - <EnableMsixTooling>true</EnableMsixTooling> |
16 | | - <AppxPackageSigningEnabled>False</AppxPackageSigningEnabled> |
17 | | - <AppxPackageSigningTimestampDigestAlgorithm>SHA256</AppxPackageSigningTimestampDigestAlgorithm> |
18 | | - <AppxAutoIncrementPackageRevision>False</AppxAutoIncrementPackageRevision> |
19 | | - <AppxSymbolPackageEnabled>False</AppxSymbolPackageEnabled> |
20 | | - <GenerateTestArtifacts>True</GenerateTestArtifacts> |
21 | | - <WindowsAppSdkSelfContained>True</WindowsAppSdkSelfContained> |
22 | | - <AppxBundle>Always</AppxBundle> |
23 | | - <AppxBundlePlatforms>x86|x64|arm64</AppxBundlePlatforms> |
24 | | - |
25 | | - <AppxPackageDir>AppPackages\</AppxPackageDir> |
26 | | - <GenerateAppInstallerFile>False</GenerateAppInstallerFile> |
27 | | - <DefaultLanguage>en-US</DefaultLanguage> |
28 | | - <GenerateTemporaryStoreCertificate>True</GenerateTemporaryStoreCertificate> |
29 | | - <AllowUnsafeBlocks>True</AllowUnsafeBlocks> |
| 9 | + <ImplicitUsings>true</ImplicitUsings> |
| 10 | + <ApplicationManifest>app.manifest</ApplicationManifest> |
| 11 | + <Platforms>x64;ARM64</Platforms> |
| 12 | + <RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers> |
| 13 | + <PublishProfile>win-$(Platform).pubxml</PublishProfile> |
| 14 | + <UseWinUI>true</UseWinUI> |
| 15 | + <EnableMsixTooling>true</EnableMsixTooling> |
| 16 | + <Nullable>enable</Nullable> |
| 17 | + <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
30 | 18 | </PropertyGroup> |
31 | 19 | <ItemGroup> |
32 | 20 | <None Remove="Controls\FaqsContent.xaml" /> |
|
85 | 73 | </Page> |
86 | 74 | </ItemGroup> |
87 | 75 |
|
88 | | - <ItemGroup Condition="'$(DisableMsixProjectCapabilityAddedByProject)'!='true' and '$(EnableMsixTooling)'=='true'"> |
89 | | - <ProjectCapability Include="Msix" /> |
90 | | - </ItemGroup> |
91 | | - |
92 | | - <PropertyGroup Condition="'$(DisableHasPackageAndPublishMenuAddedByProject)'!='true' and '$(EnableMsixTooling)'=='true'"> |
93 | | - <HasPackageAndPublishMenu>true</HasPackageAndPublishMenu> |
94 | | - </PropertyGroup> |
| 76 | + <PropertyGroup Condition="'$(DisableHasPackageAndPublishMenuAddedByProject)'!='true' and '$(EnableMsixTooling)'=='true'"> |
| 77 | + <HasPackageAndPublishMenu>true</HasPackageAndPublishMenu> |
| 78 | + </PropertyGroup> |
95 | 79 |
|
96 | | - <Target Name="_RemoveFrameworkReferences" BeforeTargets="_ConvertItems;_CalculateInputsForGenerateCurrentProjectAppxManifest"> |
97 | | - <ItemGroup> |
98 | | - <FrameworkSdkReference Remove="@(FrameworkSdkReference)" Condition="$([System.String]::Copy('%(FrameworkSdkReference.SDKName)').StartsWith('Microsoft.WindowsAppRuntime.'))" /> |
99 | | - </ItemGroup> |
100 | | - </Target> |
| 80 | + <!-- Publish Properties --> |
| 81 | + <PropertyGroup> |
| 82 | + <PublishReadyToRun Condition="'$(Configuration)' == 'Debug'">False</PublishReadyToRun> |
| 83 | + <PublishReadyToRun Condition="'$(Configuration)' != 'Debug'">True</PublishReadyToRun> |
| 84 | + <PublishTrimmed Condition="'$(Configuration)' == 'Debug'">False</PublishTrimmed> |
| 85 | + <PublishTrimmed Condition="'$(Configuration)' != 'Debug'">True</PublishTrimmed> |
| 86 | + <GenerateAppInstallerFile>False</GenerateAppInstallerFile> |
| 87 | + <AppxPackageSigningEnabled>False</AppxPackageSigningEnabled> |
| 88 | + <AppxPackageSigningTimestampDigestAlgorithm>SHA256</AppxPackageSigningTimestampDigestAlgorithm> |
| 89 | + <AppxAutoIncrementPackageRevision>False</AppxAutoIncrementPackageRevision> |
| 90 | + <GenerateTestArtifacts>False</GenerateTestArtifacts> |
| 91 | + <AppxBundle>Always</AppxBundle> |
| 92 | + <HoursBetweenUpdateChecks>0</HoursBetweenUpdateChecks> |
| 93 | + <AppxBundlePlatforms>x64|arm64</AppxBundlePlatforms> |
| 94 | + <PackageCertificateThumbprint /> |
| 95 | + </PropertyGroup> |
101 | 96 |
|
102 | 97 | <ItemGroup> |
103 | 98 | <CustomAdditionalCompileInputs Remove="Views\ShellPage.xaml" /> |
|
0 commit comments