|
7 | 7 | <ExcludeFromSourceBuild>true</ExcludeFromSourceBuild>
|
8 | 8 | <SuppressFinalPackageVersion>true</SuppressFinalPackageVersion>
|
9 | 9 |
|
10 |
| - <!-- Using an explicit nuspec file since NuGet Pack target currently doesn't support including dependencies in tools packages --> |
| 10 | + <!-- NuGet: Using an explicit nuspec file to customize TFM directory --> |
| 11 | + <IsPackable>true</IsPackable> |
| 12 | + <NuspecFile>$(MSBuildProjectName).nuspec</NuspecFile> |
| 13 | + <NuspecBasePath>$(OutputPath)</NuspecBasePath> |
| 14 | + |
11 | 15 | <PackageDescription>MSBuild tasks providing TFVC repository information.</PackageDescription>
|
12 | 16 | <PackageTags>MSBuild Tasks TFVC source link</PackageTags>
|
13 | 17 | <DevelopmentDependency>true</DevelopmentDependency>
|
14 | 18 | <SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking>
|
15 |
| - |
16 |
| - <TargetsForTfmSpecificContentInPackage>$(TargetsForTfmSpecificContentInPackage);_GetTfmSpecificFilesToPackage</TargetsForTfmSpecificContentInPackage> |
17 | 19 | </PropertyGroup>
|
| 20 | + <ItemGroup> |
| 21 | + <PackageReference Include="Microsoft.Build" Version="$(MicrosoftBuildVersion)" PrivateAssets="all" /> |
| 22 | + <PackageReference Include="Microsoft.Build.Tasks.Core" Version="$(MicrosoftBuildTasksCore)" PrivateAssets="all" /> |
| 23 | + </ItemGroup> |
18 | 24 | <ItemGroup>
|
19 | 25 | <Compile Include="..\Common\NullableAttributes.cs" Link="Common\NullableAttributes.cs" />
|
20 | 26 | <Compile Include="..\Common\PathUtilities.cs" Link="Common\PathUtilities.cs" />
|
|
25 | 31 | <PackageReference Include="Microsoft.Build.Tasks.Core" Version="$(MicrosoftBuildTasksCore)" />
|
26 | 32 | <PackageReference Include="Microsoft.TeamFoundationServer.ExtendedClient" Version="$(MicrosoftTeamFoundationServerExtendedClientVersion)" />
|
27 | 33 | </ItemGroup>
|
28 |
| - |
29 |
| - <Target Name="_GetTfmSpecificFilesToPackage"> |
30 |
| - <ItemGroup> |
31 |
| - <TfmSpecificPackageFile Include="$(TargetDir)Microsoft.TeamFoundation.Client.dll" PackagePath="tools\$(TargetFramework)" /> |
32 |
| - <TfmSpecificPackageFile Include="$(TargetDir)Microsoft.TeamFoundation.Common.dll" PackagePath="tools\$(TargetFramework)" /> |
33 |
| - <TfmSpecificPackageFile Include="$(TargetDir)Microsoft.TeamFoundation.Core.WebApi.dll" PackagePath="tools\$(TargetFramework)" /> |
34 |
| - <TfmSpecificPackageFile Include="$(TargetDir)Microsoft.TeamFoundation.VersionControl.Client.dll" PackagePath="tools\$(TargetFramework)" /> |
35 |
| - <TfmSpecificPackageFile Include="$(TargetDir)Microsoft.TeamFoundation.VersionControl.Common.dll" PackagePath="tools\$(TargetFramework)" /> |
36 |
| - <TfmSpecificPackageFile Include="$(TargetDir)Microsoft.VisualStudio.Services.Client.Interactive.dll" PackagePath="tools\$(TargetFramework)" /> |
37 |
| - <TfmSpecificPackageFile Include="$(TargetDir)Microsoft.VisualStudio.Services.Common.dll" PackagePath="tools\$(TargetFramework)" /> |
38 |
| - <TfmSpecificPackageFile Include="$(TargetDir)Microsoft.VisualStudio.Services.WebApi.dll" PackagePath="tools\$(TargetFramework)" /> |
39 |
| - </ItemGroup> |
40 |
| - </Target> |
41 |
| - |
42 |
| - <Import Project="$(RepositoryEngineeringDir)BuildTask.targets" /> |
43 | 34 | </Project>
|
0 commit comments