Skip to content

Commit

Permalink
Update excluded dlls
Browse files Browse the repository at this point in the history
  • Loading branch information
cyanfish committed Aug 24, 2024
1 parent d146663 commit 448437e
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions NAPS2.Tools/Project/Packaging/PackageCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,19 +84,22 @@ private static void PopulatePackageInfo(string buildPath, Platform platform, Pac
string[] excludeDlls =
{
// DLLs that are unneeded but missed by the built-in trimming
"D3D",
"Microsoft.DiaSymReader",
"Microsoft.VisualBasic",
"mscordaccore",
"PenImc",
"System.Data",
"System.Private.DataContract",
"System.Windows.Forms.Design",
// For WPF
"D3D",
"System.Windows.Input",
"System.Xaml",
"UIAutomation",
"WindowsBase",
"wpfgfx"
"wpfgfx",
// For debugging
"createdump",
"Microsoft.DiaSymReader",
"mscordaccore",
"mscordbi",
};

var dir = new DirectoryInfo(buildPath);
Expand Down

0 comments on commit 448437e

Please sign in to comment.