Skip to content

Commit 48763cf

Browse files
authored
Fix roslyn and nuget client output problems (#310)
* Define the order of GatherBuiltPackages and Package targets and fix output path for nuget-client. * Remove "Build" from WriteVersions AfterTargets and fixup GatherBuiltPackages
1 parent 54b16f0 commit 48763cf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

repos/dir.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@
166166
</Target>
167167

168168
<Target Name="WriteVersions"
169-
AfterTargets="Build;CopyPackage"
169+
AfterTargets="CopyPackage"
170170
DependsOnTargets="GatherBuiltPackages">
171171
<WriteVersionsFile NugetPackages="@(_BuiltPackages)"
172172
OutputPath="$(VersionFileLocation)"

repos/nuget-client.proj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))/dir.props" />
44
<PropertyGroup>
5-
<PackagesOutput>$(ProjectDirectory)Nupkgs/</PackagesOutput>
5+
<PackagesOutput>$(ProjectDirectory)artifacts/nupkgs/</PackagesOutput>
66
<NuGetCoreSourceDirectory>$(ProjectDirectory)src/NuGet.Core/</NuGetCoreSourceDirectory>
77
<ToolsDirectory>$(ProjectDirectory)cli/</ToolsDirectory>
88
<NuGetKeyFilePath>$(KeysDir)NuGet.Client.snk</NuGetKeyFilePath>

0 commit comments

Comments
 (0)