MSBuild 2015 Tools를 사용하여 빌드 서버에 UWP 라이브러리를 빌드하려고했습니다. 나는 윈도우 10 SDK 및 기타 필요한 도구를 설치했지만 나는이 명령을 구축하려고 비주얼 스튜디오 2015하지 않은 :이 예빌드 서버에 UWP 앱/라이브러리 빌드
msbuild mySolution.sln /t:Rebuild/p:Configuration=Release;Platform=x86;AppxBundlePlatforms=x86;AppxBundle=Always
또는 시도 : compilebuild-the-uwp-project-from-command-line가 여전히 작동하지 않는 내가있어 오류 :
...
error CS0518: Predefined type 'System.Boolean' is not defined or imported
error CS0518: Predefined type 'System.Void' is not defined or imported
error CS0518: Predefined type 'System.Object' is not defined or imported
error CS0518: Predefined type 'System.Int32' is not defined or imported
error CS0518: Predefined type 'System.Void' is not defined or imported
error CS0518: Predefined type 'System.Boolean' is not defined or imported
error CS0518: Predefined type 'System.Boolean' is not defined or imported
...
VS를 설치하면 모든 것이 정상이지만 빌드 서버에 VS를 설치하지 않으려 고합니다.
Visual Studio없이 UWP 라이브러리/앱을 빌드 할 수 있습니까?
먼저 너겟 복원이 필요하다고 생각합니다. .net 핵심 패키지가 누락되었다고 생각하십시오 –
그리고 이것도 좋은 문서입니다 https://docs.microsoft.com/en-us/windows/uwp/packaging/auto-build-package-uwp-apps –
나는 nuget 복원을 시도했습니다. , 그러나 그것은 작동하지 않았다. – paulExe