분류 전체보기
-
[C#] Summary 외부 dll , Nuget 추가 시C#/기초 2025. 4. 9. 11:43
체크 Gernerate a file containing API documentation. nupkg에 .xml 파일 포함 됨. https://skfkdkdlaos.tistory.com/58 C# dll 파일을 외부에서 참조 추가 시 설명 보이게 하는 방법이번에는 dll 파일을 만들어놓고 다른 프로젝트에서 참조시킬 때 기존에 추가했던 설명을 보이게 하는 방법에 대하여 알아보겠습니다. MS에서는 해당 설명을 '문서 주석' 이라는 명칭으로 사용합skfkdkdlaos.tistory.com
-
[VS] Visual Studio log file location (ActivityLog.xml)Visual Studio 2025. 4. 8. 15:49
EX)C:\Users\iskim\AppData\Roaming\Microsoft\VisualStudio\17.0_f5a38fb4 https://dev.to/karenpayneoregon/view-visual-studio-activity-logs-better-2id8 View Visual Studio activity logs betterWhen Microsoft Visual Studio encounters issues a start to analyze issues is to start Visual Studio...dev.to
-
[C#] LINQ SelectManyC#/기초 2025. 4. 3. 15:45
y는 l.yeares https://jettstream.tistory.com/121 C# Select vs SelectManySelect() 메서드 객체에 담긴 여러 데이터 중에서 원하는 부분만 손쉽게 추출하여 새로운 형태의 컬렉션으로 생성한다. public class Program { public class Winner { public string name; public int[] years; } public staticjettstream.tistory.com
-
[WPF] Plug-InC#/WPF 2025. 4. 1. 17:19
#DynamicModule#Modular 공통 모듈, 모듈 인터페이스 통해서 각 모듈 프로젝트에서View, ViewModel 등록하고 Bootstrapper에서 컨테이너에 등록 종속성 주입으로 받음 각 모듈에서 INavigateModule 상속받아서 구현해주고 공통 모듈의 템플릿에서 각 모듈의 NavigateViewCommand 실행 되도록 함. 메인 프로젝트 모듈에서공통 모듈의 템플릿 사용. https://medium.com/c-sharp-programming/introduction-to-a-plug-in-architecture-using-the-example-of-a-wpf-application-7f2e225b647a Introduction to a plug-in archit..
-
[기타] InstallShield Removal file Scheduling기타자료 2025. 3. 31. 16:42
Add File Removal 프로퍼티 추가 Modules 폴더안의 파일들 (*.*)설치 및 삭제할 때 삭제 Modules 폴더안의 폴더는 영향이 없음.Modules 폴더안의 파일에만 반영 됨. 아래 파일들 버전업 설치할 때 삭제 후 다시 설치 함. https://docs.revenera.com/installshield24helplib/helplibrary/RemoveFileTableSprt.htm Removing Files and Folders from Target Systems2. In the Setup Design or Components tree, expand the node of the component that contains the file or folder that you..
-
[VS] MSTest vs VSTestVisual Studio 2025. 3. 31. 09:06
VSTest 로 사용 함. https://dynatechconsultancy.com/blog/microsoft-testing-platform-vs-vstest-comprehensive-2024-guide-choosing-the-right-unit-testing-solution Microsoft.Testing.Platform vs. VSTest - A Comprehensive 2024 Guide to Choosing the Right Unit Testing SolutionMicrosoft.Testing.Platform & VSTest offer unique benefits. Each one of them is tailored for specific project requirements. Choo..
-
[C#] // 주석C#/기초 2025. 3. 28. 08:51
https://learn.microsoft.com/ko-kr/dotnet/csharp/language-reference/xmldoc/recommended-tags 권장 XML 문서 태그 - C# reference이 문서에서는 XML 문서의 권장 유형 태그와 멤버에 대한 구문 및 정의를 제공합니다.learn.microsoft.com Example : 이 요소의 값은 Visual Studio의 IntelliSense에 표시됩니다. cref *: 이 요소의 값은 Visual Studio의 IntelliSense에 표시됩니다. **