Question

I've created a Silverlight Business Application and want to use App_GlobalResources.

The resources are in the same project (TestApp.Web). Trying to use some resources through System.Resources. in a class doesn't work, because there is no class listed.

I see only RegistrationDataResources and ValidationErrorResources.

Maybe you have an idea?

Edit: Using Resources.te23. brings up an error. "Type or Namspace te23 is not available in TestApp.Web.Resources" (translated to English)

Content of "te23" ressource (I removed the comments).

namespace Resources {
using System;
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Web.Application.StronglyTypedResourceProxyBuilder", "10.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class te23 {
    private static global::System.Resources.ResourceManager resourceMan; 
    private static global::System.Globalization.CultureInfo resourceCulture;

    [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
    internal te23() {
    }
   [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
    internal static global::System.Resources.ResourceManager ResourceManager {
        get {
            if (object.ReferenceEquals(resourceMan, null)) {
                global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Resources.te23", global::System.Reflection.Assembly.Load("App_GlobalResources"));
                resourceMan = temp;
            }
            return resourceMan;
        }
    }
    [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
    internal static global::System.Globalization.CultureInfo Culture {
        get {
            return resourceCulture;
        }
        set {
            resourceCulture = value;
        }
    }
    internal static string test {
        get {
            return ResourceManager.GetString("test", resourceCulture);
        }
    }
}

}

Was it helpful?

Solution 3

I've edited the namespaces from Resources to TestApp.Web.Resources. Now they are listet under Resources.

OTHER TIPS

Just a thought, do you have the library reference to the specific library?

This is normally a build issue. Verify that the Custom Tool property of the .resx file is set to "GlobalResourceProxyGenerator".

(Note that you'd access resources using Resources.MyResxFile.ResourceName.)

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top