2011/07/27
Editplus에 C# 설정하기
C#을 잠깐 보면서 어는 서적이든 처음에 Console 프로그래밍에 대해서 언급을 하고 있는데 이 때문에 덩치큰 Visual Studio를 실행하는 것이 싫어 일반 편집기에서 하는 방법을 알아보았다. 물론 명령줄을 이용하면 되는데 조금 편리하게 사용하기 위해 편집기 옵션을 이용하였다.
Editplus 의 사용자 툴을 등록하고 사용하므로써 편하게 컴파일과 실행을 할 수 있다.
아래 두 툴 설정을 추가하면 된다.
Menu Text: C# Compile
Command: C:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc.exe
Argument: $(FileName)
Initial Directory: $(FileDir)
Menu Text: C# Run
Command: cmd
Argument: /c $(FileNameNoExt)
Initial Directory: $(FileDir)
위와 같이 설정하면 다른 설정이 없을 경우 Ctrl + 1과 Ctrl + 2로 할당된다.
설정을 마치고 C# 파일을 생성하고 아래와 같은 코드를 입력하였다.
코드를 작성하고 Ctrl + 1로 컴파일하고 Ctrl + 2로 실행을하면 간단한 C# 프로그램을 테스트할 수 있다.
<
Original Post : http://neodreamer-dev.tistory.com/553
Editplus 의 사용자 툴을 등록하고 사용하므로써 편하게 컴파일과 실행을 할 수 있다.
아래 두 툴 설정을 추가하면 된다.
Menu Text: C# Compile
Command: C:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc.exe
Argument: $(FileName)
Initial Directory: $(FileDir)
Menu Text: C# Run
Command: cmd
Argument: /c $(FileNameNoExt)
Initial Directory: $(FileDir)
위와 같이 설정하면 다른 설정이 없을 경우 Ctrl + 1과 Ctrl + 2로 할당된다.
설정을 마치고 C# 파일을 생성하고 아래와 같은 코드를 입력하였다.
using System;
class MyCSharpApp
{
public static void Main()
{
Console.WriteLine("Hello! C# World");
}
}
코드를 작성하고 Ctrl + 1로 컴파일하고 Ctrl + 2로 실행을하면 간단한 C# 프로그램을 테스트할 수 있다.
<
Original Post : http://neodreamer-dev.tistory.com/553
Subscribe to:
Post Comments
(
Atom
)
No comments :
Post a Comment