I recently installed Visual Studio 2017, just shortly after it was released (March 2017).
When I go to debug my smart device project in VS 2008 I get a error message dialog that just says "The operation could not be completed". , .
Here is a list of what I've observed:
What I've tried:
From Developer Community: The cause is an error in the registration of the type library for this component.
To fix this issue, you can either:
Open a command prompt with administrator privileges and execute the following command:
reg add HKEY_CLASSES_ROOT\TypeLib{6A1A7D39-8449-4287-8EF0-CE256582C940}\8.0\0\win32 /t REG_SZ /d "C:\Program Files (x86)\Common Files\Microsoft Shared\VS7Debug\coloader80.tlb"
Alternatively you can execute:
regsvr32 "C:\Program Files (x86)\Common Files\Microsoft Shared\VS7Debug\coloader80.dll"
The correct registration will be included in future versions of Visual Studio.