Fix nuget output path (#107)

Fix nuget output path

* Update theoutput path of nuget package
This commit is contained in:
jhkimnew 2017-06-08 10:42:32 -07:00 committed by GitHub
parent bce531f61a
commit fc54fef0bf
1 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@
<NuspecPath>$(RepositoryRoot)nuget\AspNetCore.nuspec</NuspecPath>
</PropertyGroup>
<Exec Command="&quot;$(NuGetExePath)&quot; pack &quot;$(NuspecPath)&quot; -OutputDirectory &quot;$(ArtifactsDir) &quot; -prop Version=1.0.0-$(BuildNumber)" />
<Exec Command="&quot;$(NuGetExePath)&quot; pack &quot;$(NuspecPath)&quot; -OutputDirectory &quot;$(ArtifactsDir)\build&quot; -prop Version=1.0.0-$(BuildNumber)" />
</Target>
<Target Name="_ResolvePackagePublisherPath" DependsOnTargets="RunResolvePackageDependencies">
@ -56,6 +56,6 @@
DependsOnTargets="_ResolvePackagePublisherPath"
Condition="'$(PublishPackage)'=='true'">
<Exec Command="&quot;$(PackagePublisherPath)&quot; -d &quot;$(ArtifactsDir) &quot; -f $(PublishFeed)" />
<Exec Command="&quot;$(PackagePublisherPath)&quot; -d &quot;$(ArtifactsDir)\build&quot; -f $(PublishFeed)" />
</Target>
</Project>