Skip to content

Commit

Permalink
fix(windows): always enable NuGet when building New Arch (#2269)
Browse files Browse the repository at this point in the history
  • Loading branch information
tido64 authored Oct 2, 2024
1 parent c470e5d commit 3bb405e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion windows/project.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ export function projectInfo(
(newArch || (useHermes ?? versionNumber >= v(0, 73, 0))) &&
getHermesVersion(rnWindowsPath, fs),
nugetDependencies: getNuGetDependencies(rnWindowsPath),
useExperimentalNuGet: !newArch && useNuGet,
useExperimentalNuGet: newArch || useNuGet,
useFabric: newArch,
usePackageReferences: versionNumber === 0 || versionNumber >= v(0, 68, 0),
xamlVersion:
Expand Down

0 comments on commit 3bb405e

Please sign in to comment.