부모글 보이기/감추기 AD BLOCK 해제 요청 이 글에는 광고가 많이 들어가 있지 않습니다. adblock을 해제하셔도 글을 읽는데 그다지 부담이 없으니 해제를 부탁드립니다. (시리즈 글이 5개 있습니다.) 개발 환경 구성: 543. 애저듣보잡 - Github Workflow/Actions 소개 ; https://www.sysnet.pe.kr/2/0/12541 개발 환경 구성: 545. github workflow/actions에서 빌드시 snk 파일 다루는 방법 - Encrypted secrets ; https://www.sysnet.pe.kr/2/0/12546 개발 환경 구성: 546. github workflow/actions에서 nuget 패키지 등록하는 방법 ; https://www.sysnet.pe.kr/2/0/12548 개발 환경 구성: 547. github workflow/actions에서 Visual Studio Marketplace 패키지 등록하는 방법 ; https://www.sysnet.pe.kr/2/0/12552 개발 환경 구성: 623. Visual Studio 2022 빌드 환경을 위한 github Actions 설정 ; https://www.sysnet.pe.kr/2/0/12904 Visual Studio 2022 빌드 환경을 위한 github Actions 설정 github action을 설정해 두었던, github workflow/actions에서 Visual Studio Marketplace 패키지 등록하는 방법 ; https://www.sysnet.pe.kr/2/0/12552 프로젝트를 Visual Studio 2022로 마이그레이션한 후, commit을 했더니 이런 오류가 발생했습니다. VSSDK : error VSSDK1062: Schema validation error for 'D:\a\XmlCodeGenerator\XmlCodeGenerator\XmlCodeGenerator\obj\Release\extension.vsixmanifest'. The 'http://schemas.microsoft.com/developer/vsx-schema/2011:Assets' element is not declared. [D:\a\XmlCodeGenerator\XmlCodeGenerator\XmlCodeGenerator\XmlCodeGenerator.csproj] VSSDK : error VSSDK1062: Schema validation error for 'D:\a\XmlCodeGenerator\XmlCodeGenerator\XmlCodeGenerator\obj\Release\extension.vsixmanifest'. The element 'PackageManifest' in namespace 'http://schemas.microsoft.com/developer/vsx-schema/2011' has invalid child element 'InstallationTarget' in namespace 'http://schemas.microsoft.com/developer/vsx-schema/2011'. List of possible elements expected: 'Metadata, Installation, Dependencies, Assets, Prerequisites, Installer' in namespace 'http://schemas.microsoft.com/developer/vsx-schema/2011' as well as any element in namespace '##other'. [D:\a\XmlCodeGenerator\XmlCodeGenerator\XmlCodeGenerator\XmlCodeGenerator.csproj] 어쩔 수 없습니다, 이렇게 되면 빌드 환경도 2022로 맞춰야 합니다. 다행히 방법이 매우 간단한데요, GitHub Actions: Windows Server 2022 with Visual Studio 2022 is now generally available on GitHub-hosted runners ; https://github.blog/changelog/2021-11-16-github-actions-windows-server-2022-with-visual-studio-2022-is-now-generally-available-on-github-hosted-runners/ 단지, "runs-on" 속성만 바꿔주면 되는 것입니다 build: runs-on: windows-2022 일단, 해결은 했지만 좀 이해할 수가 없군요. ^^ 원래의 설정은 "runs-on: windows-latest"였는데, "latest"의 의미를 감안하면 당연히 2022가 적용이 되었어야 하는 거 아닐까요?! [이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.] [다음 글] 오류 유형: 780. Could not load file or assembly 'Microsoft.VisualStudio.TextTemplating.VSHost.15.0, Version=16.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies.[이전 글] .NET Framework: 1130. C# - ELEMENT_TYPE_INTERNAL 유형의 사용 예 [최초 등록일: 1/8/2022] [최종 수정일: 1/8/2022] 이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다. by SeongTae Jeong, mailto:techsharer at outlook.com 비밀번호 댓글 작성자 2022-02-10 09시26분 "windows-latest"가 이제 기본으로 Windows Server 2022로 바뀌었다고 합니다.GitHub Actions: Jobs running on `windows-latest` are now running on Windows Server 2022.; https://github.blog/changelog/2022-01-11-github-actions-jobs-running-on-windows-latest-are-now-running-on-windows-server-2022/(제가 글을 쓰고 불과 3일 후에 바뀌었군요. ^^)2022에 설치된 소프트웨어 목록은 다음의 링크에서 자세하게 확인할 수 있습니다.virtual-environments/images/win/Windows2022-Readme.md; https://github.com/actions/virtual-environments/blob/main/images/win/Windows2022-Readme.md-------------------------------Build .NET MAUI Apps with DevOps | .NET Conf 2023; https://youtu.be/PattkMhmnzE 정성태 ... 16 17 18 19 20 21 22 23 24 25 26 27 [28] 29 30 ... NoWriterDateCnt.TitleFile(s) 13357정성태5/16/202316204.NET Framework: 2124. C# - Semantic Kernel의 Planner 사용 예제113356정성태5/15/202318418DDK: 10. Device Driver 테스트 설치 관련 오류 (Code 37, Code 31) 및 인증서 관련 정리13355정성태5/12/202316438.NET Framework: 2123. C# - Semantic Kernel의 ChatGPT 대화 구현 [1]113354정성태5/12/202319174.NET Framework: 2122. C# - "Use Unicode UTF-8 for worldwide language support" 설정을 한 경우, 한글 입력이 '\0' 문자로 처리13352정성태5/12/202317622.NET Framework: 2121. C# - Semantic Kernel의 대화 문맥 유지113351정성태5/11/202318530VS.NET IDE: 185. Visual Studio - 원격 Docker container 내에 실행 중인 응용 프로그램에 대한 디버깅 [1]13350정성태5/11/202317686오류 유형: 859. Windows Date and Time - Unable to continue. You do not have permission to perform this task13349정성태5/11/202317108.NET Framework: 2120. C# - Semantic Kernel의 Skill과 Function 사용 예제 [1]113348정성태5/10/202319002.NET Framework: 2119. C# - Semantic Kernel의 "Basic Loading of the Kernel" 예제13347정성태5/10/202319190.NET Framework: 2118. C# - Semantic Kernel의 Prompt chaining 예제113346정성태5/10/202319675오류 유형: 858. RDP 원격 환경과 로컬 PC 간의 Ctrl+C, Ctrl+V 복사가 안 되는 문제13345정성태5/9/202320968.NET Framework: 2117. C# - (OpenAI 기반의) Microsoft Semantic Kernel을 이용한 자연어 처리 [1]113344정성태5/9/202323323.NET Framework: 2116. C# - OpenAI API 사용 - 지원 모델 목록 [1]113343정성태5/9/202320885디버깅 기술: 192. Windbg - Hyper-V VM으로 이더넷 원격 디버깅 연결하는 방법13342정성태5/8/202316769.NET Framework: 2115. System.Text.Json의 역직렬화 시 필드/속성 주의13341정성태5/8/202317462닷넷: 2114. C# 12 - 모든 형식의 별칭(Using aliases for any type)13340정성태5/8/202316414오류 유형: 857. Microsoft.Data.SqlClient.SqlException - 0x80131904, 0x8013150913339정성태5/6/202319083닷넷: 2113. C# 12 - 기본 생성자(Primary Constructors)13338정성태5/6/202316178닷넷: 2112. C# 12 - 기본 람다 매개 변수113337정성태5/5/202319313Linux: 59. dockerfile - docker exec로 container에 접속 시 자동으로 실행되는 코드 적용13336정성태5/4/202318044.NET Framework: 2111. C# - 바이너리 출력 디렉터리와 연관된 csproj 설정13335정성태4/30/202320618.NET Framework: 2110. C# - FFmpeg.AutoGen 라이브러리를 이용한 기본 프로젝트 구성 - Windows Forms113334정성태4/29/202319147Windows: 250. Win32 C/C++ - Modal 메시지 루프 내에서 SetWindowsHookEx를 이용한 Thread 메시지 처리 방법13333정성태4/28/202315724Windows: 249. Win32 C/C++ - 대화창 템플릿을 런타임에 코딩해서 사용113332정성태4/27/202316370Windows: 248. Win32 C/C++ - 대화창을 위한 메시지 루프 사용자 정의113331정성태4/27/202315974오류 유형: 856. dockerfile - 구 버전의 .NET Core 이미지 사용 시 apt update 오류 ... 16 17 18 19 20 21 22 23 24 25 26 27 [28] 29 30 ...