-
[ILMerge] - 사용하기.NET/Tools, Library 2017. 11. 24. 12:27
ILMerge 사용하기
ILMerge는 여러 .NET 어셈블리(*.dll)를 단일 .NET 어셈블리(*.dll)로 병합하는 유틸리티입니다.
ILMerge Download 링크
https://www.microsoft.com/en-us/download/details.aspx?id=17630ILMerge GitHub
github.com/dotnet/ILMergeILMerge 설치 경로
C:\Program Files (x86)\Microsoft\ILMerge\ILMerge.exe- EXE 만들기
[여러개의 클래스 라이브러리 dll 과 응용프로그램.exe] 를 합쳐 생성할파일이름.exe로 만들어줍니다.
"C:\Program Files (x86)\Microsoft\ILMerge\ILMerge.exe" /out:생성할파일이름.exe C#응용프로그램.exe /lib:"C#응용프로그램경로(Debug,Release)" 클래스 라이브러리1.dll 클래스 라이브러리2.dll- DLL 만들기
[여러개의 클래스 라이브러리 dll] 를 합쳐 생성할 클래스 라이브러리.dll로 만들어줍니다.
"C:\Program Files (x86)\Microsoft\ILMerge\ILMerge.exe" /out:생성할 클래스라이브러리.dll /lib:"C#응용프로그램경로(Debug,Release)" 클래스 라이브러리1.dll 클래스라이브러리2.dll'.NET > Tools, Library' 카테고리의 다른 글
[DebugView] - 사용하기 (0) 2018.09.14 [IKVM] - 사용하기 (0) 2017.04.03 [Style Schemes] - VisualStudio 스타일 Schemes (1) 2015.10.24