c# change framework error

后端 未结 4 1581
一生所求
一生所求 2021-01-13 03:28

I am running Visual Studio 2010. I just change the frame work of my project from 4.0 to 3.5. I removed the reference Microsoft.Framework that it asked me to remove then trie

4条回答
  •  轮回少年
    2021-01-13 03:46

    I ran into a Visual Studio bug that caused me a similar problem. I used this workaround to solve it:

    A fix that SEEMS to work is to manually alter one character in the image stream EVERY TIME the usercontrol or form is edited in the designer

    
        
         AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
    

    Change to

         AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj0yLjAuMC4w
    

    That is 00LjAuMC4w back to 0yLjAuMC4w at the end of the line (00 back to 0y)

    But I have to fix that every time I change something in that form.

提交回复
热议问题