[cnblogs] 在UWP中使用T4的注意事项
在UWP中尝试使用T4的朋友们可能会注意到,VS设计器默认生成的运行时T4无法通过编译,因为他使用了一些不支持UWP的API,解决方案也很简单,知道将其复制出来,修正不兼容的部分,指定inherits参数为新的基类即可,这里提供一个简单的版本,应该还可以优化 public class FormatterBase { private bool _endsWithNewline; private StringBuilder _generationEnvironmentField; private List<int> _indentLengthsField; protected StringBuilder GenerationEnvironment { get { if ((_generationEnvironmentField == null)) {…