From f0ee132cc111a6a103835f51aea122fc02dbb765 Mon Sep 17 00:00:00 2001
From: vineethkuttan <66076509+vineethkuttan@users.noreply.github.com>
Date: Tue, 7 Apr 2026 14:42:51 +0530
Subject: [PATCH 1/4] Fixing AppPackage Generation
---
.../rngallery.Package.wapproj | 26 ++++++++++++++++++-
1 file changed, 25 insertions(+), 1 deletion(-)
diff --git a/windows/rngallery.Package/rngallery.Package.wapproj b/windows/rngallery.Package/rngallery.Package.wapproj
index 24be71b1..14992449 100644
--- a/windows/rngallery.Package/rngallery.Package.wapproj
+++ b/windows/rngallery.Package/rngallery.Package.wapproj
@@ -14,6 +14,30 @@
$(MSBuildExtensionsPath)\Microsoft\DesktopBridge\
+ False
+ SHA256
+ False
+ True
+ x86|x64
+ 0
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
@@ -78,4 +102,4 @@
-
+
\ No newline at end of file
From dd3a304567a1e5b065c044bda5b33f7f64c7d6ba Mon Sep 17 00:00:00 2001
From: Protik Biswas
Date: Tue, 7 Apr 2026 16:08:29 +0530
Subject: [PATCH 2/4] update package.appxmanifest
---
windows/rngallery.Package/Package.appxmanifest | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/windows/rngallery.Package/Package.appxmanifest b/windows/rngallery.Package/Package.appxmanifest
index 02f80d88..754a7a57 100644
--- a/windows/rngallery.Package/Package.appxmanifest
+++ b/windows/rngallery.Package/Package.appxmanifest
@@ -7,7 +7,7 @@
IgnorableNamespaces="uap rescap">
From 1f6f6834674ba30381b6b930a774c674c2205e14 Mon Sep 17 00:00:00 2001
From: vineethkuttan <66076509+vineethkuttan@users.noreply.github.com>
Date: Wed, 8 Apr 2026 09:54:41 +0530
Subject: [PATCH 3/4] Update app launch command to use experimental version
---
azure-pipelines.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 76eb95e1..b06114c4 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -74,7 +74,7 @@ steps:
inputs:
targetType: inline
script: |
- Start-Process "shell:AppsFolder\Microsoft.ReactNativeGallery_8wekyb3d8bbwe!App"
+ Start-Process "shell:AppsFolder\Microsoft.ReactNativeGallery-Experimental_8wekyb3d8bbwe!App"
Start-Sleep -Seconds 10
$process = Get-Process -Name "rngallery" -ErrorAction SilentlyContinue
From c5ddc7feaad8fde9f252dfbdc41351f4a8d4d8b2 Mon Sep 17 00:00:00 2001
From: vineethkuttan <66076509+vineethkuttan@users.noreply.github.com>
Date: Wed, 8 Apr 2026 10:01:16 +0530
Subject: [PATCH 4/4] Add CodeQL workflow for automated code analysis
---
.github/workflows/codeql.yml | 43 ++++++++++++++++++++++++++++++++++++
1 file changed, 43 insertions(+)
create mode 100644 .github/workflows/codeql.yml
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml
new file mode 100644
index 00000000..7fde8e46
--- /dev/null
+++ b/.github/workflows/codeql.yml
@@ -0,0 +1,43 @@
+name: 'CodeQL'
+
+on:
+ push:
+ branches: [main]
+ pull_request:
+ branches: [main]
+ schedule:
+ - cron: '0 0 * * 1'
+
+jobs:
+ analyze:
+ name: Analyze (${{ matrix.language }})
+ runs-on: ${{ matrix.language == 'c-cpp' && 'windows-latest' || 'ubuntu-latest' }}
+ permissions:
+ security-events: write
+ packages: read
+ actions: read
+ contents: read
+
+ strategy:
+ fail-fast: false
+ matrix:
+ language:
+ - javascript-typescript
+ - c-cpp
+
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v4
+
+ - name: Initialize CodeQL
+ uses: github/codeql-action/init@v3
+ with:
+ languages: ${{ matrix.language }}
+
+ - name: Autobuild
+ uses: github/codeql-action/autobuild@v3
+
+ - name: Perform CodeQL Analysis
+ uses: github/codeql-action/analyze@v3
+ with:
+ category: '/language:${{ matrix.language }}'