0

私は、Visual Studio Community 2015を使用して自分のRaspberry Pi用のWindows IOTアプリケーションを構築しようとしています。ここにプロジェクトテンプレートコードがあります。 atomic.h、chrono.h、cstdint.h、および比率の.h、私はこのプロジェクトをビルドしようとするたびに、私はヘッダファイルがarm_neon.h外部依存関係から来たエラーのリストを取得し、もののStartupTask.cpp外部依存関係のためにビルドが失敗する

#include "pch.h" 
#include "StartupTask.h" 

using namespace BackgroundApplication1; 
using namespace Platform; 
using namespace Windows::ApplicationModel::Background; 

// The Background Application template is documented at  http://go.microsoft.com/fwlink/?LinkID=533884&clcid=0x409 

void StartupTask::Run(IBackgroundTaskInstance^ taskInstance) 
{ 

// TODO: Insert code to perform background work 
// 
// If you start any asynchronous methods here, prevent the task 
// from closing prematurely by using BackgroundTaskDeferral as 
// described in http://aka.ms/backgroundtaskdeferral 
// 
} 

List of errors

テンプレートに既に含まれているため、これらのファイルに触れる必要はありません。これらのエラーを取り除く方法はわかりません。どんな助けでも大歓迎です。

答えて

1

あなたは enter image description here

そして、上記パッケージに含まれている必要がありすぎてWindowsのSDKは、次のパッケージがインストールされていることを確認する必要があります。

関連する問題