Visual Studio 空的通用应用在线构建失败
Visual Studio online build failure for an empty universal app
我刚刚创建了一个新的空通用应用程序 (windows 10) 并在我的 visual studio 在线项目中签入了它。
配置的构建经常因以下错误而失败...
The imported project "C:\Program Files
(x86)\MSBuild\Microsoft\WindowsXaml\v14.0.2\Microsoft.Windows.UI.Xaml.CSharp.targets"
was not found. Confirm that the path in the declaration is
correct, and that the file exists on disk.
我将构建配置设置为使用 VS2015,但没有任何运气。
我一直在想这里缺少一个简单的配置...但它是否还不受支持?
项目本身就是 Visual Studio 中的标准模板。
我遇到了类似的问题 运行 Windows 10 TH1 下的 VS2013 Update 5 下缺少 MSBuild 8.2 目标。除了我的目标是 Microsoft.Windows.UI.Xaml.Cpp.targets。所以不一定是 Visual Studio 的问题,而是目标定义中 $(TargetPlatformVersion) 的替换:
<Import Project="$(TargetPlatformVersion)\Microsoft.Windows.UI.Xaml.Cpp.targets" />
我正在构建 Microsoft (https://github.com/Microsoft/winsdkfb) 的项目,所以我认为这不是你的问题(意味着你没有做错任何事)。
我知道这不是答案,但我怀疑我们在 Windows 10 SDK 和工具中遇到了漏洞。尽管 VS2015 已经进行了 RTM,但这些计划要到 7 月 29 日才能完成并可用。我试图在 VS2015 发行说明中找到一些东西,但运气不佳。
请告知我在此线程中找到的解决方案。
在撰写本文时,VSTO 服务似乎尚未更新
Windows 10 SDK。
当时实现它的唯一方法 运行 是创建您自己的构建 VM(通过 Windows Azure)并将其 link 到您的 VSTO 构建。
我发布了主题并在 MSDN TFS forum 上得到了答案。
我现在还没有尝试过,但由于 Windows 10 现在正式发布,我想它可能开箱即用。
我们现在支持 building Universal Windows Platform (UWP) projects 托管构建服务。
我刚刚创建了一个新的空通用应用程序 (windows 10) 并在我的 visual studio 在线项目中签入了它。
配置的构建经常因以下错误而失败...
The imported project "C:\Program Files (x86)\MSBuild\Microsoft\WindowsXaml\v14.0.2\Microsoft.Windows.UI.Xaml.CSharp.targets" was not found. Confirm that the path in the declaration is correct, and that the file exists on disk.
我将构建配置设置为使用 VS2015,但没有任何运气。
我一直在想这里缺少一个简单的配置...但它是否还不受支持?
项目本身就是 Visual Studio 中的标准模板。
我遇到了类似的问题 运行 Windows 10 TH1 下的 VS2013 Update 5 下缺少 MSBuild 8.2 目标。除了我的目标是 Microsoft.Windows.UI.Xaml.Cpp.targets。所以不一定是 Visual Studio 的问题,而是目标定义中 $(TargetPlatformVersion) 的替换:
<Import Project="$(TargetPlatformVersion)\Microsoft.Windows.UI.Xaml.Cpp.targets" />
我正在构建 Microsoft (https://github.com/Microsoft/winsdkfb) 的项目,所以我认为这不是你的问题(意味着你没有做错任何事)。
我知道这不是答案,但我怀疑我们在 Windows 10 SDK 和工具中遇到了漏洞。尽管 VS2015 已经进行了 RTM,但这些计划要到 7 月 29 日才能完成并可用。我试图在 VS2015 发行说明中找到一些东西,但运气不佳。
请告知我在此线程中找到的解决方案。
在撰写本文时,VSTO 服务似乎尚未更新 Windows 10 SDK。
当时实现它的唯一方法 运行 是创建您自己的构建 VM(通过 Windows Azure)并将其 link 到您的 VSTO 构建。
我发布了主题并在 MSDN TFS forum 上得到了答案。
我现在还没有尝试过,但由于 Windows 10 现在正式发布,我想它可能开箱即用。
我们现在支持 building Universal Windows Platform (UWP) projects 托管构建服务。