Skip to content

Commit 98c0d58

Browse files
vineethkuttanprotikbiswas100Copilot
authored
Fix AppPackage Generation (#885)
* Fixing AppPackage Generation * update package.appxmanifest * Update app launch command to use experimental version * Add CodeQL workflow for automated code analysis * Revert "Add CodeQL workflow for automated code analysis" This reverts commit c5ddc7f. Co-authored-by: vineethkuttan <66076509+vineethkuttan@users.noreply.github.com> * Fix Accessibility Grading Sev2 issues for 0.84 (#893) * Fixing sev2 Issues * update snapshot * Updating it to the latest preview * bug bash issues * Add ruby file Co-authored-by: vineethkuttan <66076509+vineethkuttan@users.noreply.github.com> --------- Co-authored-by: Protik Biswas <protikbiswas@microsoft.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
1 parent b0b70c8 commit 98c0d58

3 files changed

Lines changed: 27 additions & 3 deletions

File tree

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ steps:
7474
inputs:
7575
targetType: inline
7676
script: |
77-
Start-Process "shell:AppsFolder\Microsoft.ReactNativeGallery_8wekyb3d8bbwe!App"
77+
Start-Process "shell:AppsFolder\Microsoft.ReactNativeGallery-Experimental_8wekyb3d8bbwe!App"
7878
Start-Sleep -Seconds 10
7979
8080
$process = Get-Process -Name "rngallery" -ErrorAction SilentlyContinue

windows/rngallery.Package/Package.appxmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
IgnorableNamespaces="uap rescap">
88

99
<Identity
10-
Name="Microsoft.ReactNativeGallery"
10+
Name="Microsoft.ReactNativeGallery-Experimental"
1111
Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US"
1212
Version="2.1.3.0" />
1313

windows/rngallery.Package/rngallery.Package.wapproj

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,30 @@
1414
<Import Project="$(ReactNativeWindowsDir)\PropertySheets\External\Microsoft.ReactNative.WindowsSdk.Default.props" />
1515
<PropertyGroup>
1616
<WapProjPath Condition="'$(WapProjPath)'==''">$(MSBuildExtensionsPath)\Microsoft\DesktopBridge\</WapProjPath>
17+
<GenerateAppInstallerFile>False</GenerateAppInstallerFile>
18+
<AppxPackageSigningTimestampDigestAlgorithm>SHA256</AppxPackageSigningTimestampDigestAlgorithm>
19+
<AppxAutoIncrementPackageRevision>False</AppxAutoIncrementPackageRevision>
20+
<GenerateTestArtifacts>True</GenerateTestArtifacts>
21+
<AppxBundlePlatforms>x86|x64</AppxBundlePlatforms>
22+
<HoursBetweenUpdateChecks>0</HoursBetweenUpdateChecks>
23+
</PropertyGroup>
24+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
25+
<AppxBundle>Always</AppxBundle>
26+
</PropertyGroup>
27+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
28+
<AppxBundle>Always</AppxBundle>
29+
</PropertyGroup>
30+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
31+
<AppxBundle>Always</AppxBundle>
32+
</PropertyGroup>
33+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
34+
<AppxBundle>Always</AppxBundle>
35+
</PropertyGroup>
36+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
37+
<AppxBundle>Always</AppxBundle>
38+
</PropertyGroup>
39+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
40+
<AppxBundle>Always</AppxBundle>
1741
</PropertyGroup>
1842
<Import Project="$(WapProjPath)\Microsoft.DesktopBridge.props" />
1943
<ItemGroup Label="ProjectConfigurations">
@@ -78,4 +102,4 @@
78102
<Error Condition="!Exists('$(ReactNativeWindowsDir)\PropertySheets\External\Microsoft.ReactNative.Composition.Package.props')" Text="$([System.String]::Format('$(ErrorText)', '$(ReactNativeWindowsDir)\PropertySheets\External\Microsoft.ReactNative.Composition.Package.props'))" />
79103
<Error Condition="!Exists('$(ReactNativeWindowsDir)\PropertySheets\External\Microsoft.ReactNative.Composition.Package.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(ReactNativeWindowsDir)\PropertySheets\External\Microsoft.ReactNative.Composition.Package.targets'))" />
80104
</Target>
81-
</Project>
105+
</Project>

0 commit comments

Comments
 (0)