1 instantiation of FileRow
Microsoft.DotNet.Build.Tasks.Workloads (1)
Msi\FileRow.wix.cs (1)
92return new FileRow
6 references to FileRow
Microsoft.DotNet.Build.Tasks.Workloads (5)
Msi\FileRow.wix.cs (2)
86/// Creates a new <see cref="FileRow"/> instance from the specified <see cref="Record"/>. 90public static FileRow Create(Record fileRecord)
Msi\MsiUtils.wix.cs (3)
47public static IEnumerable<FileRow> GetAllFiles(string packagePath) 52List<FileRow> files = new(); 57files.Add(FileRow.Create(fileRecord));
Microsoft.DotNet.Build.Tasks.Workloads.Tests (1)
MsiTests.cs (1)
137FileRow fileRow = MsiUtils.GetAllFiles(msiPath).FirstOrDefault();