| File: FrameworkPackages\FrameworkPackages.netcoreapp2.1.cs | Web Access |
| Project: src\sdk\src\Tasks\Microsoft.NET.Build.Tasks\Microsoft.NET.Build.Tasks.csproj (Microsoft.NET.Build.Tasks) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.ComponentDetection.Detectors.NuGet; #nullable disable using static global::NuGet.Frameworks.FrameworkConstants.CommonFrameworks; /// <summary> /// Framework packages for .NETCoreApp,Version=v2.1. /// </summary> internal partial class FrameworkPackages { internal static class NETCoreApp21 { internal static FrameworkPackages Instance { get; } = new(NetCoreApp21, FrameworkNames.NetCoreApp, NETCoreApp20.Instance) { { "Microsoft.CSharp", "4.5.0" }, { "Microsoft.VisualBasic", "10.3.0" }, { "Microsoft.Win32.Registry", "4.5.0" }, { "System.Buffers", "4.6.1" }, { "System.Collections.Immutable", "1.5.0" }, { "System.ComponentModel.Annotations", "4.5.0" }, { "System.Diagnostics.DiagnosticSource", "4.5.0" }, { "System.IO.FileSystem.AccessControl", "4.5.0" }, { "System.IO.Pipes.AccessControl", "4.5.0" }, { "System.Memory", "4.6.3" }, { "System.Numerics.Vectors", "4.6.1" }, { "System.Reflection.DispatchProxy", "4.5.0" }, { "System.Reflection.Metadata", "1.6.0" }, { "System.Security.AccessControl", "4.5.0" }, { "System.Security.Cryptography.Cng", "4.5.2" }, { "System.Security.Cryptography.OpenSsl", "4.5.0" }, { "System.Security.Principal.Windows", "4.5.0" }, { "System.Threading.Tasks.Dataflow", "4.9.0" }, { "System.Threading.Tasks.Extensions", "4.6.3" }, { "System.ValueTuple", "4.6.1" }, }; internal static void Register() => FrameworkPackages.Register(Instance); } }