如何用CSC.exe来编译Visual C#的代码文件

2020-12-13 15:35

阅读:454

这个选项是告诉编译器你所想得到什么类型的输出文件。除非使用/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://创建一个模块


评论


亲,登录后才可以留言!