Could not load file or assembly 'xxxx' or one of its dependencies. The system cannot find the file specified

前端 未结 3 888
挽巷
挽巷 2021-01-04 18:17

Inside VS2005, our whole programming staff gets this error message sporadically and it is always on the BeneControls project. This error me

3条回答
  •  情话喂你
    2021-01-04 18:47

    Version=1.0.3289.23008 - that tells me you version number is constantly changing, have you thought about fixing on a version number during development?

    On AssemblyInfo.vb:

    Currently it is set to increment:

    [assembly: AssemblyVersion("1.0.*.*")]
    

    Change to:

    [assembly: AssemblyVersion("1.0.0.0")]
    

    And you have it in a fixed version.

提交回复
热议问题