创建 NuGet 包时,我可以修改现有源代码文件吗?
我正在尝试创建一系列 NuGet 包以供我的组织内本地使用。
我知道我可以创建源代码转换文件(即 MyModel.cs.pp)来帮助添加新源代码文件,即:
namespace $rootnamespace$.Models {
public struct CategoryInfo {
public string categoryid;
public string description;
}
}
但是如果我想要怎么办修改现有的源代码文件?有什么办法可以做到这一点吗?也许使用 PowerShell?
I'm trying to create a series of NuGet packages for local use within my organization.
I'm aware I can create source-code transformation files (i.e. MyModel.cs.pp) to help with adding new source code files, i.e.:
namespace $rootnamespace$.Models {
public struct CategoryInfo {
public string categoryid;
public string description;
}
}
But what if I want to modify an existing source-code file? Is there any way to do this? Perhaps using PowerShell?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 CodeModel http://msdn.microsoft.com/en 来执行此操作-us/library/envdte.codemodel.aspx。
You can do this using CodeModel http://msdn.microsoft.com/en-us/library/envdte.codemodel.aspx.