Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 30f0cfd

Browse files
committed
Might as well set these versions explicitly
1 parent c993f45 commit 30f0cfd

File tree

2 files changed

+14
-12
lines changed

2 files changed

+14
-12
lines changed

src/GitHub.TeamFoundation.14/GitHub.TeamFoundation.14.csproj

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
5-
<VisualStudioVersion>14.0</VisualStudioVersion>
5+
<MinimumVisualStudioVersion>$(MSBuildToolsVersion)</MinimumVisualStudioVersion>
6+
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">$(MSBuildToolsVersion)</VisualStudioVersion>
67
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
78
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
89
<ProjectGuid>{161DBF01-1DBF-4B00-8551-C5C00F26720D}</ProjectGuid>
@@ -40,23 +41,23 @@
4041
</PropertyGroup>
4142
<ItemGroup>
4243
<Reference Include="Microsoft.TeamFoundation.Common">
43-
<HintPath>..\..\lib\$(VisualStudioVersion)\Microsoft.TeamFoundation.Common.dll</HintPath>
44+
<HintPath>..\..\lib\14.0\Microsoft.TeamFoundation.Common.dll</HintPath>
4445
<Private>False</Private>
4546
</Reference>
4647
<Reference Include="Microsoft.TeamFoundation.Client">
47-
<HintPath>..\..\lib\$(VisualStudioVersion)\Microsoft.TeamFoundation.Client.dll</HintPath>
48+
<HintPath>..\..\lib\14.0\Microsoft.TeamFoundation.Client.dll</HintPath>
4849
<Private>False</Private>
4950
</Reference>
5051
<Reference Include="Microsoft.TeamFoundation.Controls">
51-
<HintPath>..\..\lib\$(VisualStudioVersion)\Microsoft.TeamFoundation.Controls.dll</HintPath>
52+
<HintPath>..\..\lib\14.0\Microsoft.TeamFoundation.Controls.dll</HintPath>
5253
<Private>False</Private>
5354
</Reference>
5455
<Reference Include="Microsoft.TeamFoundation.Git.Controls">
55-
<HintPath>..\..\lib\$(VisualStudioVersion)\Microsoft.TeamFoundation.Git.Controls.dll</HintPath>
56+
<HintPath>..\..\lib\14.0\Microsoft.TeamFoundation.Git.Controls.dll</HintPath>
5657
<Private>False</Private>
5758
</Reference>
5859
<Reference Include="Microsoft.TeamFoundation.Git.Provider">
59-
<HintPath>..\..\lib\$(VisualStudioVersion)\Microsoft.TeamFoundation.Git.Provider.dll</HintPath>
60+
<HintPath>..\..\lib\14.0\Microsoft.TeamFoundation.Git.Provider.dll</HintPath>
6061
<Private>False</Private>
6162
</Reference>
6263
<Reference Include="Microsoft.VisualStudio.ComponentModelHost, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />

src/GitHub.TeamFoundation.15/GitHub.TeamFoundation.15.csproj

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
5-
<VisualStudioVersion>15.0</VisualStudioVersion>
5+
<MinimumVisualStudioVersion>$(MSBuildToolsVersion)</MinimumVisualStudioVersion>
6+
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">$(MSBuildToolsVersion)</VisualStudioVersion>
67
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
78
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
89
<ProjectGuid>{161DBF01-1DBF-4B00-8551-C5C00F26720E}</ProjectGuid>
@@ -40,23 +41,23 @@
4041
</PropertyGroup>
4142
<ItemGroup>
4243
<Reference Include="Microsoft.TeamFoundation.Common">
43-
<HintPath>..\..\lib\$(VisualStudioVersion)\Microsoft.TeamFoundation.Common.dll</HintPath>
44+
<HintPath>..\..\lib\15.0\Microsoft.TeamFoundation.Common.dll</HintPath>
4445
<Private>False</Private>
4546
</Reference>
4647
<Reference Include="Microsoft.TeamFoundation.Client">
47-
<HintPath>..\..\lib\$(VisualStudioVersion)\Microsoft.TeamFoundation.Client.dll</HintPath>
48+
<HintPath>..\..\lib\15.0\Microsoft.TeamFoundation.Client.dll</HintPath>
4849
<Private>False</Private>
4950
</Reference>
5051
<Reference Include="Microsoft.TeamFoundation.Controls">
51-
<HintPath>..\..\lib\$(VisualStudioVersion)\Microsoft.TeamFoundation.Controls.dll</HintPath>
52+
<HintPath>..\..\lib\15.0\Microsoft.TeamFoundation.Controls.dll</HintPath>
5253
<Private>False</Private>
5354
</Reference>
5455
<Reference Include="Microsoft.TeamFoundation.Git.Controls">
55-
<HintPath>..\..\lib\$(VisualStudioVersion)\Microsoft.TeamFoundation.Git.Controls.dll</HintPath>
56+
<HintPath>..\..\lib\15.0\Microsoft.TeamFoundation.Git.Controls.dll</HintPath>
5657
<Private>False</Private>
5758
</Reference>
5859
<Reference Include="Microsoft.TeamFoundation.Git.Provider">
59-
<HintPath>..\..\lib\$(VisualStudioVersion)\Microsoft.TeamFoundation.Git.Provider.dll</HintPath>
60+
<HintPath>..\..\lib\15.0\Microsoft.TeamFoundation.Git.Provider.dll</HintPath>
6061
<Private>False</Private>
6162
</Reference>
6263
<Reference Include="Microsoft.VisualStudio.ComponentModelHost, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />

0 commit comments

Comments
 (0)