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>
|
<NuspecPath>$(RepositoryRoot)nuget\AspNetCore.nuspec</NuspecPath>
|
||||||
</PropertyGroup>
|
</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>
|
||||||
|
|
||||||
<Target Name="_ResolvePackagePublisherPath" DependsOnTargets="RunResolvePackageDependencies">
|
<Target Name="_ResolvePackagePublisherPath" DependsOnTargets="RunResolvePackageDependencies">
|
||||||
|
|
@ -56,6 +56,6 @@
|
||||||
DependsOnTargets="_ResolvePackagePublisherPath"
|
DependsOnTargets="_ResolvePackagePublisherPath"
|
||||||
Condition="'$(PublishPackage)'=='true'">
|
Condition="'$(PublishPackage)'=='true'">
|
||||||
|
|
||||||
<Exec Command=""$(PackagePublisherPath)" -d "$(ArtifactsDir) " -f $(PublishFeed)" />
|
<Exec Command=""$(PackagePublisherPath)" -d "$(ArtifactsDir)\build" -f $(PublishFeed)" />
|
||||||
</Target>
|
</Target>
|
||||||
</Project>
|
</Project>
|
||||||
Loading…
Reference in New Issue