fix(windows): fix random Windows build failure (#1235)

This commit is contained in:
Tommy Nguyen 2022-11-30 14:06:37 +01:00 коммит произвёл GitHub
Родитель 72cdacf034
Коммит 4d94242cd1
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 15 добавлений и 0 удалений

Просмотреть файл

@ -713,6 +713,21 @@ function generateSolution(destPath, { autolink, useHermes, useNuGet }) {
});
}
// TODO: Remove when we drop support for 0.69.
// Patch building with Visual Studio 2022. For more details, see
// https://github.com/microsoft/react-native-windows/pull/10373
if (rnWindowsVersionNumber < 7000) {
const helpers = path.join(
rnWindowsPath,
"Microsoft.ReactNative",
"Utils",
"Helpers.h"
);
copyAndReplace(helpers, helpers, {
"inline typename T asEnum": "inline T asEnum",
});
}
if (useNuGet) {
const nugetConfigPath =
findNearest(