How to change namespace for resource file?
C#
1
Posts
1
Posters
0
Views
1
Watching
-
Problem: During develpoing my application I have changed name of namespace for my main form app. My app namespace is Analyzer my MainForm namespace is Analyzer.View Now I am trying to add some ImageList to my MainForm. During running application MissingManifestException is thrown. I have chacked Manifest using Ildasm and there is an entry
.mresource public Analyzer.MainForm.resources
In my opinion shoud be.mresource public Analyzer.View.MainForm.resources
Recompiling doesn't help. Is this mean that MainForm.resX is in wrong (old) namespace? If yes how to change this namespace?