Closed JohnMcPMS closed 1 year ago
The use of CoCreateInstance here: https://github.com/microsoft/xlang/blob/be9c9c45774f945efde6c2efeaa1edcecfa175ea/src/UndockedRegFreeWinRT/UndockedRegFreeWinRT/catalog.cpp#L379
CoCreateInstance
requires that the Windows feature on demand NetFX3 be present to function. Creation of a CLSID_CorMetaDataDispenser can be achieved in the same manner as the OS using MetaDataGetDispenser. This is part of the WinRT core, and so is always present.
NetFX3
CLSID_CorMetaDataDispenser
The use of
CoCreateInstance
here: https://github.com/microsoft/xlang/blob/be9c9c45774f945efde6c2efeaa1edcecfa175ea/src/UndockedRegFreeWinRT/UndockedRegFreeWinRT/catalog.cpp#L379requires that the Windows feature on demand
NetFX3
be present to function. Creation of aCLSID_CorMetaDataDispenser
can be achieved in the same manner as the OS using MetaDataGetDispenser. This is part of the WinRT core, and so is always present.