提交 ffdc9cc5 编写于 作者: J Jared Parsons

Add a work around for VSI builds

上级 48cd1e00
......@@ -60,6 +60,9 @@
<IsDev15RC Condition="Exists('$(MSBuildBinPath)\..\..\..\..\Common7\IDE\Microsoft.VisualStudio.ExtensionEngine.dll')">true</IsDev15RC>
<DeployExtension Condition="'$(IsDev15RC)' != 'true' or '$(VisualStudioVersion)' != '15.0'">false</DeployExtension>
<VisualStudioBuildToolsVersion>15.0.25907-RC2</VisualStudioBuildToolsVersion>
<!-- For the moment our Dev14 VSI suites must continue to use the Dev14 SDK. -->
<VisualStudioBuildToolsVersion Condition="'$(IsDev14VsiBuild)' == 'true'">14.3.25420</VisualStudioBuildToolsVersion>
</PropertyGroup>
<!-- Unix specific settings -->
......
......@@ -14,7 +14,12 @@
<IncludeDebugSymbolsInVSIXContainer>false</IncludeDebugSymbolsInVSIXContainer>
<IncludeDebugSymbolsInLocalVSIXDeployment>false</IncludeDebugSymbolsInLocalVSIXDeployment>
<MinimumVisualStudioVersion>$(VisualStudioVersion)</MinimumVisualStudioVersion>
<ImportVSSDKTargets>true</ImportVSSDKTargets>
<!-- This VSIX must be compiled with the Dev15 SDK due to the specific
set of references it uses. Yet when doing so it can't link in all
of the Dev14 VSIX that we are creating. Hence when building specifically
for Dev14 do not build this as a VSIX. -->
<ImportVSSDKTargets Condition="'$(IsDev14VsiBuild)' != 'true'">true</ImportVSSDKTargets>
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
<CopyNuGetImplementations>true</CopyNuGetImplementations>
<DeployExtension Condition="'$(VisualStudioVersion)' == '14.0'">false</DeployExtension>
......@@ -107,4 +112,4 @@
<Compile Include="AssemblyRedirects.cs" />
</ItemGroup>
<Import Project="..\..\..\build\Targets\Imports.targets" />
</Project>
\ No newline at end of file
</Project>
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册