Merged PR 592159: Upgrade Microsoft.ManifestGenerator to 0.1.3

Upgrade Microsoft.ManifestGenerator to 0.1.3
This commit is contained in:
Rijul Luman 2021-01-08 02:26:52 +00:00
Родитель f2e8ce2655
Коммит 3021feb99c
6 изменённых файлов: 31 добавлений и 4 удалений

Просмотреть файл

@ -43,6 +43,10 @@ namespace Scheduler {
importFrom("Microsoft.ManifestGenerator").pkg,
importFrom("Newtonsoft.Json").pkg,
...importFrom("Sdk.Selfhost.RocksDbSharp").pkgs,
...addIf(
BuildXLSdk.isFullFramework,
NetFx.Netstandard.dll
)
],
internalsVisibleTo: [
"bxlanalyzer",

Просмотреть файл

@ -50,6 +50,10 @@ export namespace DropDaemon {
// because of the way that runtime assemblies are loaded into memory.
importFrom("Microsoft.VisualStudio.Services.BlobStore.Client.Cache").pkg,
...BuildXLSdk.systemThreadingTasksDataflowPackageReference,
...addIf(
BuildXLSdk.isFullFramework,
NetFx.Netstandard.dll
)
],
internalsVisibleTo: [
"Test.Tool.DropDaemon",

Просмотреть файл

@ -14,6 +14,10 @@ namespace Ipc {
importFrom("BuildXL.Cache.ContentStore").Hashing.dll,
importFrom("Microsoft.ManifestGenerator").pkg,
...BuildXLSdk.systemThreadingTasksDataflowPackageReference,
...addIf(
BuildXLSdk.isFullFramework,
NetFx.Netstandard.dll
)
],
internalsVisibleTo: [
"Test.BuildXL.Ipc",

Просмотреть файл

@ -11,8 +11,13 @@ namespace Ipc {
importFrom("BuildXL.Utilities").Ipc.dll,
importFrom("BuildXL.Utilities").Storage.dll,
importFrom("BuildXL.Cache.ContentStore").Hashing.dll,
importFrom("Microsoft.Bcl.HashCode").pkg,
importFrom("Microsoft.ManifestGenerator").pkg,
...BuildXLSdk.systemThreadingTasksDataflowPackageReference,
...addIf(
BuildXLSdk.isFullFramework,
NetFx.Netstandard.dll
)
],
});
}

Просмотреть файл

@ -982,6 +982,15 @@
}
}
},
{
"Component": {
"Type": "NuGet",
"NuGet": {
"Name": "Microsoft.Bcl.HashCode",
"Version": "1.1.0"
}
}
},
{
"Component": {
"Type": "NuGet",
@ -1392,7 +1401,7 @@
"Type": "NuGet",
"NuGet": {
"Name": "Microsoft.ManifestGenerator",
"Version": "0.1.0"
"Version": "0.1.3"
}
}
},
@ -1401,7 +1410,7 @@
"Type": "NuGet",
"NuGet": {
"Name": "Microsoft.ManifestInterface",
"Version": "0.0.1"
"Version": "0.0.2"
}
}
},

Просмотреть файл

@ -388,8 +388,9 @@ config({
{ id: "Microsoft.Azure.Management.Monitor", version: "0.25.0-preview" },
// Build Manifest generation and validation packages
{ id: "Microsoft.ManifestInterface", version: "0.0.1"},
{ id: "Microsoft.ManifestGenerator", version: "0.1.0", dependentPackageIdsToIgnore: ["BuildXL.Utilities", "Newtonsoft.Json"]},
{ id: "Microsoft.Bcl.HashCode", version: "1.1.0"},
{ id: "Microsoft.ManifestInterface", version: "0.0.2"},
{ id: "Microsoft.ManifestGenerator", version: "0.1.3", dependentPackageIdsToIgnore: ["Newtonsoft.Json"]},
// FsCheck
{ id: "FsCheck", version: "2.14.3" },