2013年8月27日

on
一、使用Crimson Editor (1)Console應用程式,編譯設定:
    命令:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\csc.exe
    參數: /out:$(FileTitle).exe /target:exe $(FileName)
    預設目錄:$(FileDir)
(2)Windows應用程式,編譯設定:
    命令:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\csc.exe
    參數: /out:$(FileTitle).exe /target:winexe $(FileName)
    預設目錄:$(FileDir)
(3)Class library(DLL)編譯設定:
    命令:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\csc.exe
    參數: /target:library $(FileName)
    預設目錄:$(FileDir)
二、使用EditPlus 2 (1)Console應用程式,編譯設定:
    命令:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\csc.exe
    參數: /out:$(FileNameNoExt).exe /target:exe $(FileName)
    預設目錄:$(FileDir)
(2)Windows應用程式,編譯設定:
    命令:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\csc.exe
    參數: /out:$(FileNameNoExt).exe /target:winexe $(FileName)
    預設目錄:$(FileDir)
(3)Class library(DLL)編譯設定:
    命令:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\csc.exe
    參數: /target:library $(FileName)
    預設目錄:$(FileDir)

延伸閱讀: Core C# and .NET Quick Reference

0 意見:

張貼留言

注意:只有此網誌的成員可以留言。