Hello: (My English is not so good, so i am sorry at first) I read Building Applications with the SharpDevelop Core on Codeproject to understand How ICSharpCode.Core workin. Everythink works fine with Visual Studio 2005. I wrote my own program on ICSharpCode.Core.
My problem is: When am i began use VS 2008 Embeded resources as BitmapResources dosn't work. I use:
Assembly exe = typeof(Start).Assembly;
ResourceService.RegisterNeutralStrings(new ResourceManager("Startup.StringResources", exe));
ResourceService.RegisterNeutralImages(new ResourceManager("Startup.ImageResources", exe));
Is it same as in ICSharpCode.Core.Demo.
When i compile my program in in VS 2008 and want use resources for example:
<MenuItem id = "RefreshGraph"
label = "${res:Editor.Refresh}"
icon = "Icons.Refresh16"
class = "Editor.RefreshGraph"/>
Icons.Refresh16 is in ImageResources.resources, but ICSharpCode make Exception that Icons.Refresh16 dosn't exist.
So i think that problem is in me so i try compile ICSharpCode.Core.Demo with VS 2008.Here is problem, too.
So i try compile #develop 3.0 in VS2008 and here are the resources loaded.
Can you help me please?
PS: Resources are embeded in exe file. You are doing GREAT JOB, THANK YOU