Reputation: 1003
I've got a program which i made on one machine in which i used C# 9 to make it in and i now want to run it on my other machine which uses C# 2010. I opened the program in C# 2010 and use the embedded converter but it comes up with a problem. After conversion i can't debug the program as it comes up with the error 'Source file 'C:\Users\Chris\Documents\FlashCards\Properties\AssemblyInfo.cs' could not be opened ('Unspecified error ') FlashCards' What do i need to do to make it work?
Thanks
Upvotes: 1
Views: 671
Reputation: 941218
The error you got is a COM error, E_FAIL. It is a miserable "can't make it work, don't know why" kind of error. Visual Studio is prone to this kind of error when it wasn't installed correctly. Especially when one of its 'packages' wasn't registered correctly. The C# IDE is one of those packages, more than one actually.
You'll need to get your machine stable again and re-install VS2010. Ask questions about problems with your machine's registry at superuser.com
Upvotes: 2