Visual Studio
-
-
[VS][별*] Github Copilot MCP 사용Visual Studio 2026. 3. 10. 16:44
아래 Github Copilot MCP tools 가 있어야 Agent 모드로 알아서 파일 지지고 볶는 행위를 함. 그냥 솔루션 만들면 안들어가있고 아마도 Git clone하면 아래처럼 Solution 폴더 안에 .mcp.json으로 생성하는것 같은데 ( 추정. 확인 해봐야 함.) 여튼 로컬에서 새로만든 solution 프로젝트에서도 사용하고 싶으면사용자 폴더에 있는 Global .mcp.json 에 Server 로 추가해 줘야 함. 아래 처럼 직접 추가해서 수정해주고 저장. .mcp.json{ "inputs": [], "servers": { "github": { "type": "stdio", "command": "docker", "args": [ "run..
-
[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
-
[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..
-
[VS] .NET CLI 명령어, dotnet, MSBuildVisual Studio 2025. 3. 6. 10:56
EX) 참고 https://learn.microsoft.com/ko-kr/dotnet/core/tools/dotnet-publish dotnet publish 명령 - .NET CLIdotnet publish 명령은 .NET 프로젝트 또는 솔루션을 디렉터리에 게시합니다.learn.microsoft.com https://learn.microsoft.com/ko-kr/visualstudio/msbuild/how-to-exclude-files-from-the-build?view=vs-2022 빌드에서 파일 제외 - MSBuild특성 및 와일드카드가 있는 MSBuild 프로젝트 파일의 빌드에서 파일을 명시적으로 제외하거나 조건부로 포함하는 방법을 알아봅니다.learn.microsoft.com
-
[VS] build ContextVisual Studio 2025. 1. 17. 11:43
"=> " 라고 생각ex) path를 적을때"$(DropLocation)\$(BuildNumber)\InstallShield\DSMClient64.ism"=>"$(DropLocation)\$(BuildNumber)\InstallShield\DSMClient64.ism" ItemGroup 임의 지정 가능 ex) 내가 지정한 이름변수 같은 느낌? Exclude https://learn.microsoft.com/ko-kr/visualstudio/msbuild/how-to-exclude-files-from-the-build?view=vs-2022 빌드에서 파일 제외 - MSBuild특성 및 와일드카드가 있는 MSBuild 프로젝트 파일의 빌드에서 파일을 명시적으로 제외..