Updated to use 1.0.2 version of PackagePublisher

This commit is contained in:
Kiran Challa 2017-04-12 21:30:59 -07:00
parent acc454bc36
commit e08e63a033
2 changed files with 4 additions and 4 deletions

View File

@ -77,7 +77,7 @@
Condition="'$(PublishPackages)'=='true' AND '@(RepositoryNupkgs)' != ''" />
<Exec
Command="$(PackagePublisherPath) -d $(RepositoryArtifactsDirectory) -f $(NuGetPublishVolatileFeed)"
Command="$(DotNetPath) $(PackagePublisherPath) -d $(RepositoryArtifactsDirectory) -f $(NuGetPublishVolatileFeed)"
Condition="'$(PublishPackages)'=='true' AND '@(RepositoryNupkgs)' != ''" />
<Message Text="============ Done building $(RepositoryToBuild) ============" Importance="High" />

View File

@ -19,7 +19,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="PackagePublisher" Version="1.0.1-*" />
<PackageReference Include="PackagePublisher" Version="1.0.2-*" />
</ItemGroup>
<Import
@ -109,8 +109,8 @@
<PackagePublisherPath Include="%(PackageDefinitions.ResolvedPath)" Condition="'%(PackageDefinitions.Name)'=='PackagePublisher'" />
</ItemGroup>
<PropertyGroup>
<_PackagePublisherPath>@(PackagePublisherPath)\PackagePublisher.exe</_PackagePublisherPath>
<PropertyGroup>
<_PackagePublisherPath>@(PackagePublisherPath)\PackagePublisher.dll</_PackagePublisherPath>
</PropertyGroup>
</Target>