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")
245
245
246
246
var stagingNet452Directory = stagingDirectory . Combine ( "net452" ) ;
247
247
CopyDirectory ( artifactsBinNet452Directory , stagingNet452Directory ) ;
248
- DeleteFile ( stagingNet452Directory . CombineWithFilePath ( "DnsClient.dll" ) ) ;
249
- DeleteFile ( stagingNet452Directory . CombineWithFilePath ( "DnsClient.xml" ) ) ;
248
+ DeleteFiles ( $ "{ stagingNet452Directory } /DnsClient.*") ;
250
249
251
250
var stagingNetStandard15Directory = stagingDirectory . Combine ( "netstandard1.5" ) ;
252
251
CopyDirectory ( artifactsBinNetStandard15Directory , stagingNetStandard15Directory ) ;
@@ -260,7 +259,7 @@ Task("PackageReleaseZipFile")
260
259
var stagingLicenseFile = stagingDirectory . CombineWithFilePath ( "license.txt" ) ;
261
260
CopyFile ( licenseFile , stagingLicenseFile ) ;
262
261
263
- var releaseNotesFileName = "Release Notes v" + gitVersion . LegacySemVer + ".md" ;
262
+ var releaseNotesFileName = "Release Notes v" + gitVersion . MajorMinorPatch + ".md" ;
264
263
var releaseNotesDirectory = solutionDirectory . Combine ( "Release Notes" ) ;
265
264
var releaseNotesFile = releaseNotesDirectory . CombineWithFilePath ( releaseNotesFileName ) ;
266
265
var stagingDirectoryReleaseNotesFile = stagingDirectory . CombineWithFilePath ( releaseNotesFileName ) ;
You can’t perform that action at this time.
0 commit comments