Skip to content

Commit

Permalink
Merge pull request microsoft#202 from zooba/issue-200
Browse files Browse the repository at this point in the history
microsoft#200 PTVS does not compile at ToT with VS 2013
  • Loading branch information
zooba committed May 18, 2015
2 parents 6811578 + 44cb7b3 commit b78acaa
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Python/Product/EnvironmentsList/PipExtensionProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ public async Task InstallPackage(string package, bool upgrade) {
} finally {
if (!success) {
// Check whether we failed because pip is missing
await CheckPipInstalledAsync();
CheckPipInstalledAsync().DoNotWait();
}

OnOperationFinished(string.Format(
Expand Down Expand Up @@ -402,7 +402,7 @@ public async Task UninstallPackage(string package) {
} finally {
if (!success) {
// Check whether we failed because pip is missing
await CheckPipInstalledAsync();
CheckPipInstalledAsync().DoNotWait();
}

OnOperationFinished(string.Format(
Expand Down
20 changes: 14 additions & 6 deletions Python/Product/PythonTools/PythonTools.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -175,9 +175,6 @@
<EmbedInteropTypes>False</EmbedInteropTypes>
</Reference>
<Reference Include="Microsoft.VisualStudio.Editor, Version=$(VSTarget).0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
<Reference Include="Microsoft.VisualStudio.InteractiveWindow">
<HintPath>$(DevEnvDir)PrivateAssemblies\Microsoft.VisualStudio.InteractiveWindow.dll</HintPath>
</Reference>
<Reference Include="Microsoft.VisualStudio.Language.Intellisense, Version=$(VSTarget).0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
<Reference Include="Microsoft.VisualStudio.Language.NavigateTo.Interfaces, Version=$(VSTarget).0.0, Culture=neutral" />
<Reference Include="Microsoft.VisualStudio.Language.StandardClassification, Version=$(VSTarget).0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
Expand Down Expand Up @@ -211,9 +208,6 @@
<Reference Include="Microsoft.VisualStudio.VSHelp, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<EmbedInteropTypes>False</EmbedInteropTypes>
</Reference>
<Reference Include="Microsoft.VisualStudio.VsInteractiveWindow">
<HintPath>$(DevEnvDir)PrivateAssemblies\Microsoft.VisualStudio.VsInteractiveWindow.dll</HintPath>
</Reference>
<Reference Include="Microsoft.VisualStudio.WizardFramework, Version=$(VSTarget).0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
<Reference Include="System" />
<Reference Include="System.ComponentModel.Composition" />
Expand Down Expand Up @@ -267,6 +261,20 @@
</ItemGroup>
</Otherwise>
</Choose>
<Choose>
<When Condition="$(Dev14OrLater)">
<ItemGroup>
<Reference Include="Microsoft.VisualStudio.InteractiveWindow">
<HintPath>$(DevEnvDir)PrivateAssemblies\Microsoft.VisualStudio.InteractiveWindow.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="Microsoft.VisualStudio.VsInteractiveWindow">
<HintPath>$(DevEnvDir)PrivateAssemblies\Microsoft.VisualStudio.VsInteractiveWindow.dll</HintPath>
<Private>false</Private>
</Reference>
</ItemGroup>
</When>
</Choose>
<ItemGroup>
<Compile Include="..\Analysis\IEnumerableExtensions.cs">
<Link>IEnumerableExtensions.cs</Link>
Expand Down

0 comments on commit b78acaa

Please sign in to comment.