Compare commits

..

1 Commits

Author SHA1 Message Date
Gordon Lam (SH)
c2f916f72b chore(claude): add symlinks for Claude Code support to GitHub configs 2026-01-29 15:29:32 -08:00
8 changed files with 11 additions and 8 deletions

1
.claude/CLAUDE.md Symbolic link
View File

@@ -0,0 +1 @@
../.github/copilot-instructions.md

1
.claude/agents Symbolic link
View File

@@ -0,0 +1 @@
../.github/agents

1
.claude/commands Symbolic link
View File

@@ -0,0 +1 @@
../.github/prompts

1
.claude/rules Symbolic link
View File

@@ -0,0 +1 @@
../.github/instructions

1
.claude/skills Symbolic link
View File

@@ -0,0 +1 @@
../.github/skills

5
.gitattributes vendored
View File

@@ -3,6 +3,11 @@
###############################################################################
* text=auto
###############################################################################
# Symlinks for Claude Code support - these point to .github/ Copilot configs
###############################################################################
.claude/** symlink
*.cs text eol=crlf
###############################################################################

View File

@@ -610,13 +610,6 @@ UINT __stdcall InstallPackageIdentityMSIXCA(MSIHANDLE hInstall)
hr = WcaInitialize(hInstall, "InstallPackageIdentityMSIXCA");
ExitOnFailure(hr, "Failed to initialize");
// Double-check: Only install on Windows 11 or greater
if (!package::IsWin11OrGreater())
{
Logger::info(L"Skipping PackageIdentity MSIX installation - not Windows 11 or greater");
goto LExit;
}
hr = WcaGetProperty(L"CustomActionData", &customActionData);
ExitOnFailure(hr, "Failed to get CustomActionData property");

View File

@@ -124,7 +124,7 @@
<Custom Action="SetBundleInstallLocation" After="InstallFiles" Condition="NOT Installed OR WIX_UPGRADE_DETECTED" />
<Custom Action="ApplyModulesRegistryChangeSets" After="InstallFiles" Condition="NOT Installed" />
<Custom Action="InstallCmdPalPackage" After="InstallFiles" Condition="NOT Installed" />
<Custom Action="InstallPackageIdentityMSIX" After="InstallFiles" Condition="(NOT Installed) AND (WINDOWSBUILDNUMBER &gt;= 22000)" />
<Custom Action="InstallPackageIdentityMSIX" After="InstallFiles" Condition="NOT Installed AND WINDOWSBUILDNUMBER &gt;= 22000" />
<Custom Action="override Wix4CloseApplications_$(sys.BUILDARCHSHORT)" Before="RemoveFiles" />
<Custom Action="RemovePowerToysSchTasks" After="RemoveFiles" />
<!-- TODO: Use to activate embedded MSIX -->