File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -425,9 +425,7 @@ public override void Run(BuildContext context)
425
425
Configuration = context . BuildConfiguration ,
426
426
OutputDirectory = context . ArtifactsDirectory . FullPath ,
427
427
ArgumentCustomization = args => args . Append ( "--include-symbols" ) . Append ( "-p:SymbolPackageFormat=snupkg" ) ,
428
- MSBuildSettings = context . MsBuildSettingsPack ,
429
- NoBuild = true ,
430
- NoRestore = true
428
+ MSBuildSettings = context . MsBuildSettingsPack
431
429
} ;
432
430
433
431
foreach ( var project in context . AllPackableSrcProjects )
@@ -436,8 +434,7 @@ public override void Run(BuildContext context)
436
434
var settingsTemplate = new DotNetPackSettings
437
435
{
438
436
Configuration = context . BuildConfiguration ,
439
- OutputDirectory = context . ArtifactsDirectory . FullPath ,
440
- MSBuildSettings = context . MsBuildSettingsPack
437
+ OutputDirectory = context . ArtifactsDirectory . FullPath
441
438
} ;
442
439
context . DotNetPack ( context . TemplatesTestsProjectFile . FullPath , settingsTemplate ) ;
443
440
}
Original file line number Diff line number Diff line change 41
41
<VersionPrefix Condition =" '$(APPVEYOR_BUILD_NUMBER)' != '' " >$(VersionPrefix).$(APPVEYOR_BUILD_NUMBER)</VersionPrefix >
42
42
</PropertyGroup >
43
43
44
- <PropertyGroup Condition =" '$(VersionSuffix)' == '' " >
44
+ <PropertyGroup Condition =" '$(VersionSuffix)' == '' AND '$(APPVEYOR_BUILD_NUMBER)' == '' " >
45
45
<VersionSuffix >develop</VersionSuffix >
46
46
<VersionSuffix Condition =" '$(APPVEYOR_BUILD_NUMBER)' == '' AND '$(BDN_CI_BUILD)' != '' " >ci</VersionSuffix >
47
47
</PropertyGroup >
You can’t perform that action at this time.
0 commit comments