From 5cbe372f0a512babc5db7f519fc407eb40606346 Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Tue, 30 Mar 2021 19:04:12 -0500 Subject: Rename cache types in the manifest to remove, keep, force. Contributes to #5125 --- src/engine/engine.vcxproj | 4 ++-- src/engine/package.cpp | 6 +++--- src/engine/packages.config | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) (limited to 'src/engine') diff --git a/src/engine/engine.vcxproj b/src/engine/engine.vcxproj index 263edf12..e418e6f4 100644 --- a/src/engine/engine.vcxproj +++ b/src/engine/engine.vcxproj @@ -1,7 +1,7 @@ - + Debug @@ -165,7 +165,7 @@ rc.exe -fo "$(OutDir)engine.res" "$(IntDir)engine.messages.rc" This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - + \ No newline at end of file diff --git a/src/engine/package.cpp b/src/engine/package.cpp index 124b356b..6ff59fe4 100644 --- a/src/engine/package.cpp +++ b/src/engine/package.cpp @@ -116,15 +116,15 @@ extern "C" HRESULT PackagesParseFromXml( hr = XmlGetAttributeEx(pixnNode, L"Cache", &scz); if (SUCCEEDED(hr)) { - if (CSTR_EQUAL == ::CompareStringW(LOCALE_INVARIANT, 0, scz, -1, L"no", -1)) + if (CSTR_EQUAL == ::CompareStringW(LOCALE_INVARIANT, 0, scz, -1, L"remove", -1)) { pPackage->cacheType = BURN_CACHE_TYPE_NO; } - else if (CSTR_EQUAL == ::CompareStringW(LOCALE_INVARIANT, 0, scz, -1, L"yes", -1)) + else if (CSTR_EQUAL == ::CompareStringW(LOCALE_INVARIANT, 0, scz, -1, L"keep", -1)) { pPackage->cacheType = BURN_CACHE_TYPE_YES; } - else if (CSTR_EQUAL == ::CompareStringW(LOCALE_INVARIANT, 0, scz, -1, L"always", -1)) + else if (CSTR_EQUAL == ::CompareStringW(LOCALE_INVARIANT, 0, scz, -1, L"force", -1)) { pPackage->cacheType = BURN_CACHE_TYPE_ALWAYS; } diff --git a/src/engine/packages.config b/src/engine/packages.config index 56c62f29..84e3078b 100644 --- a/src/engine/packages.config +++ b/src/engine/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file -- cgit v1.2.3-55-g6feb