2017-12-31 91 views
0

Visual Studio 2017 버전 15.6을 설치 한 후. 미리보기, 크로스 플랫폼 프로젝트를 만들 수 없습니다. 매번, 나는 그림에서 오류를 얻고있다. 이것에 대한 해결책은 무엇입니까?Microsoft.Build.Utilities.ToolLocationHelper :: GetPathToStandardLibraries (MonoAndroid) -이 문제를 해결하는 방법은 무엇입니까?

enter image description here

+0

미리보기입니다. 자신의 책임하에 사용하십시오. 안정적인 릴리스로 돌아갑니다. –

답변

0

그것은 실제로 자 마린 비주얼 스튜디오 템플릿의 버그, bugzilla 60995 볼은 임시 해결 방법이 버그를 제공한다 :

Workaround: Apparently when the template is generated it'll add the following line in the android csproj file:

<TargetFrameworkVersion>"v8.0"</TargetFrameworkVersion> 

The solution then is to change it to:

<TargetFrameworkVersion>v8.0</TargetFrameworkVersion> 

Without the quotes and after that, everything works fine again!

+0

고마워요! 이 문제는 @FrankWang 문제를 해결했지만 모든 크로스 플랫폼 프로젝트를 작성한 후에 다른 문제가 발생했습니다. 오류 : "이름 'InitializeComponent'가 현재 컨텍스트에 없습니다." –

관련 문제