1 write to _target
Microsoft.NET.HostModel (1)
Bundle\Bundler.cs (1)
60_target = new TargetInfo(targetOS, targetArch, targetFrameworkVersion);
16 references to _target
Microsoft.NET.HostModel (16)
Bundle\Bundler.cs (16)
62if (_target.BundleMajorVersion < 6 && 68appAssemblyName ??= _target.GetAssemblyName(hostName); 73BundleManifest = new Manifest(_target.BundleMajorVersion, netcoreapp3CompatMode: options.HasFlag(BundleOptions.BundleAllContent)); 74_options = _target.DefaultOptions | options; 132long misalignment = (bundle.Position % _target.AssemblyAlignment); 136long padding = _target.AssemblyAlignment - misalignment; 168return !_options.HasFlag(BundleOptions.BundleNativeBinaries) || _target.ShouldExclude(relativePath); 227bool isNativeBinary = _target.IsWindows ? isPE : _target.IsNativeBinary(fileSpec.SourcePath); 292_tracer.Log($"Target Runtime: {_target}"); 311bundledFilesSize += _target.AssemblyAlignment; 329if (_target.IsOSX && _macosCodesign) 349if (_target.IsOSX) 367FileType targetType = _target.TargetSpecificFileType(type); 369FileEntry entry = BundleManifest.AddEntry(targetType, file, relativePath, startOffset, compressedSize, _target.BundleMajorVersion); 389if (_target.IsOSX && machFile is not null)