Fix nuget output path (#107)
Fix nuget output path * Update theoutput path of nuget package
This commit is contained in:
parent
bce531f61a
commit
fc54fef0bf
|
|
@ -39,7 +39,7 @@
|
|||
<NuspecPath>$(RepositoryRoot)nuget\AspNetCore.nuspec</NuspecPath>
|
||||
</PropertyGroup>
|
||||
|
||||
<Exec Command=""$(NuGetExePath)" pack "$(NuspecPath)" -OutputDirectory "$(ArtifactsDir) " -prop Version=1.0.0-$(BuildNumber)" />
|
||||
<Exec Command=""$(NuGetExePath)" pack "$(NuspecPath)" -OutputDirectory "$(ArtifactsDir)\build" -prop Version=1.0.0-$(BuildNumber)" />
|
||||
</Target>
|
||||
|
||||
<Target Name="_ResolvePackagePublisherPath" DependsOnTargets="RunResolvePackageDependencies">
|
||||
|
|
@ -56,6 +56,6 @@
|
|||
DependsOnTargets="_ResolvePackagePublisherPath"
|
||||
Condition="'$(PublishPackage)'=='true'">
|
||||
|
||||
<Exec Command=""$(PackagePublisherPath)" -d "$(ArtifactsDir) " -f $(PublishFeed)" />
|
||||
<Exec Command=""$(PackagePublisherPath)" -d "$(ArtifactsDir)\build" -f $(PublishFeed)" />
|
||||
</Target>
|
||||
</Project>
|
||||
Loading…
Reference in New Issue