Skip to content

Commit

Permalink
Don't put DnsClient.dll and .xml in the release zip file.
Browse files Browse the repository at this point in the history
  • Loading branch information
rstam committed Dec 12, 2017
1 parent 6a4e00a commit aff60c6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,8 @@ Task("PackageReleaseZipFile")

var stagingNet45Directory = stagingDirectory.Combine("net45");
CopyDirectory(artifactsBinNet45Directory, stagingNet45Directory);
DeleteFile(stagingNet45Directory.CombineWithFilePath("DnsClient.dll"));
DeleteFile(stagingNet45Directory.CombineWithFilePath("DnsClient.xml"));

var stagingNetStandard15Directory = stagingDirectory.Combine("netstandard1.5");
CopyDirectory(artifactsBinNetStandard15Directory, stagingNetStandard15Directory);
Expand Down

0 comments on commit aff60c6

Please sign in to comment.