3

我正在尝试将本地化添加到我的爱好项目(WinRT 应用程序)中的类库中。我很惊讶它没有为资源(.resw 文件)生成强类型类。是否有任何 T4 模板或自定义工具可以自动从资源生成此类?

我自己编写了简单的 T4 模板,但我想知道是否有任何内置或 MS 提供的机制,因为自定义解决方案有一些缺点(例如保存对资源的更改不会触发 T4 转换)。

4

4 回答 4

3

这是我的原始解决方案(但它在 Windows 8 的 VS 2012 RC 中不起作用,因为它可能不支持文本模板)。您只需要通过在模板中设置,将模板配置为指向正确的资源文件inputFilePath

<#@ template debug="false" hostspecific="true" language="C#" #>
<#@ assembly name="System.Core" #>
<#@ assembly name="System.Xml" #>
<#@ assembly name="System.Xml.Linq" #>
<#@ assembly name="EnvDTE" #>
<#@ import namespace="System.IO" #>
<#@ import namespace="System.Linq" #>
<#@ import namespace="System.Xml.Linq" #>
<#@ import namespace="System.Collections.Generic" #>
<#@ import namespace="Microsoft.CSharp" #>
<#@ import namespace="EnvDTE" #>
<#@ output extension=".cs" #>
<#
    DTE env = GetVSEnvironment();
    var inputFilePath = @"Resources\Strings\en\Resources.resw";
    var provider = new CSharpCodeProvider();
    string className = CreateClassName(provider);

    SetCurrentDirectory();
    if (File.Exists(inputFilePath)) {
#>
using Windows.ApplicationModel.Resources;

namespace <#= GetNamespace() #> {
    public static class <#= className #> {
        private static ResourceLoader _resourceLoader;

        static <#= className #>() {
            _resourceLoader = new ResourceLoader("<#= GetResourcePath(env) #>");
        }
<#
        foreach (string name in GetResourceKeys(inputFilePath)) {
#>
        public static string <#= provider.CreateEscapedIdentifier(name) #> {
            get { return _resourceLoader.GetString("<#= name #>"); }
        }
<#
        }
#>
    }
}
<#
    } else {
        throw new FileNotFoundException(String.Format("Unable to find Resource file: {0}", inputFilePath)); 
    } 
#>
<#+
    private DTE GetVSEnvironment() {
        DTE env = null;
        var provider = Host as IServiceProvider;
        if (provider != null) {
            env = provider.GetService(typeof(DTE)) as DTE;
        }

        if (env == null) {
            throw new InvalidOperationException("Template must be executed from Visual Studio");
        }

        return env;
    }

    private void SetCurrentDirectory() {
        Directory.SetCurrentDirectory(Host.ResolvePath(""));
    }

    private string CreateClassName(CSharpCodeProvider provider) {
        string name = Path.GetFileNameWithoutExtension(Host.TemplateFile);
        return provider.CreateEscapedIdentifier(name);
    }

    private string GetNamespace() {
        return Host.ResolveParameterValue("directiveId", "namespaceDirectiveProcessor", "namespaceHint");
    }

    private string GetResourcePath(DTE env) {
        Project project = env.Solution.FindProjectItem(Host.TemplateFile).ContainingProject;
        string assemblyName = project.Properties.Item("AssemblyName").Value.ToString();
        return assemblyName + "/Resources";
    }

    private static IEnumerable<string> GetResourceKeys(string filePath) {
        XDocument doc = XDocument.Load(filePath);
        return doc.Root.Elements("data").Select(e => e.Attribute("name").Value);
    }
#>

我想我会通过用于 .resx 文件的普通自定义工具来解决这个问题,但是 Metro 风格的应用程序需要使用不同的命名空间。

于 2012-08-10T19:48:15.173 回答
1

我有一个 T4 模板,它从https://github.com/damieng/DamienGKit/tree/master/T4/ResourceGenerator的 RESW 文件提供强生成的资源

只需将 ResourceGeneratorMetro.tt 和 ResourceGenerator.ttinclude 文件放到您的项目中,然后修改 ResourceGeneratorMetro.tt 的第 6 行以包含您希望它生成的资源名称。

于 2012-11-26T22:51:36.460 回答
1
System.IO.Path.GetDirectoryName(this.Host.TemplateFile) 

可以帮助您获取绝对 T4 模板文件路径(仅在 Visual Studio 中执行时),然后只需提供资源文件的相对文件路径即可。

var inputFilePath =System.IO.Path.GetDirectoryName(this.Host.TemplateFile) 
+ "\\Resources\\Strings\\en\\Resources.resw" ;

适合我

如果你想爬到文件夹( ..// 在这里不起作用)你可以手动编辑字符串并使用它

于 2012-09-14T06:40:51.000 回答
1

我刚刚在 CodePlex 上启动了一个名为ResW 文件代码生成器的 Visual Studio 2012 自定义工具项目

于 2012-11-11T07:14:06.343 回答