File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 3
3
<PropertyGroup >
4
4
<RepoRoot >$(MSBuildThisFileDirectory)</RepoRoot >
5
5
<Configuration Condition =" '$(Configuration)' == '' " >Debug</Configuration >
6
- <PackageOutputPath >$(MSBuildThisFileDirectory)build \$(Configuration)\</PackageOutputPath >
6
+ <PackageOutputPath >$(MSBuildThisFileDirectory)bin \$(Configuration)\Packages \</PackageOutputPath >
7
7
</PropertyGroup >
8
8
9
9
<ItemGroup >
10
10
<PackageReference Include =" Nerdbank.GitVersioning" Version =" 2.3.38" PrivateAssets =" all" />
11
11
</ItemGroup >
12
- </Project >
12
+ </Project >
Original file line number Diff line number Diff line change 21
21
- task : CopyFiles@2
22
22
displayName : Collect packages
23
23
inputs :
24
- SourceFolder : build \$(BuildConfiguration)
24
+ SourceFolder : bin \$(BuildConfiguration)\Packages
25
25
Contents : ' *.nupkg'
26
26
TargetFolder : $(Build.ArtifactStagingDirectory)\Packages
27
27
condition : eq(variables['BuildConfiguration'], 'Release')
Original file line number Diff line number Diff line change @@ -16,4 +16,4 @@ Write-Host -ForegroundColor Green Create Packages
16
16
& dotnet pack - c Release / p:PublicRelease= false
17
17
18
18
Write-Host - ForegroundColor Green Upload Packages
19
- & dotnet nuget push " $PSScriptRoot \..\build \Release\*.nupkg" - k $apiKey - s $source
19
+ & dotnet nuget push " $PSScriptRoot \..\bin \Release\Packages \*.nupkg" - k $apiKey - s $source
You can’t perform that action at this time.
0 commit comments