Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[net7.0] Clean up the files in the xml-docs artifacts #11792

Merged
merged 8 commits into from
Dec 5, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Filter DesignTools assembly
jfversluis authored and github-actions committed Dec 1, 2022

Verified

This commit was signed with the committer’s verified signature.
rouault Even Rouault
commit 817281081c80927f5f8c305816df914387f44cf4
6 changes: 2 additions & 4 deletions eng/cake/dotnet.cake
Original file line number Diff line number Diff line change
@@ -329,12 +329,10 @@ Task("dotnet-pack-docs")
{
var d = $"{tempDir}/{nupkg.GetFilename()}";

if (d.Contains(".DesignTools."))
continue;

Unzip(nupkg, d);
DeleteFiles($"{d}/**/*.pri");
DeleteFiles($"{d}/**/*.aar");
DeleteFiles($"{d}/**/*.DesignTools.*");
CopyFiles($"{d}/ref/**/net?.?/**/*.dll", $"{destDir}");
CopyFiles($"{d}/ref/**/net?.?/**/*.xml", $"{destDir}");
}
@@ -354,7 +352,7 @@ Task("dotnet-pack-docs")
}
}

//CleanDirectories(tempDir);
CleanDirectories(tempDir);
});

Task("dotnet-pack")