부모글 보이기/감추기 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 정성태 ... 136 [137] 138 139 140 141 142 143 144 145 146 147 148 149 150 ... NoWriterDateCnt.TitleFile(s) 1663정성태4/28/201420032오류 유형: 226. Visual Studio - We were unable to establish the connection because it is configured for user1662정성태4/28/201424660개발 환경 구성: 220. supportedRuntime 설정을 위한 app.config Transformation [1]1661정성태4/26/201421152.NET Framework: 432. WPF - System.Windows.Data Error: 47 : XmlDataProvider has inline XML that does not explicitly set its XmlNamespace (xmlns="").1660정성태4/25/201429074VC++: 77. C++ 숫자형 값이 범위를 벗어나는 경우의 출력 사례 모음1659정성태4/17/201429189.NET Framework: 431. .NET EXE 파일을 닷넷 프레임워크 버전에 상관없이 실행할 수 있을까요? [5]1658정성태4/17/201421011.NET Framework: 430. C#에서 사용자 정의 예약어가 가능할까요? [1]1657정성태4/10/201441312.NET Framework: 429. C# - 유니코드 한글 문자열을 ks_c_5601-1987로 변환하는 방법 [3]11656정성태3/19/201424474오류 유형: 225. regsvcs 등록 시 0x80040153 오류1655정성태3/19/201424617Windows: 92. Thumbs.db 파일이 삭제 안 되는 문제1654정성태3/19/201426689개발 환경 구성: 219. SOS.dll 확장 모듈을 버전 별로 구하는 방법 [4]1653정성태3/13/201421386.NET Framework: 428. .NET Reflection으로 다차원/Jagged 배열을 구분하는 방법1652정성태3/12/201422294VC++: 76. Direct Show를 사용하는 다른 프로그램의 필터 그래프를 graphedt.exe에서 확인하는 방법11651정성태3/11/201426179.NET Framework: 427. C# 컴파일러는 변수를 초기화시키지 않을까요?1650정성태3/6/201427098VC++: 75. Visual C++ 컴파일 오류 - Cannot use __try in functions that require object unwinding [1]11649정성태3/5/201421585기타: 44. BTN 스토어 앱 개인정보 보호 정책 안내1648정성태3/5/201421997개발 환경 구성: 218. 스토어 앱 인증 실패 - no privacy statement1647정성태3/3/201423352오류 유형: 224. 스카이드라이브 비정상 종료 - Error 0x80040A41: No error description available1646정성태3/3/201432605오류 유형: 223. Microsoft-Windows-DistributedCOM 10016 이벤트 로그 에러 [1]1645정성태3/1/201422348기타: 43. 마이크로소프트 MVP들이 모여 전국 세미나를 엽니다.1644정성태2/26/201429401.NET Framework: 426. m3u8 스트리밍 파일을 윈도우 8.1 Store App에서 재생하는 방법11643정성태2/25/201425188오류 유형: 222. 윈도우 8 Store App - APPX1204 SignTool Error: An unexpected internal error has occurred [1]1642정성태2/25/201429837Windows: 91. 한글이 포함된 사용자 프로파일 경로 변경 [2]1641정성태2/24/201426514기타: 42. 클래스 설명 [5]1640정성태2/24/201447550.NET Framework: 425. C# - VLC(ActiveX) 컨트롤을 레지스트리 등록 없이 사용하는 방법 [15]1639정성태2/23/201423278기타: 41. BBS 스토어 앱 개인정보 보호 정책 안내1638정성태2/18/201446079Windows: 90. 실행 파일로부터 관리자 요구 권한을 제거하는 방법(부제: 크랙 버전을 보다 안전하게 실행하는 방법) [8] ... 136 [137] 138 139 140 141 142 143 144 145 146 147 148 149 150 ...