解决方法
代码通常是开源项目的很好的文档;
抓住一个代码的副本,看看dotless.Core>配置> DotlessConfiguration.cs你会看到一些关于所有配置元素的方便的评论 – 这是Web一个
/// <summary> /// Whether this is used in a web context or not /// </summary> public bool Web { get; set; }
诚然,它不会告诉你很多,但是找到对该属性的引用,并且您只在代码中仅使用一个地方 –
if (!configuration.Web) RegisterLocalServices(pandora);
这开始给你一个更好的线索,它是什么,这是什么
protected virtual void RegisterLocalServices(FluentRegistration pandora) { pandora.Service<ICache>().Implementor<InMemoryCache>(); pandora.Service<IParameterSource>().Implementor<ConsoleArgumentParameterSource>(); pandora.Service<ILogger>().Implementor<ConsoleLogger>().Parameters("level").Set("error-level"); pandora.Service<IPathResolver>().Implementor<RelativePathResolver>(); }
因此,它设置在内存缓存,登录到控制台等(即,如果不在Web上下文中使用的服务)