【发布时间】:2016-04-26 13:39:06
【问题描述】:
我正在使用 Visual Studio 2015 Update 2。根据csi.exe 有“C# 脚本文件”之类的东西:
如果指定,则执行 script-file.csx
是否有这种格式的文档?如何在 Visual Studio 中创建它们?
> csi.exe /?
Microsoft (R) Visual C# Interactive Compiler version 1.2.0.60317
Copyright (C) Microsoft Corporation. All rights reserved.
Usage: csi [option] ... [script-file.csx] [script-argument] ...
Executes script-file.csx if specified, otherwise launches an interactive REPL (Read Eval Print Loop).
Options:
/help Display this usage message (alternative form: /?)
/i Drop to REPL after executing the specified script.
/r:<file> Reference metadata from the specified assembly file (alternative form: /reference)
/r:<file list> Reference metadata from the specified assembly files (alternative form: /reference)
/lib:<path list> List of directories where to look for libraries specified by #r directive.
(alternative forms: /libPath /libPaths)
/u:<namespace> Define global namespace using (alternative forms: /using, /usings, /import, /imports)
@<file> Read response file for more options
-- Indicates that the remaining arguments should not be treated as options.
【问题讨论】:
-
我在 2011 blogs.msdn.microsoft.com/visualstudio/2011/10/19/… 找到了这篇博文,但说明在 Visual Studio 2015 中不起作用(“新文件”中缺少“Visual C# 脚本”)
-
如果它只是一个文本文件,您肯定不需要模板来创建它吗?你可以重命名你知道的文件
标签: c# visual-studio-2015 csx csi