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

Stop ngening compat-only DLLs in subfolders #11181

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions src/Package/MSBuild.VSSetup.Arm64/files.arm64.swr
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ folder InstallDir:\MSBuild\Current\Bin\arm64
file source=$(Arm64BinPath)MSBuild.exe.config

file source=$(FrameworkBinPath)x64\Microsoft.Build.Framework.tlb
file source=$(Arm64BinPath)Microsoft.Build.dll vs.file.ngenArchitecture=arm64
file source=$(Arm64BinPath)Microsoft.Build.Tasks.Core.dll vs.file.ngenArchitecture=arm64
file source=$(Arm64BinPath)Microsoft.Build.dll
file source=$(Arm64BinPath)Microsoft.Build.Tasks.Core.dll
file source=$(Arm64BinPath)Microsoft.Common.CurrentVersion.targets
file source=$(Arm64BinPath)Microsoft.Common.CrossTargeting.targets
file source=$(Arm64BinPath)Microsoft.Common.overridetasks
Expand Down
38 changes: 19 additions & 19 deletions src/Package/MSBuild.VSSetup/files.swr
Original file line number Diff line number Diff line change
Expand Up @@ -183,28 +183,28 @@ folder InstallDir:\MSBuild\Current\Bin\amd64
file source=$(X64BinPath)MSBuild.exe.config
file source=$(TaskHostX64BinPath)MSBuildTaskHost.exe.config

file source=$(X86BinPath)Microsoft.Build.dll vs.file.ngenArchitecture=all
file source=$(X86BinPath)Microsoft.Build.Framework.dll vs.file.ngenArchitecture=all
file source=$(X86BinPath)Microsoft.Build.dll
file source=$(X86BinPath)Microsoft.Build.Framework.dll
file source=$(FrameworkBinPath)x64\Microsoft.Build.Framework.tlb
file source=$(X86BinPath)Microsoft.Build.Tasks.Core.dll vs.file.ngenArchitecture=all
file source=$(X86BinPath)Microsoft.Build.Utilities.Core.dll vs.file.ngenArchitecture=all
file source=$(X86BinPath)System.Buffers.dll vs.file.ngenArchitecture=all
file source=$(X86BinPath)System.Memory.dll vs.file.ngenArchitecture=all
file source=$(X86BinPath)System.Reflection.Metadata.dll vs.file.ngenArchitecture=all
file source=$(X86BinPath)System.Reflection.MetadataLoadContext.dll vs.file.ngenArchitecture=all
file source=$(X86BinPath)System.Text.Json.dll vs.file.ngenArchitecture=all
file source=$(X86BinPath)Microsoft.Bcl.AsyncInterfaces.dll vs.file.ngenArchitecture=all
file source=$(X86BinPath)Microsoft.Build.Tasks.Core.dll
file source=$(X86BinPath)Microsoft.Build.Utilities.Core.dll
file source=$(X86BinPath)System.Buffers.dll
file source=$(X86BinPath)System.Memory.dll
file source=$(X86BinPath)System.Reflection.Metadata.dll
file source=$(X86BinPath)System.Reflection.MetadataLoadContext.dll
file source=$(X86BinPath)System.Text.Json.dll
file source=$(X86BinPath)Microsoft.Bcl.AsyncInterfaces.dll
file source=$(X86BinPath)Microsoft.IO.Redist.dll vs.file.ngenArchitecture=all
file source=$(X86BinPath)System.Text.Encodings.Web.dll vs.file.ngenArchitecture=all
file source=$(X86BinPath)System.Threading.Tasks.Extensions.dll vs.file.ngenArchitecture=all
file source=$(X86BinPath)System.Text.Encodings.Web.dll
file source=$(X86BinPath)System.Threading.Tasks.Extensions.dll
file source=$(X86BinPath)System.ValueTuple.dll
file source=$(X86BinPath)System.Numerics.Vectors.dll vs.file.ngenArchitecture=all
file source=$(X86BinPath)System.Resources.Extensions.dll vs.file.ngenArchitecture=all
file source=$(X86BinPath)System.Runtime.CompilerServices.Unsafe.dll vs.file.ngenArchitecture=all
file source=$(X86BinPath)System.Threading.Tasks.Dataflow.dll vs.file.ngenArchitecture=all
file source=$(X86BinPath)System.Collections.Immutable.dll vs.file.ngenArchitecture=all
file source=$(X86BinPath)Microsoft.NET.StringTools.dll vs.file.ngenArchitecture=all
file source=$(TaskHostBinPath)Microsoft.NET.StringTools.net35.dll vs.file.ngenArchitecture=all
file source=$(X86BinPath)System.Numerics.Vectors.dll
file source=$(X86BinPath)System.Resources.Extensions.dll
file source=$(X86BinPath)System.Runtime.CompilerServices.Unsafe.dll
file source=$(X86BinPath)System.Threading.Tasks.Dataflow.dll
file source=$(X86BinPath)System.Collections.Immutable.dll
file source=$(X86BinPath)Microsoft.NET.StringTools.dll
file source=$(TaskHostBinPath)Microsoft.NET.StringTools.net35.dll
file source=$(X86BinPath)Microsoft.Common.CurrentVersion.targets
file source=$(X86BinPath)Microsoft.Common.CrossTargeting.targets
file source=$(X86BinPath)Microsoft.Common.overridetasks
Expand Down
Loading