20 lines
727 B
XML
20 lines
727 B
XML
<Project>
|
|
<Target Name="PackGlobalTool" Condition="'$(PackageType)' == 'DotnetTool'" BeforeTargets="GenerateNuspec" DependsOnTargets="Publish">
|
|
<PropertyGroup>
|
|
<NuspecProperties>
|
|
publishDir=$(PublishDir);
|
|
version=$(PackageVersion);
|
|
licenseUrl=$(PackageLicenseUrl);
|
|
projectUrl=$(PackageProjectUrl);
|
|
iconUrl=$(PackageIconUrl);
|
|
serviceable=$(Serviceable);
|
|
copyright=$(Copyright);
|
|
description=$(Description);
|
|
repositoryUrl=$(RepositoryUrl);
|
|
targetframework=$(TargetFramework);
|
|
MicrosoftNETCorePlatformsPackageVersion=$(MicrosoftNETCorePlatformsPackageVersion);
|
|
</NuspecProperties>
|
|
</PropertyGroup>
|
|
</Target>
|
|
</Project>
|