File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1+ # .NET Driver Version 2.8.0 Release Notes
2+
3+ This file is a place holder.
Original file line number Diff line number Diff line change @@ -245,8 +245,7 @@ Task("PackageReleaseZipFile")
245245
246246 var stagingNet452Directory = stagingDirectory . Combine ( "net452" ) ;
247247 CopyDirectory ( artifactsBinNet452Directory , stagingNet452Directory ) ;
248- DeleteFile ( stagingNet452Directory . CombineWithFilePath ( "DnsClient.dll" ) ) ;
249- DeleteFile ( stagingNet452Directory . CombineWithFilePath ( "DnsClient.xml" ) ) ;
248+ DeleteFiles ( $ "{ stagingNet452Directory } /DnsClient.*") ;
250249
251250 var stagingNetStandard15Directory = stagingDirectory . Combine ( "netstandard1.5" ) ;
252251 CopyDirectory ( artifactsBinNetStandard15Directory , stagingNetStandard15Directory ) ;
@@ -260,7 +259,7 @@ Task("PackageReleaseZipFile")
260259 var stagingLicenseFile = stagingDirectory . CombineWithFilePath ( "license.txt" ) ;
261260 CopyFile ( licenseFile , stagingLicenseFile ) ;
262261
263- var releaseNotesFileName = "Release Notes v" + gitVersion . LegacySemVer + ".md" ;
262+ var releaseNotesFileName = "Release Notes v" + gitVersion . MajorMinorPatch + ".md" ;
264263 var releaseNotesDirectory = solutionDirectory . Combine ( "Release Notes" ) ;
265264 var releaseNotesFile = releaseNotesDirectory . CombineWithFilePath ( releaseNotesFileName ) ;
266265 var stagingDirectoryReleaseNotesFile = stagingDirectory . CombineWithFilePath ( releaseNotesFileName ) ;
You can’t perform that action at this time.
0 commit comments