是否可以将Visual Studio项目合并到单个文件中?

时间:2011-08-25 19:02:50

标签: visual-studio text

我只想将我的所有代码放在一个文件中来发送和审核。

这是我想要的想法。

****Myclass.cs****
code
code
code
code
code
*****file2.cs*****
code
code
code

3 个答案:

答案 0 :(得分:1)

更简单:

type *.cs > oneFile.txt

虽然这不会在文件之间放置任何分隔符。但是这个:

type *.cs >output.txt 2>&1

将文件名放在每个文件的内容之前。

答案 1 :(得分:0)

安装cygwin,添加到路径,然后从命令提示符运行find path/to/my/project -name '*.cs' | xargs cat

答案 2 :(得分:0)

您可以使用DOS命令执行此操作 - 无需安装cygwin:

for %f in (*.cs) do  (
   if exist oneFile.txt del oneFile.txt
   echo %f ---- File: %f ---- >> oneFile.txt
   type %f >> oneFile.txt
)

如果您有不同类型的文件,您实际上可以键入其名称而不是“* .cs”