嵌入式文本文件中的C#预处理程序指令

时间:2014-01-09 11:59:52

标签: c# visual-studio-2012 embedded-resource preprocessor-directive

我有一个带有嵌入式*.less文件的ASP MVC Web项目(这只是一个文本)。我希望在@include模式下Debug使用其他一些资源,但不要在Release中执行此操作。是否可以说编译器在嵌入的文本文件中使用C#Preprocessor指令?

我不知道我怎么能这样做,但如果可能的话,那将是完美的:)

#if Debug
  @include ('debug.less')
#else
  @include ('release.less')
#endif

1 个答案:

答案 0 :(得分:1)

不幸的是,C#不支持#include,并且仅在CS文件中支持#if/#else/#endif