I ve a section that only Return the Value in AssemblyInfo.cs (该代码为Windows Telephone):
using System.Runtime.InteropServices;
using System.Reflection;
namespace Tiletoons
{
class AppInfo
{
public static readonly string Id = string.Empty;
public static readonly string Product = string.Empty;
public static readonly string Company = string.Empty;
public static readonly string Version = string.Empty;
static AppInfo()
{
Assembly assembly = Assembly.GetExecutingAssembly();
foreach (object attribute in assembly.GetCustomAttributes(false)) {
if (attribute.GetType() == typeof(GuidAttribute)) {
Id = (attribute as GuidAttribute).Value;
} else if (attribute.GetType() == typeof(AssemblyProductAttribute)) {
Product = (attribute as AssemblyProductAttribute).Product;
} else if (attribute.GetType() == typeof(AssemblyCompanyAttribute)) {
Company = (attribute as AssemblyCompanyAttribute).Company;
}
}
Version = assembly.FullName.Split( = )[1].Split( , )[0];
}
}
}
...... 我愿通过T4变革自动产生我的WMAppManifest.xml。
<#@ assembly name="System.Core" #>
<#@ assembly name="EnvDTE" #>
<#@ import namespace="EnvDTE" #>
<#@ import namespace="System" #>
<#
IServiceProvider hostServiceProvider = Host as IServiceProvider;
EnvDTE.DTE dte = hostServiceProvider.GetService(typeof(EnvDTE.DTE)) as EnvDTE.DTE;
EnvDTE.ProjectItem containingProjectItem = dte.Solution.FindProjectItem(Host.TemplateFile);
Project project = containingProjectItem.ContainingProject;
var projectName = project.FullName;
ProjectItem deploymentConfiguration = GetProjectItem(project, "AppInfo.cs");
if (deploymentConfiguration == null) {
throw new Exception("Unable to resolve AppInfo.cs");
}
var codeModel = deploymentConfiguration.FileCodeModel;
string id = null;
string product = null;
string company = null;
string version = null;
foreach (CodeElement codeElement in codeModel.CodeElements) {
if (codeElement.Name == "AppInfo") {
CodeClass codeClass = codeElement as CodeClass;
foreach (CodeElement memberElement in codeClass.Members) {
CodeVariable variable = memberElement as CodeVariable;
switch (memberElement.Name) {
case "Id":
id = variable.InitExpression as string;
break;
case "Product":
product = variable.InitExpression as string;
break;
case "Company":
company = variable.InitExpression as string;
break;
case "Version":
version = variable.InitExpression as string;
break;
}
}
}
}
#>
<#+ EnvDTE.ProjectItem GetProjectItem(Project project, string fileName)
{
foreach (ProjectItem projectItem in project.ProjectItems) {
if (projectItem.Name.EndsWith(fileName)) {
return projectItem;
}
var item = GetProjectItem(projectItem, fileName);
if (item != null) {
return item;
}
}
return null;
}
EnvDTE.ProjectItem GetProjectItem(EnvDTE.ProjectItem projectItem, string fileName)
{
if (projectItem.ProjectItems != null && projectItem.ProjectItems.Count > 0) {
foreach (ProjectItem item in projectItem.ProjectItems) {
if (item.Name.EndsWith(fileName)) {
return item;
}
}
}
return null;
}
#>
......,最后是我的示范:
<#@ template debug="false" hostspecific="true" language="C#" #>
<#@ output extension=".xml" #>
<#@ include file="AppInfo.ttinclude" #>
<?xml version="1.0" encoding="utf-8"?>
<Deployment xmlns="http://schemas.microsoft.com/windowsphone/2009/deployment" AppPlatformVersion="7.0">
<App xmlns="" ProductID="<#= id #>" Title="<#= product #>" RuntimeType="XNA" Version="<#= version #>" Genre="apps.games" Author="Gonzo" Description="<#= description #>" Publisher="<#= company #>">
<IconPath IsRelative="true" IsResource="false">
...
</App>
</Deployment>
能否用像我国这样的类别来填写清单模板? 我不想重复在议会Info.cs中已经定义的固定不变,即,设想是把出版我从那里获得的劳动合同时所需的所有信息推算出来。
Any idea would be really welcome :-)
j3d