2019-03-29 01:14:25 +03:00
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
config({
// No orphan projects are owned by this configuration.
projects: [],
// Packages that define the build extent.
modules: [
...globR(d`Public/Src`, "module.config.dsc"),
...globR(d`Public/Sdk/UnitTests`, "module.config.dsc"),
...globR(d`Private/Wdg`, "module.config.dsc"),
...globR(d`Private/QTest`, "module.config.dsc"),
...globR(d`Private/InternalSdk`, "module.config.dsc"),
...globR(d`Private/Tools`, "module.config.dsc"),
...globR(d`Public/Sdk/SelfHost`, "module.config.dsc"),
2020-04-28 19:51:39 +03:00
// Internal only modules
...addIf(importFile(f`config.microsoftInternal.dsc`).isMicrosoftInternal,
...globR(d`Private/CloudTest`, "module.config.dsc")
),
2019-03-29 01:14:25 +03:00
],
frontEnd: {
enabledPolicyRules: [
"NoTransformers",
]
},
resolvers: [
// These are the new cleaned up Sdk's
{
kind: "DScript",
modules: [
f`Public/Sdk/Public/Prelude/package.config.dsc`, // Prelude cannot be named module because it is a v1 module
f`Public/Sdk/Public/Transformers/package.config.dsc`, // Transformers cannot be renamed yet because office relies on the filename
...globR(d`Public/Sdk`, "module.config.dsc"),
]
},
{
kind: "Nuget",
// This configuration pins people to a specific version of nuget
// The credential provider should be set by defining the env variable NUGET_CREDENTIALPROVIDERS_PATH. TODO: It can be alternatively pinned here,
// but when it fails to download (e.g. from a share) the build is aborted. Consider making the failure non-blocking.
configuration: {
toolUrl: "https://dist.nuget.org/win-x86-commandline/v4.9.4/NuGet.exe",
2020-08-19 00:51:58 +03:00
hash: "VSO0:17E8C8C0CDCCA3A6D1EE49836847148C4623ACEA5E6E36E10B691DA7FDC4C39200"
2019-03-29 01:14:25 +03:00
},
2019-05-08 00:20:29 +03:00
repositories: importFile(f`config.microsoftInternal.dsc`).isMicrosoftInternal
2019-03-29 01:14:25 +03:00
? {
2019-04-19 04:23:11 +03:00
"BuildXL.Selfhost": "https://pkgs.dev.azure.com/cloudbuild/_packaging/BuildXL.Selfhost/nuget/v3/index.json",
2019-05-08 00:20:29 +03:00
// Note: From a compliance point of view it is important that MicrosoftInternal has a single feed.
// If you need to consume packages make sure they are upstreamed in that feed.
2019-03-29 01:14:25 +03:00
}
: {
2019-08-02 03:56:42 +03:00
"buildxl-selfhost" : "https://pkgs.dev.azure.com/ms/BuildXL/_packaging/BuildXL.Selfhost/nuget/v3/index.json",
2019-03-29 01:14:25 +03:00
"nuget.org" : "http://api.nuget.org/v3/index.json",
"roslyn-tools" : "https://dotnet.myget.org/F/roslyn-tools/api/v3/index.json",
2019-05-08 00:20:29 +03:00
"msbuild" : "https://dotnet.myget.org/F/msbuild/api/v3/index.json",
2019-05-23 12:37:30 +03:00
"dotnet-core" : "https://dotnet.myget.org/F/dotnet-core/api/v3/index.json",
"dotnet-arcade" : "https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json",
2019-05-08 00:20:29 +03:00
},
2019-03-29 01:14:25 +03:00
packages: [
2019-09-17 00:51:51 +03:00
2020-02-07 03:10:16 +03:00
{ id: "NLog", version: "4.6.8" },
2019-09-17 00:51:51 +03:00
2019-03-29 01:14:25 +03:00
{ id: "Bond.Core.CSharp", version: "8.0.0" },
{ id: "Bond.CSharp", version: "8.0.0" },
{ id: "Bond.CSharp.osx-x64", version: "8.0.0" },
{ id: "Bond.Runtime.CSharp", version: "8.0.0" },
{ id: "CLAP", version: "4.6" },
2019-12-13 04:03:27 +03:00
{ id: "CLAP-DotNetCore", version: "4.6" },
2019-03-29 01:14:25 +03:00
2020-03-28 01:14:00 +03:00
{ id: "RuntimeContracts", version: "0.3.0" },
2019-03-29 01:14:25 +03:00
2020-04-21 21:21:00 +03:00
{ id: "Microsoft.NETFramework.ReferenceAssemblies.net451", version: "1.0.0-alpha-5", osSkip: [ "macOS", "unix" ] },
{ id: "Microsoft.NETFramework.ReferenceAssemblies.net461", version: "1.0.0-alpha-5", osSkip: [ "macOS", "unix" ] },
2020-04-10 19:17:40 +03:00
{ id: "Microsoft.NETFramework.ReferenceAssemblies.net462", version: "1.0.0-alpha-5" },
2020-01-03 18:45:22 +03:00
{ id: "Microsoft.NETFramework.ReferenceAssemblies.net472", version: "1.0.0-alpha-5" },
2019-03-29 01:14:25 +03:00
{ id: "System.Diagnostics.DiagnosticSource", version: "4.5.0" },
{ id: "System.Diagnostics.DiagnosticSource", version: "4.0.0-beta-23516", alias: "System.Diagnostics.DiagnosticsSource.ForEventHub"},
// Roslyn
2020-11-19 03:25:17 +03:00
{ id: "Microsoft.Net.Compilers", version: "3.8.0" }, // Update Public/Src/Engine/UnitTests/Engine/Test.BuildXL.Engine.dsc if you change the version of Microsoft.Net.Compilers.
{ id: "Microsoft.NETCore.Compilers", version: "3.8.0" },
2020-06-02 00:40:43 +03:00
{ id: "Microsoft.CodeAnalysis.Common", version: "3.5.0" },
{ id: "Microsoft.CodeAnalysis.CSharp", version: "3.5.0" },
2020-09-16 07:20:22 +03:00
{ id: "Microsoft.CodeAnalysis.VisualBasic", version: "3.5.0" },
2020-06-02 00:40:43 +03:00
{ id: "Microsoft.CodeAnalysis.Workspaces.Common", version: "3.5.0",
2019-03-29 01:14:25 +03:00
dependentPackageIdsToSkip: ["SQLitePCLRaw.bundle_green", "System.Composition"],
dependentPackageIdsToIgnore: ["SQLitePCLRaw.bundle_green", "System.Composition"],
},
2020-06-02 00:40:43 +03:00
{ id: "Microsoft.CodeAnalysis.CSharp.Workspaces", version: "3.5.0" },
2019-03-29 01:14:25 +03:00
2020-01-14 22:56:56 +03:00
// Old code analysis libraries, for tests only
{ id: "Microsoft.CodeAnalysis.Common", version: "2.10.0", alias: "Microsoft.CodeAnalysis.Common.Old" },
{ id: "Microsoft.CodeAnalysis.CSharp", version: "2.10.0", alias: "Microsoft.CodeAnalysis.CSharp.Old" },
2020-09-16 07:20:22 +03:00
{ id: "Microsoft.CodeAnalysis.VisualBasic", version: "2.10.0", alias: "Microsoft.CodeAnalysis.VisualBasic.Old" },
2020-01-14 22:56:56 +03:00
2019-03-29 01:14:25 +03:00
// Roslyn Analyzers
2020-05-29 01:57:23 +03:00
{ id: "Microsoft.CodeAnalysis.Analyzers", version: "3.0.0" },
2019-03-29 01:14:25 +03:00
{ id: "Microsoft.CodeAnalysis.FxCopAnalyzers", version: "2.6.3" },
{ id: "Microsoft.CodeQuality.Analyzers", version: "2.3.0-beta1" },
{ id: "Microsoft.NetFramework.Analyzers", version: "2.3.0-beta1" },
{ id: "Microsoft.NetCore.Analyzers", version: "2.3.0-beta1" },
2019-11-14 00:50:21 +03:00
2020-05-29 01:57:23 +03:00
{ id: "AsyncFixer", version: "1.3.0" },
2019-03-29 01:14:25 +03:00
{ id: "ErrorProne.NET.CoreAnalyzers", version: "0.1.2" },
2020-03-28 01:14:00 +03:00
{ id: "RuntimeContracts.Analyzer", version: "0.3.0" },
2019-03-29 01:14:25 +03:00
{ id: "StyleCop.Analyzers", version: "1.1.0-beta004" },
{ id: "Text.Analyzers", version: "2.3.0-beta1" },
// MEF
{ id: "Microsoft.Composition", version: "1.0.30" },
{ id: "System.Composition.AttributedModel", version: "1.0.31" },
{ id: "System.Composition.Convention", version: "1.0.31" },
{ id: "System.Composition.Hosting", version: "1.0.31" },
{ id: "System.Composition.Runtime", version: "1.0.31" },
{ id: "System.Composition.TypedParts", version: "1.0.31" },
{ id: "Microsoft.Diagnostics.Tracing.EventSource.Redist", version: "1.1.28" },
{ id: "Microsoft.Diagnostics.Tracing.TraceEvent", version: "2.0.30" },
{ id: "Microsoft.Extensions.Globalization.CultureInfoCache", version: "1.0.0-rc1-final" },
{ id: "Microsoft.Extensions.MemoryPool", version: "1.0.0-rc1-final" },
2019-06-28 05:24:58 +03:00
{ id: "Microsoft.Extensions.PlatformAbstractions", version: "1.1.0" },
2020-01-30 19:18:57 +03:00
{ id: "Microsoft.Extensions.Http", version: "3.1.0" },
2019-03-29 01:14:25 +03:00
{ id: "Microsoft.Tpl.Dataflow", version: "4.5.24" },
{ id: "Microsoft.TypeScript.Compiler", version: "1.8" },
{ id: "Microsoft.WindowsAzure.ConfigurationManager", version: "1.8.0.0" },
2020-05-08 19:46:14 +03:00
{ id: "Newtonsoft.Json", version: "12.0.3" },
2019-03-29 01:14:25 +03:00
{ id: "Newtonsoft.Json.Bson", version: "1.0.1" },
{ id: "System.Data.SQLite.Core", version: "1.0.109.2" },
{ id: "System.Reflection.Metadata", version: "1.6.0" },
{ id: "System.Threading.Tasks.Dataflow", version: "4.9.0" },
// Nuget
{ id: "NuGet.Commandline", version: "4.7.1" },
{ id: "NuGet.Versioning", version: "4.6.0" }, // Can't use the latest becuase nuget extracts to folder with metadata which we don't support yet.
2020-01-16 02:42:07 +03:00
{ id: "NuGet.Frameworks", version: "5.0.0"}, // needed for qtest on .net core
2019-03-29 01:14:25 +03:00
// Cpp Sdk
2020-04-21 21:21:00 +03:00
{ id: "VisualCppTools.Community.VS2017Layout", version: "14.11.25506", osSkip: [ "macOS", "unix" ] },
2019-03-29 01:14:25 +03:00
2019-05-08 00:46:04 +03:00
// ProjFS (virtual file system)
2020-05-07 19:30:39 +03:00
{ id: "Microsoft.Windows.ProjFS", version: "1.2.19351.1" },
2019-05-08 00:46:04 +03:00
2019-03-29 01:14:25 +03:00
// RocksDb
2020-11-18 03:44:50 +03:00
{ id: "RocksDbSharp", version: "6.10.2-b20201103.3", alias: "RocksDbSharpSigned" },
{ id: "RocksDbNative", version: "6.10.2-b20201103.3" },
2020-09-22 19:02:00 +03:00
2019-04-27 02:35:29 +03:00
{ id: "JsonDiffPatch.Net", version: "2.1.0" },
2019-03-29 01:14:25 +03:00
// Event hubs
{ id: "Microsoft.Azure.Amqp", version: "2.3.5" },
{ id: "Microsoft.Azure.EventHubs", version: "2.1.0",
2019-12-19 00:41:13 +03:00
dependentPackageIdsToSkip: ["System.Net.Http", "System.Reflection.TypeExtensions", "System.Runtime.Serialization.Primitives", "Newtonsoft.Json", "System.Diagnostics.DiagnosticSource"],
2019-03-29 01:14:25 +03:00
},
{ id: "Microsoft.Azure.KeyVault.Core", version: "1.0.0" },
{ id: "Microsoft.Azure.Services.AppAuthentication", version: "1.0.3" },
{ id: "Microsoft.IdentityModel.Logging", version: "5.2.2" },
2019-12-24 05:12:31 +03:00
{ id: "Microsoft.IdentityModel.Tokens", version: "5.2.2",
2019-12-13 04:03:27 +03:00
dependentPackageIdsToSkip: ["Newtonsoft.Json"] },
2019-12-24 05:12:31 +03:00
{ id: "System.IdentityModel.Tokens.Jwt", version: "5.2.2",
2019-12-13 04:03:27 +03:00
dependentPackageIdsToSkip: ["Newtonsoft.Json"] },
2019-03-29 01:14:25 +03:00
2020-08-03 21:29:15 +03:00
// Key Vault
{ id: "Azure.Security.KeyVault.Secrets", version: "4.0.3" },
2020-11-24 03:22:26 +03:00
{ id: "Azure.Security.KeyVault.Certificates", version: "4.0.3" },
2020-08-03 21:29:15 +03:00
{ id: "Azure.Identity", version: "1.1.1" },
{ id: "Microsoft.Identity.Client", version: "4.16.1" },
{ id: "Azure.Core", version: "1.3.0" },
2019-03-29 01:14:25 +03:00
// Package sets
...importFile(f`config.nuget.vssdk.dsc`).pkgs,
...importFile(f`config.nuget.aspNetCore.dsc`).pkgs,
2020-01-30 19:18:57 +03:00
...importFile(f`config.nuget.dotnetcore.dsc`).pkgs,
...importFile(f`config.nuget.grpc.dsc`).pkgs,
2019-03-29 01:14:25 +03:00
...importFile(f`config.microsoftInternal.dsc`).pkgs,
2019-06-28 05:24:58 +03:00
{ id: "WindowsAzure.Storage", version: "9.3.3", alias: "WindowsAzure.Storage" },
2019-03-29 01:14:25 +03:00
{ id: "Microsoft.Data.Services.Client", version: "5.8.2" },
{ id: "System.Spatial", version: "5.8.2" },
// xUnit
2019-05-23 12:37:30 +03:00
{ id: "xunit.abstractions", version: "2.0.3" },
2019-03-29 01:14:25 +03:00
{ id: "xunit.analyzers", version: "0.10.0" },
2019-05-17 00:42:36 +03:00
{ id: "xunit.assert", version: "2.4.1-ms" },
{ id: "xunit.core", version: "2.4.1-ms" },
2019-05-23 12:37:30 +03:00
{ id: "xunit.extensibility.core", version: "2.4.1" },
{ id: "xunit.extensibility.execution", version: "2.4.1" },
{ id: "xunit.runner.console", version: "2.4.1" },
{ id: "microsoft.dotnet.xunitconsolerunner", version: "2.5.1-beta.19270.4" },
{ id: "xunit.runner.reporters", version: "2.4.1-pre.build.4059" },
{ id: "xunit.runner.utility", version: "2.4.1" },
2020-01-16 02:42:07 +03:00
{ id: "xunit.runner.visualstudio", version: "2.4.1", dependentPackageIdsToSkip: ["Microsoft.NET.Test.Sdk"] },
// microsoft test platform
{ id: "Microsoft.TestPlatform.TestHost", version: "16.4.0"},
{ id: "Microsoft.TestPlatform.ObjectModel", version: "16.4.0"},
{ id: "Microsoft.NET.Test.Sdk", version: "15.9.0" },
{ id: "Microsoft.CodeCoverage", version: "15.9.0" },
2019-03-29 01:14:25 +03:00
2020-10-28 23:49:58 +03:00
{ id: "Microsoft.IdentityModel.Clients.ActiveDirectory", version: "5.2.6", /* Change Sync: BuildXLSdk.cacheBindingRedirects() */
2019-12-13 04:03:27 +03:00
dependentPackageIdsToSkip: ["Xamarin.Android.Support.CustomTabs", "Xamarin.Android.Support.v7.AppCompat"] },
2020-05-08 19:46:14 +03:00
{ id: "System.Private.Uri", version: "4.3.2" },
2019-03-29 01:14:25 +03:00
// CloudStore dependencies
2020-03-24 21:40:18 +03:00
{ id: "DeduplicationSigned", version: "1.0.14" },
2019-03-29 01:14:25 +03:00
{ id: "Microsoft.Bcl", version: "1.1.10" },
{ id: "Microsoft.Bcl.Async", version: "1.0.168" },
2020-06-06 01:44:52 +03:00
{ id: "Microsoft.Bcl.AsyncInterfaces", version: "1.1.0", dependentPackageIdsToSkip: ["System.Threading.Tasks.Extensions"] },
2019-03-29 01:14:25 +03:00
{ id: "Microsoft.Bcl.Build", version: "1.0.14" },
2020-04-29 22:25:20 +03:00
{ id: "StackExchange.Redis", version: "2.1.30",
2020-05-28 21:31:46 +03:00
dependentPackageIdsToSkip: ["System.IO.Pipelines", "System.Threading.Channels", "Microsoft.Bcl.AsyncInterfaces", "Pipelines.Sockets.Unofficial"] },
2020-04-29 22:25:20 +03:00
{ id: "Pipelines.Sockets.Unofficial", version: "2.1.6",
dependentPackageIdsToSkip: ["System.IO.Pipelines", "System.Runtime.CompilerServices.Unsafe", "Microsoft.Bcl.AsyncInterfaces"] },
{ id: "System.Diagnostics.PerformanceCounter", version: "4.7.0" },
{ id: "System.Threading.Channels", version: "4.7.0",
2020-01-15 03:21:04 +03:00
dependentPackageIdsToSkip: ["System.Threading.Tasks.Extensions"] },
2020-05-14 22:24:51 +03:00
{ id: "System.Linq.Async", version: "4.0.0"},
2019-03-29 01:14:25 +03:00
{ id: "TransientFaultHandling.Core", version: "5.1.1209.1" },
2020-11-11 23:07:23 +03:00
{ id: "Polly", version: "7.2.1" },
{ id: "Polly.Contrib.WaitAndRetry", version: "1.1.1" },
2020-04-21 21:21:00 +03:00
{ id: "Redis-64", version: "3.0.503", osSkip: [ "macOS", "unix" ] },
2020-02-07 02:41:56 +03:00
{ id: "Redis-osx-x64", version: "1.0.0", osSkip: importFile(f`config.microsoftInternal.dsc`).isMicrosoftInternal
? [ "win" ]
2020-04-21 21:21:00 +03:00
: [ "win", "macOS", "unix" ] },
2019-03-29 01:14:25 +03:00
// Testing
{ id: "System.Security.Cryptography.ProtectedData", version: "4.4.0"},
{ id: "System.Configuration.ConfigurationManager", version: "4.4.0"},
2019-12-24 05:12:31 +03:00
{ id: "FluentAssertions", version: "5.3.0",
2019-12-13 04:03:27 +03:00
dependentPackageIdsToSkip: ["System.Reflection.Emit", "System.Reflection.Emit.Lightweight"] },
2019-03-29 01:14:25 +03:00
{ id: "DotNet.Glob", version: "2.0.3" },
{ id: "Minimatch", version: "1.1.0.0" },
2020-05-08 19:46:14 +03:00
{ id: "Microsoft.ApplicationInsights", version: "2.11.0", dependentPackageIdsToIgnore: ["System.RunTime.InteropServices"] },
2019-03-29 01:14:25 +03:00
{ id: "Microsoft.ApplicationInsights.Agent.Intercept", version: "2.0.7" },
{ id: "Microsoft.ApplicationInsights.DependencyCollector", version: "2.3.0" },
{ id: "Microsoft.ApplicationInsights.PerfCounterCollector", version: "2.3.0" },
{ id: "Microsoft.ApplicationInsights.WindowsServer", version: "2.3.0" },
{ id: "Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel", version: "2.3.0" },
{ id: "System.Security.Cryptography.Xml", version: "4.5.0" },
2020-06-06 01:44:52 +03:00
{ id: "System.Text.Encodings.Web", version: "4.7.0" },
2019-03-29 01:14:25 +03:00
{ id: "System.Security.Permissions", version: "4.5.0" },
{ id: "System.Security.Cryptography.Pkcs", version: "4.5.0" },
{ id: "ILRepack", version: "2.0.16" },
// VS language service
{ id: "System.Runtime.Analyzers", version: "1.0.1" },
{ id: "System.Runtime.InteropServices.Analyzers", version: "1.0.1" },
{ id: "System.Security.Cryptography.Hashing.Algorithms.Analyzers", version: "1.1.0" },
{ id: "Nerdbank.FullDuplexStream", version: "1.0.9"},
{ id: "Validation", version: "2.3.7"},
// VSTS managed API
{ id: "Microsoft.TeamFoundationServer.Client", version: "15.122.1-preview"},
2019-12-24 05:12:31 +03:00
{ id: "Microsoft.TeamFoundation.DistributedTask.WebApi", version: "15.122.1-preview",
2019-12-13 04:03:27 +03:00
dependentPackageIdsToSkip: ["*"] },
2019-03-29 01:14:25 +03:00
{ id: "Microsoft.TeamFoundation.DistributedTask.Common", version: "15.112.1"},
{ id: "Microsoft.TeamFoundation.DistributedTask.Common.Contracts", version: "16.137.0-preview"},
// MSBuild. These should be used for compile references only, as at runtime one can only practically use MSBuilds from Visual Studio / dotnet CLI
2019-10-19 00:27:11 +03:00
{ id: "Microsoft.Build", version: "16.4.0-preview-19516-02",
2019-08-16 22:54:39 +03:00
dependentPackageIdsToSkip: ["System.Threading.Tasks.Dataflow", "System.Memory"], // These are overwritten in the deployment by DataflowForMSBuild and SystemMemoryForMSBuild since it doesn't work with the versions we use in larger buildxl.
2019-03-29 01:14:25 +03:00
},
2019-10-19 00:27:11 +03:00
{ id: "Microsoft.Build.Runtime", version: "16.4.0-preview-19516-02",
2019-03-29 01:14:25 +03:00
dependentPackageIdsToSkip: ["System.Threading.Tasks.Dataflow"],
},
2019-10-19 00:27:11 +03:00
{ id: "Microsoft.Build.Tasks.Core", version: "16.4.0-preview-19516-02",
2019-03-29 01:14:25 +03:00
dependentPackageIdsToSkip: ["System.Threading.Tasks.Dataflow"],
},
2019-10-19 00:27:11 +03:00
{ id: "Microsoft.Build.Utilities.Core", version: "16.4.0-preview-19516-02"},
{ id: "Microsoft.Build.Framework", version: "16.4.0-preview-19516-02"},
2019-12-24 05:12:31 +03:00
{ id: "System.Resources.Extensions", version: "4.6.0-preview9.19411.4",
2019-12-13 04:03:27 +03:00
dependentPackageIdsToSkip: ["System.Memory"]},
2019-03-29 01:14:25 +03:00
2020-05-28 21:31:46 +03:00
// Buffers and Memory
2020-10-28 23:49:58 +03:00
{ id: "System.Buffers", version: "4.5.1" }, /* Change Sync: BuildXLSdk.cacheBindingRedirects() */ // A different version, because StackExchange.Redis uses it.
{ id: "System.Memory", version: "4.5.4", dependentPackageIdsToSkip: ["System.Runtime.CompilerServices.Unsafe", "System.Numerics.Vectors"] }, /* Change Sync: BuildXLSdk.cacheBindingRedirects() */
{ id: "System.Runtime.CompilerServices.Unsafe", version: "4.7.0" }, /* Change Sync: BuildXLSdk.cacheBindingRedirects() */
{ id: "System.IO.Pipelines", version: "4.7.2", dependentPackageIdsToSkip: ["System.Threading.Tasks.Extensions"] }, /* Change Sync: BuildXLSdk.cacheBindingRedirects() */
2020-11-19 03:25:17 +03:00
{ id: "System.IO.Pipelines", version: "5.0.0", dependentPackageIdsToSkip: ["System.Threading.Tasks.Extensions"], alias: "System.IO.Pipelines.v5.0.0" }, /* Change Sync: BuildXLSdk.cacheBindingRedirects() */
2020-10-28 23:49:58 +03:00
{ id: "System.Numerics.Vectors", version: "4.5.0" }, /* Change Sync: BuildXLSdk.cacheBindingRedirects() */
2020-05-28 21:31:46 +03:00
2019-03-29 01:14:25 +03:00
// Extra dependencies to make MSBuild work
{ id: "Microsoft.VisualStudio.Setup.Configuration.Interop", version: "1.16.30"},
{ id: "System.CodeDom", version: "4.4.0"},
2019-12-24 05:12:31 +03:00
{ id: "System.Text.Encoding.CodePages", version: "4.5.1",
2019-12-13 04:03:27 +03:00
dependentPackageIdsToSkip: ["System.Runtime.CompilerServices.Unsafe"]},
2020-04-29 22:25:20 +03:00
{ id: "System.Runtime.CompilerServices.Unsafe", version: "4.5.3", alias: "SystemRuntimeCompilerServicesUnsafeForMSBuild", dependentPackageIdsToSkip: ["*"]},
2020-06-11 00:00:39 +03:00
{id: "System.Numerics.Vectors", version: "4.4.0", alias: "SystemNumericsVectorsForMSBuild"},
2019-06-06 00:16:36 +03:00
// Used for MSBuild input/output prediction
2019-07-12 22:11:35 +03:00
{ id: "Microsoft.Build.Prediction", version: "0.3.0" },
2019-03-29 01:14:25 +03:00
{ id: "SharpZipLib", version: "1.1.0" },
// Ninja JSON graph generation helper
{ id: "BuildXL.Tools.Ninjson", version: "0.0.6" },
{ id: "BuildXL.Tools.AppHostPatcher", version: "1.0.0" },
2019-05-07 18:22:42 +03:00
// CoreRT
2020-04-21 21:21:00 +03:00
{ id: "runtime.osx-x64.Microsoft.DotNet.ILCompiler", version: "1.0.0-alpha-27527-01", osSkip: [ "win", "unix" ] },
{ id: "runtime.win-x64.Microsoft.DotNet.ILCompiler", version: "1.0.0-alpha-27527-01", osSkip: [ "macOS", "unix" ] },
2019-06-28 05:24:58 +03:00
// Kusto SDK (for netstandard)
2019-12-24 05:12:31 +03:00
{ id: "Microsoft.Azure.Kusto.Cloud.Platform.Azure.NETStandard", version: "6.1.8",
2019-12-13 04:03:27 +03:00
dependentPackageIdsToSkip: ["Microsoft.Extensions.PlatformAbstractions"] },
2019-12-24 05:12:31 +03:00
{ id: "Microsoft.Azure.Kusto.Cloud.Platform.NETStandard", version: "6.1.8",
2019-12-13 04:03:27 +03:00
dependentPackageIdsToSkip: ["Microsoft.Extensions.PlatformAbstractions"] },
2019-12-24 05:12:31 +03:00
{ id: "Microsoft.Azure.Kusto.Data.NETStandard", version: "6.1.8",
2019-12-13 04:03:27 +03:00
dependentPackageIdsToSkip: ["Microsoft.Extensions.PlatformAbstractions"] },
2019-12-24 05:12:31 +03:00
{ id: "Microsoft.Azure.Kusto.Ingest.NETStandard", version: "6.1.8",
2019-12-13 04:03:27 +03:00
dependentPackageIdsToSkip: ["Microsoft.Extensions.PlatformAbstractions"] },
2019-06-28 05:24:58 +03:00
{ id: "Microsoft.IO.RecyclableMemoryStream", version: "1.2.2" },
{ id: "Microsoft.Azure.KeyVault", version: "3.0.1"},
{ id: "Microsoft.Azure.KeyVault.WebKey", version: "3.0.1"},
2020-07-08 04:30:28 +03:00
2019-06-28 05:24:58 +03:00
// Kusto SDK (for full framework)
{ id: "Microsoft.Azure.Kusto.Data", version: "6.1.8" },
{ id: "Microsoft.Azure.Kusto.Ingest", version: "6.1.8" },
{ id: "Microsoft.Azure.Kusto.Tools", version: "2.2.2" },
{ id: "Microsoft.Azure.Management.Kusto", version: "1.0.0" },
2019-08-17 01:33:37 +03:00
2020-07-08 04:30:28 +03:00
// Azure Communication
{ id: "Microsoft.Rest.ClientRuntime", version: "2.3.21",
dependentPackageIdsToSkip: ["Microsoft.NETCore.Runtime"],
dependentPackageIdsToIgnore: ["Microsoft.NETCore.Runtime"],
},
{ id: "Microsoft.Rest.ClientRuntime.Azure", version: "3.3.18" },
{ id: "Microsoft.Rest.ClientRuntime.Azure.Authentication", version: "2.4.0" },
// Azure Management SDK
{ id: "Microsoft.Azure.Management.AppService.Fluent", version: "1.33.0" },
{ id: "Microsoft.Azure.Management.BatchAI.Fluent", version: "1.33.0" },
{ id: "Microsoft.Azure.Management.Cdn.Fluent", version: "1.33.0" },
{ id: "Microsoft.Azure.Management.Compute.Fluent", version: "1.33.0" },
{ id: "Microsoft.Azure.Management.ContainerInstance.Fluent", version: "1.33.0" },
{ id: "Microsoft.Azure.Management.ContainerRegistry.Fluent", version: "1.33.0" },
{ id: "Microsoft.Azure.Management.ContainerService.Fluent", version: "1.33.0" },
{ id: "Microsoft.Azure.Management.CosmosDB.Fluent", version: "1.33.0" },
{ id: "Microsoft.Azure.Management.Dns.Fluent", version: "1.33.0" },
{ id: "Microsoft.Azure.Management.EventHub.Fluent", version: "1.33.0" },
{ id: "Microsoft.Azure.Management.Graph.RBAC.Fluent", version: "1.33.0" },
{ id: "Microsoft.Azure.Management.KeyVault.Fluent", version: "1.33.0" },
{ id: "Microsoft.Azure.Management.Locks.Fluent", version: "1.33.0" },
{ id: "Microsoft.Azure.Management.Msi.Fluent", version: "1.33.0" },
{ id: "Microsoft.Azure.Management.Network.Fluent", version: "1.33.0" },
{ id: "Microsoft.Azure.Management.PrivateDns.Fluent", version: "1.33.0" },
{ id: "Microsoft.Azure.Management.Search.Fluent", version: "1.33.0" },
{ id: "Microsoft.Azure.Management.ServiceBus.Fluent", version: "1.33.0" },
{ id: "Microsoft.Azure.Management.Sql.Fluent", version: "1.33.0" },
{ id: "Microsoft.Azure.Management.Storage.Fluent", version: "1.33.0" },
{ id: "Microsoft.Azure.Management.TrafficManager.Fluent", version: "1.33.0" },
// These are the ones we actually care about
{ id: "Microsoft.Azure.Management.Redis", version: "5.0.0" },
{ id: "Microsoft.Azure.Management.Redis.Fluent", version: "1.33.0" },
{ id: "Microsoft.Azure.Management.ResourceManager.Fluent", version: "1.33.0" },
{ id: "Microsoft.Azure.Management.Fluent", version: "1.33.0" },
{ id: "Microsoft.Azure.Management.Monitor.Fluent", version: "1.33.0" },
{ id: "Microsoft.Azure.Management.Monitor", version: "0.25.0-preview" },
2020-08-08 03:31:43 +03:00
// FsCheck
{ id: "FsCheck", version: "2.14.3" },
{ id: "FSharp.Core", version: "4.2.3" },
2019-08-17 01:33:37 +03:00
// ANTLR
2020-04-02 05:48:45 +03:00
{ id: "Antlr4.Runtime.Standard", version: "4.7.2" },
// Runtime dependencies for Linux
2020-09-22 19:02:00 +03:00
{
id: "runtime.linux-x64.BuildXL",
2020-11-19 02:23:18 +03:00
version: "0.0.42",
2020-09-22 19:02:00 +03:00
osSkip: importFile(f`config.microsoftInternal.dsc`).isMicrosoftInternal
? []
2020-04-21 21:21:00 +03:00
: [ "win", "macOS", "unix" ]
2020-04-02 05:48:45 +03:00
}
2019-03-29 01:14:25 +03:00
],
doNotEnforceDependencyVersions: true,
},
importFile(f`config.microsoftInternal.dsc`).resolver,
2019-07-17 20:23:37 +03:00
{
kind: "SourceResolver",
modules: [f`Public\Sdk\SelfHost\Libraries\Dotnet-Runtime-External\module.config.dsc`],
},
2020-11-19 03:25:17 +03:00
{
kind: "SourceResolver",
modules: [f`Public\Sdk\SelfHost\Libraries\Dotnet-Runtime-5-External\module.config.dsc`],
},
2019-03-29 01:14:25 +03:00
{
kind: "Download",
downloads: [
// PowerShell.Core
{
moduleName: "PowerShell.Core.win-x64",
url: "https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-win-x64.zip",
hash: "VSO0:E8E98155383EDFE3CA6D06854638560EAB57C8225880B5308547A916DBE9A9A900",
archiveType: "zip",
},
{
moduleName: "PowerShell.Core.osx-x64",
url: "https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-osx-x64.tar.gz",
hash: "VSO0:6D3B557962CC26CC9BB6F8A35B288CE8C68460E68B74B73C85BECAE87BB311D600",
archiveType: "tgz",
},
{
moduleName: "PowerShell.Core.linux-x64",
url: "https://github.com/PowerShell/PowerShell/releases/download/v6.1.3/PowerShell-6.1.3-linux-x64.tar.gz",
hash: "VSO0:159D6D8F82D59AD34D2F8A7084D05C25D6B532DE22CD9502882385F62CDD070300",
archiveType: "tgz",
},
2020-01-20 17:24:46 +03:00
// XNU kernel sources
{
moduleName: "Apple.Darwin.Xnu",
url: "https://github.com/apple/darwin-xnu/archive/xnu-4903.221.2.tar.gz",
hash: "VSO0:D6D26AEECA99240D2D833B6B8B811609B9A6E3516C0EE97A951B64F9AA4F90F400",
archiveType: "tgz",
},
2020-11-19 03:25:17 +03:00
// DotNet Core Runtime 5.0
{
moduleName: "DotNet-Runtime.win-x64.5.0.100",
url: "https://download.visualstudio.microsoft.com/download/pr/4c86f8a0-8f0b-454f-9419-081c2f21b348/52a1d3c12effa2bc1b552a4fd9f53d20/dotnet-runtime-5.0.0-win-x64.zip",
hash: "VSO0:401A023634910E6B80414B4D541BB7D11C710D8D24C0C8B0712EFA80C1D33B1A00",
archiveType: "zip",
},
{
moduleName: "DotNet-Runtime.osx-x64.5.0.100",
url: "https://download.visualstudio.microsoft.com/download/pr/112291a5-e3e0-4741-9c66-c9cea6231f3f/3ebd75dfda0492fcbf50c6f939762c46/dotnet-runtime-5.0.0-osx-x64.tar.gz",
hash: "VSO0:FA5B6AD52AB940BD56BFAE1A1D841885071EE82A356C8D7EA82FCCAE562920FB00",
archiveType: "tgz",
},
{
moduleName: "DotNet-Runtime.linux-x64.5.0.100",
url: "https://download.visualstudio.microsoft.com/download/pr/c84d49aa-200c-4400-a517-87cce5b7516d/94c89b00380eb212e19538b05f8cb968/dotnet-runtime-5.0.0-linux-x64.tar.gz",
hash: "VSO0:92E66F1C7562AFBEBBFD93CC98EB54279A65A81F2013492BC64177BB116E3A6000",
archiveType: "tgz",
},
// DotNet Core Runtime 3.1
2019-03-29 01:14:25 +03:00
{
2020-07-16 23:03:05 +03:00
moduleName: "DotNet-Runtime.win-x64.3.1.6",
url: "https://download.visualstudio.microsoft.com/download/pr/f01755a3-b9cf-4d63-acdd-e331337548d6/ab5385bc8a555e741bc093b3459015b7/dotnet-runtime-3.1.6-win-x64.zip",
hash: "VSO0:9757187648C77E11F41303763ED2CCD427741616EE38376C40E96827671482C500",
2019-03-29 01:14:25 +03:00
archiveType: "zip",
},
{
2020-07-16 23:03:05 +03:00
moduleName: "DotNet-Runtime.osx-x64.3.1.6",
url: "https://download.visualstudio.microsoft.com/download/pr/d1a67dcf-12d9-4ecd-86a4-c4a659f0eebf/519db8ce56503d551d35ef9378239c70/dotnet-runtime-3.1.6-osx-x64.tar.gz",
hash: "VSO0:F0FBE5172B7D57CE46EEF54BED6790EF197D841B53B83656982616DC193740D800",
2019-03-29 01:14:25 +03:00
archiveType: "tgz",
},
2020-04-21 21:21:00 +03:00
{
2020-07-16 23:03:05 +03:00
moduleName: "DotNet-Runtime.linux-x64.3.1.6",
url: "https://download.visualstudio.microsoft.com/download/pr/7c2978aa-1a4c-4fb0-a7cd-1dbaf1ce405d/c54e21f55dfa49d2ccdb599fa2edb9ed/dotnet-runtime-3.1.6-linux-x64.tar.gz",
hash: "VSO0:713CA0FE106D1EEE837E4595312F4771CDD429147DA2E1CB66F85E2603DD9BA900",
2020-04-21 21:21:00 +03:00
archiveType: "tgz",
},
2020-11-19 03:25:17 +03:00
2019-07-17 20:23:37 +03:00
// The following are needed for dotnet core MSBuild test deployments
{
moduleName: "DotNet-Runtime.win-x64.2.2.2",
url: "https://download.visualstudio.microsoft.com/download/pr/b10d0a68-b720-48ae-bab8-4ac39bd1b5d3/f32b8b41dff5c1488c2b915a007fc4a6/dotnet-runtime-2.2.2-win-x64.zip",
hash: "VSO0:6BBAE77F9BA0231C90ABD9EA720FF886E8613CE8EF29D8B657AF201E2982829600",
archiveType: "zip",
},
2019-03-29 01:14:25 +03:00
// NodeJs
{
moduleName: "NodeJs.win-x64",
2020-11-26 02:34:06 +03:00
url: "https://nodejs.org/dist/v15.2.1/node-v15.2.1-win-x64.zip",
hash: "VSO0:89495668CD87C565889C9439275D232DF4456E1A4AA1F6F587D3674A1BCE3CAD00",
2019-03-29 01:14:25 +03:00
archiveType: "zip",
},
{
moduleName: "NodeJs.osx-x64",
2020-11-26 02:34:06 +03:00
url: "https://nodejs.org/dist/v15.2.1/node-v15.2.1-darwin-x64.tar.gz",
hash: "VSO0:E5019A97DF2947725E17A6CEB9E2F92EAA490902A51A46A91F4EC37ECFF18A7F00",
2019-03-29 01:14:25 +03:00
archiveType: "tgz",
},
2020-04-21 21:21:00 +03:00
{
moduleName: "NodeJs.linux-x64",
2020-11-26 02:34:06 +03:00
url: "https://nodejs.org/dist/v15.2.1/node-v15.2.1-linux-x64.tar.gz",
hash: "VSO0:038EB56ECF4C3FEC397E149A91F32DDD0E91E9FB61E7BA064FB9E5E5C0A3779800",
2020-04-21 21:21:00 +03:00
archiveType: "tgz",
2019-06-28 00:47:00 +03:00
}
2019-03-29 01:14:25 +03:00
],
},
],
qualifiers: {
defaultQualifier: {
configuration: "debug",
2020-11-19 03:25:17 +03:00
// Ones the migration to net5 is done the next line needs to be changed to net5.0
2020-01-08 03:32:29 +03:00
targetFramework: "netcoreapp3.1",
2020-09-22 19:02:00 +03:00
targetRuntime:
2020-04-21 21:21:00 +03:00
Context.getCurrentHost().os === "win" ? "win-x64" :
Context.getCurrentHost().os === "macOS" ? "osx-x64" : "linux-x64",
2019-03-29 01:14:25 +03:00
},
namedQualifiers: {
Debug: {
configuration: "debug",
2020-01-08 03:32:29 +03:00
targetFramework: "netcoreapp3.1",
2019-03-29 01:14:25 +03:00
targetRuntime: "win-x64",
},
DebugNet472: {
configuration: "debug",
targetFramework: "net472",
targetRuntime: "win-x64",
},
DebugDotNetCore: {
configuration: "debug",
2020-01-08 03:32:29 +03:00
targetFramework: "netcoreapp3.1",
2019-03-29 01:14:25 +03:00
targetRuntime: "win-x64",
},
2020-11-19 03:25:17 +03:00
DebugDotNet5: {
configuration: "debug",
targetFramework: "net5.0",
targetRuntime: "win-x64",
},
2019-03-29 01:14:25 +03:00
DebugDotNetCoreMac: {
configuration: "debug",
2020-01-08 03:32:29 +03:00
targetFramework: "netcoreapp3.1",
2019-03-29 01:14:25 +03:00
targetRuntime: "osx-x64",
},
2020-03-06 23:04:14 +03:00
DebugLinux: {
configuration: "debug",
targetFramework: "netcoreapp3.1",
targetRuntime: "linux-x64",
},
2019-03-29 01:14:25 +03:00
// Release
Release: {
configuration: "release",
2020-01-08 03:32:29 +03:00
targetFramework: "netcoreapp3.1",
2019-03-29 01:14:25 +03:00
targetRuntime: "win-x64",
},
ReleaseNet472: {
configuration: "release",
targetFramework: "net472",
targetRuntime: "win-x64",
},
ReleaseDotNetCore: {
configuration: "release",
2020-01-08 03:32:29 +03:00
targetFramework: "netcoreapp3.1",
2019-03-29 01:14:25 +03:00
targetRuntime: "win-x64",
},
2020-11-19 03:25:17 +03:00
ReleaseDotNet5: {
configuration: "release",
targetFramework: "net5.0",
targetRuntime: "win-x64",
},
2019-03-29 01:14:25 +03:00
ReleaseDotNetCoreMac: {
configuration: "release",
2020-01-08 03:32:29 +03:00
targetFramework: "netcoreapp3.1",
2019-03-29 01:14:25 +03:00
targetRuntime: "osx-x64",
},
2020-03-06 23:04:14 +03:00
ReleaseLinux: {
configuration: "release",
targetFramework: "netcoreapp3.1",
targetRuntime: "linux-x64",
},
2019-03-29 01:14:25 +03:00
}
},
mounts: [
...importFile(f`macos.mounts.dsc`).mounts,
{
name: a`DeploymentRoot`,
path: p`Out/Bin`,
trackSourceFileChanges: true,
isWritable: true,
isReadable: true,
},
2019-10-03 21:24:02 +03:00
{
name: a`CgNpmRoot`,
path: p`cg/npm`,
trackSourceFileChanges: true,
2019-10-22 01:29:05 +03:00
isWritable: false,
2019-10-03 21:24:02 +03:00
isReadable: true
},
2019-03-29 01:14:25 +03:00
{
// Special scrubbable mount with the content that can be cleaned up by running bxl.exe /scrub
name: a`ScrubbableDeployment`,
path: Context.getCurrentHost().os === "win" ? p`Out/Objects/TempDeployment` : p`Out/Objects.noindex/TempDeployment`,
trackSourceFileChanges: true,
isWritable: true,
isReadable: true,
isScrubbable: true,
},
{
name: a`SdkRoot`,
path: p`Public/Sdk/Public`,
trackSourceFileChanges: true,
isWritable: false,
isReadable: true,
},
{
name: a`Example`,
path: p`Example`,
trackSourceFileChanges: true,
isWritable: false,
isReadable: true
},
{
name: a`Sandbox`,
path: p`Public/Src/Sandbox`,
trackSourceFileChanges: true,
isWritable: false,
isReadable: true
},
{
name: a`ThirdParty_mono`,
path: p`third_party/mono@abad3612068e7333956106e7be02d9ce9e346f92`,
trackSourceFileChanges: true,
isWritable: false,
isReadable: true
}
],
searchPathEnumerationTools: [
r`cl.exe`,
r`lib.exe`,
r`link.exe`,
r`sn.exe`,
r`csc.exe`,
r`StyleCopCmd.exe`,
r`BuildXL.LogGen.exe`,
r`csc.exe`,
r`ccrefgen.exe`,
r`ccrewrite.exe`,
r`FxCopCmd.exe`,
r`NuGet.exe`
],
ide: {
// Let the /VS flag generate the projects in the source tree so that add/remove C# file works properly.
canWriteToSrc: true,
dotSettingsFile: f`Public/Sdk/SelfHost/BuildXL/BuildXL.sln.DotSettings`,
},
2020-07-03 00:35:00 +03:00
cacheableFileAccessAllowlist: Context.getCurrentHost().os !== "win" ? [] : [
2019-03-29 01:14:25 +03:00
// Allow the debugger to be able to be launched from BuildXL Builds
{
name: "JitDebugger",
toolPath: f`${Environment.getDirectoryValue("SystemRoot")}/system32/vsjitdebugger.exe`,
pathRegex: `.*${Environment.getStringValue("CommonProgramFiles").replace("\\", "\\\\")}\\\\Microsoft Shared\\\\VS7Debug\\\\.*`
},
]
});