If I hot reload after editing related to an interface in COM reference, CS7096 occurs and the hot reload fails.
// Start debugging this code.
var instance = temp as ComLib.ICom;
instance.Foo1();
// If I edit with this code and attempt to hot reload, CS7096 will occur and the hot reload will fail.
var instance = temp as ComLib.ICom;
instance.Foo2();
The only thing I found was "CS7096 - Cannot continue the edit inclusion a reference to an embedded type: 'ICom'."
Any solutions or related references?