如何用CSC.exe来编译Visual C#的代码文件
2020-12-13 15:35
这个选项是告诉编译器你所想得到什么类型的输出文件。除非使用/target:module选项,其他选项创建的输出文件都包含着汇编名单。汇编名单存储着编译中所有文件的信息。在一个命令行中如果生成多个输出文件,但只创建一个汇编名单,并存储在第一个输出文件中。
下面是/target的4种用法:
/target:exe 创建一个可执行(EXE)的控制台应用程序
/target:library 创建一个代码库(DLL)
/target:winexe 创建一个windows程序(EXE)
/target:module 创建一个模块(DLL)
例子:
csc /target:exe myProj.cs // 创建一个EXE文件
csc /target:winexe myProject.cs file://创建一个windows程序
csc /target:library myProject.cs file://创建一个代码库
csc /target:module myProject.cs file://创建一个模块
上一篇:Linux下多线程模拟停车场停车
文章标题:如何用CSC.exe来编译Visual C#的代码文件
文章链接:http://soscw.com/index.php/essay/35237.html