Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ Copyright (c) .NET Foundation. All rights reserved.
***********************************************************************************************
-->
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- This UsingTask is in the PackTool.props because there is usage of it in other areas of the product
and on public GitHub: https://github.com/search?q=path%3A*.props+OR+path%3A*.targets+AND+%28NOT+path%3A*%2FMicrosoft.NET.PackTool.targets%29+AND+%28NOT+path%3A*%2FMicrosoft.NET.Publish.targets%29+GetNuGetShortFolderName&amp;type=code -->
<UsingTask TaskName="Microsoft.NET.Build.Tasks.GetNuGetShortFolderName"
AssemblyFile="$(MicrosoftNETBuildTasksAssembly)" />

<PropertyGroup>
<TargetsForTfmSpecificContentInPackage>$(TargetsForTfmSpecificContentInPackage);_PackProjectToolValidation</TargetsForTfmSpecificContentInPackage>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ NOTE: This file is imported from the following contexts, so be aware when writin
<UsingTask TaskName="Microsoft.NET.Build.Tasks.GenerateShims"
AssemblyFile="$(MicrosoftNETBuildTasksAssembly)" />
<UsingTask TaskName="Microsoft.NET.Build.Tasks.GetEmbeddedApphostPaths"
AssemblyFile="$(MicrosoftNETBuildTasksAssembly)" />
<UsingTask TaskName="Microsoft.NET.Build.Tasks.GetNuGetShortFolderName"
AssemblyFile="$(MicrosoftNETBuildTasksAssembly)" />
AssemblyFile="$(MicrosoftNETBuildTasksAssembly)" />
<UsingTask TaskName="AddPackageType"
AssemblyFile="$(MicrosoftNETBuildTasksAssembly)" />

<PropertyGroup>
<!-- tools are specially-formatted packages, so we tell nuget Pack to not even try to include build output -->
Expand Down Expand Up @@ -351,8 +351,6 @@ NOTE: This file is imported from the following contexts, so be aware when writin
</ItemGroup>
</Target>

<UsingTask TaskName="AddPackageType" AssemblyFile="$(MicrosoftNETBuildTasksAssembly)" />

<Target Name="SetDotnetToolPackageType">

<PropertyGroup>
Expand Down
Loading