RemoveVersions Regex updates
This commit is contained in:
parent
00b01acd87
commit
3d6534c617
7 changed files with 774 additions and 763 deletions
|
@ -53,11 +53,11 @@ public class ArtifactsSizeTest : SmokeTests
|
|||
IEnumerable<TarEntry> sdkTarEntries = Utilities.GetTarballContent(Config.SdkTarballPath)
|
||||
.Where(entry => entry.EntryType == TarEntryType.RegularFile);
|
||||
|
||||
Dictionary<string, int> fileNameCountMap = new Dictionary<string, int>();
|
||||
var filePathCountMap = new Dictionary<string, int>();
|
||||
(string FilePath, long Bytes)[] tarEntries = sdkTarEntries.Concat(artifactsTarEntries)
|
||||
.Select(entry =>
|
||||
{
|
||||
string result = ProcessEntryName(entry.Name, fileNameCountMap);
|
||||
string result = ProcessEntryName(entry.Name, filePathCountMap);
|
||||
return (FilePath: result, Bytes: entry.Length);
|
||||
})
|
||||
.OrderBy(entry => entry.FilePath)
|
||||
|
@ -86,23 +86,36 @@ public class ArtifactsSizeTest : SmokeTests
|
|||
}
|
||||
}
|
||||
|
||||
private string ProcessEntryName(string originalName, Dictionary<string, int> fileNameCountMap)
|
||||
private string ProcessEntryName(string originalName, Dictionary<string, int> filePathCountMap)
|
||||
{
|
||||
string result = BaselineHelper.RemoveRids(originalName);
|
||||
result = BaselineHelper.RemoveVersions(result);
|
||||
|
||||
string pattern = @"x\.y\.z";
|
||||
MatchCollection matches = Regex.Matches(result, pattern);
|
||||
|
||||
if (matches.Count > 0)
|
||||
string[] patterns = {@"x\.y\.z", @"x\.y(?!\.z)"};
|
||||
int matchIndex = -1;
|
||||
string matchPattern = "";
|
||||
foreach (string pattern in patterns)
|
||||
{
|
||||
int count = fileNameCountMap.TryGetValue(result, out int value) ? value : 0;
|
||||
fileNameCountMap[result] = count + 1;
|
||||
MatchCollection matches = Regex.Matches(result, pattern);
|
||||
|
||||
if (matches.Count > 0)
|
||||
{
|
||||
if (matches[matches.Count - 1].Index > matchIndex)
|
||||
{
|
||||
matchIndex = matches[matches.Count - 1].Index;
|
||||
matchPattern = matches[matches.Count - 1].Value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (matchIndex != -1)
|
||||
{
|
||||
int count = filePathCountMap.TryGetValue(result, out count) ? count : 0;
|
||||
filePathCountMap[result] = count + 1;
|
||||
|
||||
if (count > 0)
|
||||
{
|
||||
int lastIndex = matches[matches.Count - 1].Index;
|
||||
result = result.Substring(0, lastIndex) + $"x.y.z-{count}" + result.Substring(lastIndex + pattern.Length - 2);
|
||||
result = result.Substring(0, matchIndex) + $"{matchPattern}-{count}" + result.Substring(matchIndex + matchPattern.Length);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -90,32 +90,30 @@ namespace Microsoft.DotNet.SourceBuild.SmokeTests
|
|||
|
||||
public static string GetBaselineFilePath(string baselineFileName) => Path.Combine(GetAssetsDirectory(), "baselines", baselineFileName);
|
||||
|
||||
public static string RemoveNetTfmPaths(string source)
|
||||
{
|
||||
string pathSeparator = Regex.Escape(Path.DirectorySeparatorChar.ToString());
|
||||
Regex netTfmRegex = new($"{pathSeparator}net[1-9]+\\.[0-9]+{pathSeparator}");
|
||||
return netTfmRegex.Replace(source, $"{Path.DirectorySeparatorChar}{NetTfmPlaceholder}{Path.DirectorySeparatorChar}");
|
||||
}
|
||||
|
||||
public static string RemoveRids(string diff, bool isPortable = false) =>
|
||||
isPortable ? diff.Replace(Config.PortableRid, "portable-rid") : diff.Replace(Config.TargetRid, "banana-rid");
|
||||
|
||||
public static string RemoveVersions(string source)
|
||||
{
|
||||
string result = RemoveNetTfmPaths(source);
|
||||
|
||||
// Remove build versions
|
||||
// The semantic version regex incorectly parses through build versions such as "8.1.00-beta.final"
|
||||
// so the build version regex is used to capture matches that the semantic version does not.
|
||||
Regex BuildVersionPattern = new(@"\d+(\.\d+)+([@-](\w+)*\d*([\.+-](alpha|preview|rc|rtm|beta|final|servicing|bundled))*(\.\d+)*)*");
|
||||
result = BuildVersionPattern.Replace(result, VersionPlaceholder);
|
||||
// Remove version numbers for examples like "roslyn4.1", "testhost-1.0", "net8.0", and "netstandard2.1".
|
||||
string result = Regex.Replace(source, $@"(roslyn|testhost-|netstandard|net)\d+\.\d+", match =>
|
||||
{
|
||||
string wordPart = match.Groups[1].Value;
|
||||
return $"{wordPart}x.y";
|
||||
});
|
||||
|
||||
// Remove semantic versions
|
||||
// Regex source: https://semver.org/#is-there-a-suggested-regular-expression-regex-to-check-a-semver-string
|
||||
// The regex from https://semver.org has been modified to account for the following:
|
||||
// - The version should be preceded by a path separator, '.', '-', or '/'
|
||||
// - The version should match a release identifier that begins with '.' or '-'
|
||||
// - The version may have one or more release identifiers that begin with '.' or '-'
|
||||
// - The version should end before a path separator, '.', '-', or '/'
|
||||
Regex semanticVersionRegex = new(
|
||||
$"(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)"
|
||||
+ $"(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))"
|
||||
+ $"?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?");
|
||||
@"(?<=[./-])(0|[1-9]\d*)\.(0|[1-9]\d*)(\.(0|[1-9]\d*))+" +
|
||||
@"(((?:[-.]((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)))+" +
|
||||
@"(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?" +
|
||||
@"(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?(?=[/.-])");
|
||||
return semanticVersionRegex.Replace(result, VersionPlaceholder);
|
||||
}
|
||||
|
||||
|
|
|
@ -19,20 +19,20 @@
|
|||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/cs/tr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll: 7168
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll: 7168
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll: 7168
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll: 10752
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll: 10752
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll: 10752
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/Microsoft.Extensions.Logging.Generators.dll: 64000
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll: 12288
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll: 9728
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll: 9728
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll: 10752
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll: 10752
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll: 10752
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/Microsoft.Extensions.Logging.Generators.dll: 64000
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll: 12288
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll: 9728
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll: 9728
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/data/FrameworkList.xml: 33002
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/data/PackageOverrides.txt: 6616
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/ref/netx.y/Microsoft.AspNetCore.Antiforgery.dll: 23552
|
||||
|
@ -608,128 +608,128 @@
|
|||
./packs/Microsoft.NETCore.App.Runtime.banana-rid/x.y.z/runtimes/banana-rid/native/libhostfxr.so: 4228456
|
||||
./packs/NETStandard.Library.Ref/x.y.z/data/FrameworkList.xml: 25681
|
||||
./packs/NETStandard.Library.Ref/x.y.z/data/PackageOverrides.txt: 3177
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/Microsoft.Win32.Primitives.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/mscorlib.dll: 37888
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/netstandard.dll: 1597440
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/netstandard.xml: 16615788
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.AppContext.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Buffers.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Collections.Concurrent.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Collections.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Collections.NonGeneric.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Collections.Specialized.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ComponentModel.Composition.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ComponentModel.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ComponentModel.EventBasedAsync.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ComponentModel.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ComponentModel.TypeConverter.dll: 5120
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Console.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Core.dll: 8192
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Data.Common.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Data.dll: 7680
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.Contracts.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.Debug.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.FileVersionInfo.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.Process.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.StackTrace.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.TextWriterTraceListener.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.Tools.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.TraceSource.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.Tracing.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.dll: 30208
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Drawing.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Drawing.Primitives.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Dynamic.Runtime.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Globalization.Calendars.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Globalization.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Globalization.Extensions.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.Compression.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.Compression.FileSystem.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.Compression.ZipFile.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.FileSystem.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.FileSystem.DriveInfo.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.FileSystem.Primitives.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.FileSystem.Watcher.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.IsolatedStorage.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.MemoryMappedFiles.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.Pipes.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.UnmanagedMemoryStream.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Linq.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Linq.Expressions.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Linq.Parallel.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Linq.Queryable.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Memory.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.Http.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.NameResolution.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.NetworkInformation.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.Ping.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.Primitives.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.Requests.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.Security.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.Sockets.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.WebHeaderCollection.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.WebSockets.Client.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.WebSockets.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Numerics.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Numerics.Vectors.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ObjectModel.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.DispatchProxy.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.Emit.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.Emit.ILGeneration.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.Emit.Lightweight.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.Extensions.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Resources.Reader.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Resources.ResourceManager.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Resources.Writer.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.CompilerServices.VisualC.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.dll: 11264
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Extensions.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Handles.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.InteropServices.dll: 6144
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.InteropServices.RuntimeInformation.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Numerics.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Serialization.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Serialization.Formatters.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Serialization.Json.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Serialization.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Serialization.Xml.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Claims.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Cryptography.Algorithms.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Cryptography.Csp.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Cryptography.Encoding.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Cryptography.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Cryptography.X509Certificates.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Principal.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.SecureString.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ServiceModel.Web.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Text.Encoding.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Text.Encoding.Extensions.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Text.RegularExpressions.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.Overlapped.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.Tasks.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.Tasks.Extensions.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.Tasks.Parallel.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.Thread.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.ThreadPool.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.Timer.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Transactions.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ValueTuple.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Web.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Windows.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.dll: 11264
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.Linq.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.ReaderWriter.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.Serialization.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.XDocument.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.XmlDocument.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.XmlSerializer.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.XPath.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.XPath.XDocument.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/Microsoft.Win32.Primitives.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/mscorlib.dll: 37888
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/netstandard.dll: 1597440
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/netstandard.xml: 16615788
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.AppContext.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Buffers.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Collections.Concurrent.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Collections.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Collections.NonGeneric.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Collections.Specialized.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ComponentModel.Composition.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ComponentModel.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ComponentModel.EventBasedAsync.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ComponentModel.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ComponentModel.TypeConverter.dll: 5120
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Console.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Core.dll: 8192
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Data.Common.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Data.dll: 7680
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.Contracts.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.Debug.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.FileVersionInfo.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.Process.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.StackTrace.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.TextWriterTraceListener.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.Tools.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.TraceSource.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.Tracing.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.dll: 30208
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Drawing.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Drawing.Primitives.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Dynamic.Runtime.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Globalization.Calendars.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Globalization.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Globalization.Extensions.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.Compression.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.Compression.FileSystem.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.Compression.ZipFile.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.FileSystem.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.FileSystem.DriveInfo.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.FileSystem.Primitives.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.FileSystem.Watcher.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.IsolatedStorage.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.MemoryMappedFiles.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.Pipes.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.UnmanagedMemoryStream.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Linq.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Linq.Expressions.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Linq.Parallel.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Linq.Queryable.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Memory.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.Http.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.NameResolution.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.NetworkInformation.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.Ping.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.Primitives.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.Requests.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.Security.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.Sockets.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.WebHeaderCollection.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.WebSockets.Client.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.WebSockets.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Numerics.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Numerics.Vectors.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ObjectModel.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.DispatchProxy.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.Emit.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.Emit.ILGeneration.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.Emit.Lightweight.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.Extensions.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Resources.Reader.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Resources.ResourceManager.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Resources.Writer.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.CompilerServices.VisualC.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.dll: 11264
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Extensions.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Handles.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.InteropServices.dll: 6144
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.InteropServices.RuntimeInformation.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Numerics.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Serialization.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Serialization.Formatters.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Serialization.Json.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Serialization.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Serialization.Xml.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Claims.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Cryptography.Algorithms.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Cryptography.Csp.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Cryptography.Encoding.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Cryptography.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Cryptography.X509Certificates.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Principal.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.SecureString.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ServiceModel.Web.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Text.Encoding.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Text.Encoding.Extensions.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Text.RegularExpressions.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.Overlapped.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.Tasks.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.Tasks.Extensions.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.Tasks.Parallel.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.Thread.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.ThreadPool.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.Timer.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Transactions.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ValueTuple.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Web.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Windows.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.dll: 11264
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.Linq.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.ReaderWriter.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.Serialization.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.XDocument.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.XmlDocument.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.XmlSerializer.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.XPath.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.XPath.XDocument.dll: 3072
|
||||
./sdk-manifests/x.y.z/microsoft.net.workload.emscripten.current/x.y.z/WorkloadManifest.json: 2818
|
||||
./sdk-manifests/x.y.z/microsoft.net.workload.emscripten.current/x.y.z/WorkloadManifest.targets: 2156
|
||||
./sdk-manifests/x.y.z/microsoft.net.workload.emscripten.net6/x.y.z/WorkloadManifest.json: 1956
|
||||
|
@ -2699,15 +2699,15 @@
|
|||
./sdk/x.y.z/System.ServiceProcess.ServiceController.dll: 24064
|
||||
./sdk/x.y.z/System.Windows.Extensions.dll: 12800
|
||||
./sdk/x.y.z/testhost-latest.runtimeconfig.json: 193
|
||||
./sdk/x.y.z/testhost-x.y.z-1.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y.z-2.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y.z-3.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y.z-4.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y.z-5.runtimeconfig.json: 152
|
||||
./sdk/x.y.z/testhost-x.y.z-6.runtimeconfig.json: 152
|
||||
./sdk/x.y.z/testhost-x.y.z-7.runtimeconfig.json: 152
|
||||
./sdk/x.y.z/testhost-x.y.z-8.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y.z.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y-1.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y-2.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y-3.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y-4.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y-5.runtimeconfig.json: 152
|
||||
./sdk/x.y.z/testhost-x.y-6.runtimeconfig.json: 152
|
||||
./sdk/x.y.z/testhost-x.y-7.runtimeconfig.json: 152
|
||||
./sdk/x.y.z/testhost-x.y-8.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost.deps.json: 29456
|
||||
./sdk/x.y.z/testhost.dll: 77312
|
||||
./sdk/x.y.z/tr/dotnet.resources.dll: 182272
|
||||
|
@ -3336,8 +3336,8 @@ Microsoft.NET.Sdk.WorkloadMSBuildSdkResolver.x.y.z.nupkg: 18247
|
|||
Microsoft.NET.Sdk.x.y.z.nupkg: 974407
|
||||
Microsoft.NET.StringTools.x.y.z.nupkg: 101677
|
||||
Microsoft.NET.WebAssembly.Threading.x.y.z.nupkg: 37806
|
||||
Microsoft.NET.Workload.Emscripten.Current.Manifest-x.y.z-1.nupkg: 10106
|
||||
Microsoft.NET.Workload.Emscripten.Current.Manifest-x.y.z.nupkg: 10082
|
||||
Microsoft.NET.Workload.Emscripten.Current.Manifest-x.y.z.Transport.x.y.z.nupkg: 10106
|
||||
Microsoft.NET.Workload.Emscripten.net6.Manifest-x.y.z.nupkg: 9748
|
||||
Microsoft.NET.Workload.Emscripten.net7.Manifest-x.y.z.nupkg: 10060
|
||||
Microsoft.NET.Workload.Mono.ToolChain.Current.Manifest-x.y.z.nupkg: 30117
|
||||
|
@ -3436,7 +3436,7 @@ System.Diagnostics.PerformanceCounter.x.y.z.nupkg: 138086
|
|||
System.DirectoryServices.AccountManagement.x.y.z.nupkg: 209181
|
||||
System.DirectoryServices.Protocols.x.y.z.nupkg: 323674
|
||||
System.DirectoryServices.x.y.z.nupkg: 395377
|
||||
System.Formats.Asnx.y.z.nupkg: 115054
|
||||
System.Formats.Asn1.x.y.z.nupkg: 115054
|
||||
System.Formats.Cbor.x.y.z.nupkg: 102051
|
||||
System.IdentityModel.Tokens.Jwt.x.y.z.nupkg: 39750
|
||||
System.IO.Hashing.x.y.z.nupkg: 68024
|
||||
|
|
|
@ -19,20 +19,20 @@
|
|||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/cs/tr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll: 7168
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll: 7168
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll: 7168
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll: 10752
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll: 10752
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll: 10752
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/Microsoft.Extensions.Logging.Generators.dll: 64000
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll: 12288
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll: 9728
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll: 9728
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll: 10752
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll: 10752
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll: 10752
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/Microsoft.Extensions.Logging.Generators.dll: 64000
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll: 12288
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll: 9728
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll: 9728
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/data/FrameworkList.xml: 33002
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/data/PackageOverrides.txt: 6616
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/ref/netx.y/Microsoft.AspNetCore.Antiforgery.dll: 23552
|
||||
|
@ -931,128 +931,128 @@
|
|||
./packs/Microsoft.NETCore.App.Runtime.banana-rid/x.y.z/runtimes/banana-rid/native/libSystem.Security.Cryptography.Native.OpenSsl.so: 406928
|
||||
./packs/NETStandard.Library.Ref/x.y.z/data/FrameworkList.xml: 25681
|
||||
./packs/NETStandard.Library.Ref/x.y.z/data/PackageOverrides.txt: 3177
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/Microsoft.Win32.Primitives.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/mscorlib.dll: 37888
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/netstandard.dll: 1597440
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/netstandard.xml: 16615788
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.AppContext.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Buffers.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Collections.Concurrent.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Collections.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Collections.NonGeneric.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Collections.Specialized.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ComponentModel.Composition.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ComponentModel.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ComponentModel.EventBasedAsync.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ComponentModel.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ComponentModel.TypeConverter.dll: 5120
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Console.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Core.dll: 8192
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Data.Common.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Data.dll: 7680
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.Contracts.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.Debug.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.FileVersionInfo.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.Process.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.StackTrace.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.TextWriterTraceListener.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.Tools.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.TraceSource.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.Tracing.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.dll: 30208
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Drawing.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Drawing.Primitives.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Dynamic.Runtime.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Globalization.Calendars.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Globalization.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Globalization.Extensions.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.Compression.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.Compression.FileSystem.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.Compression.ZipFile.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.FileSystem.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.FileSystem.DriveInfo.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.FileSystem.Primitives.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.FileSystem.Watcher.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.IsolatedStorage.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.MemoryMappedFiles.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.Pipes.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.UnmanagedMemoryStream.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Linq.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Linq.Expressions.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Linq.Parallel.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Linq.Queryable.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Memory.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.Http.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.NameResolution.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.NetworkInformation.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.Ping.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.Primitives.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.Requests.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.Security.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.Sockets.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.WebHeaderCollection.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.WebSockets.Client.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.WebSockets.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Numerics.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Numerics.Vectors.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ObjectModel.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.DispatchProxy.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.Emit.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.Emit.ILGeneration.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.Emit.Lightweight.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.Extensions.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Resources.Reader.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Resources.ResourceManager.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Resources.Writer.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.CompilerServices.VisualC.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.dll: 11264
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Extensions.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Handles.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.InteropServices.dll: 6144
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.InteropServices.RuntimeInformation.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Numerics.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Serialization.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Serialization.Formatters.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Serialization.Json.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Serialization.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Serialization.Xml.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Claims.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Cryptography.Algorithms.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Cryptography.Csp.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Cryptography.Encoding.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Cryptography.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Cryptography.X509Certificates.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Principal.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.SecureString.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ServiceModel.Web.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Text.Encoding.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Text.Encoding.Extensions.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Text.RegularExpressions.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.Overlapped.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.Tasks.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.Tasks.Extensions.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.Tasks.Parallel.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.Thread.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.ThreadPool.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.Timer.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Transactions.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ValueTuple.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Web.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Windows.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.dll: 11264
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.Linq.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.ReaderWriter.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.Serialization.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.XDocument.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.XmlDocument.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.XmlSerializer.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.XPath.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.XPath.XDocument.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/Microsoft.Win32.Primitives.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/mscorlib.dll: 37888
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/netstandard.dll: 1597440
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/netstandard.xml: 16615788
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.AppContext.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Buffers.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Collections.Concurrent.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Collections.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Collections.NonGeneric.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Collections.Specialized.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ComponentModel.Composition.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ComponentModel.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ComponentModel.EventBasedAsync.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ComponentModel.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ComponentModel.TypeConverter.dll: 5120
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Console.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Core.dll: 8192
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Data.Common.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Data.dll: 7680
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.Contracts.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.Debug.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.FileVersionInfo.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.Process.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.StackTrace.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.TextWriterTraceListener.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.Tools.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.TraceSource.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.Tracing.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.dll: 30208
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Drawing.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Drawing.Primitives.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Dynamic.Runtime.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Globalization.Calendars.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Globalization.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Globalization.Extensions.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.Compression.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.Compression.FileSystem.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.Compression.ZipFile.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.FileSystem.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.FileSystem.DriveInfo.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.FileSystem.Primitives.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.FileSystem.Watcher.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.IsolatedStorage.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.MemoryMappedFiles.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.Pipes.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.UnmanagedMemoryStream.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Linq.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Linq.Expressions.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Linq.Parallel.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Linq.Queryable.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Memory.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.Http.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.NameResolution.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.NetworkInformation.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.Ping.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.Primitives.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.Requests.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.Security.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.Sockets.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.WebHeaderCollection.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.WebSockets.Client.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.WebSockets.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Numerics.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Numerics.Vectors.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ObjectModel.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.DispatchProxy.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.Emit.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.Emit.ILGeneration.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.Emit.Lightweight.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.Extensions.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Resources.Reader.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Resources.ResourceManager.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Resources.Writer.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.CompilerServices.VisualC.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.dll: 11264
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Extensions.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Handles.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.InteropServices.dll: 6144
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.InteropServices.RuntimeInformation.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Numerics.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Serialization.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Serialization.Formatters.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Serialization.Json.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Serialization.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Serialization.Xml.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Claims.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Cryptography.Algorithms.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Cryptography.Csp.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Cryptography.Encoding.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Cryptography.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Cryptography.X509Certificates.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Principal.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.SecureString.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ServiceModel.Web.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Text.Encoding.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Text.Encoding.Extensions.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Text.RegularExpressions.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.Overlapped.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.Tasks.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.Tasks.Extensions.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.Tasks.Parallel.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.Thread.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.ThreadPool.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.Timer.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Transactions.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ValueTuple.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Web.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Windows.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.dll: 11264
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.Linq.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.ReaderWriter.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.Serialization.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.XDocument.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.XmlDocument.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.XmlSerializer.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.XPath.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.XPath.XDocument.dll: 3072
|
||||
./sdk-manifests/x.y.z/microsoft.net.workload.emscripten.current/x.y.z/WorkloadManifest.json: 2818
|
||||
./sdk-manifests/x.y.z/microsoft.net.workload.emscripten.current/x.y.z/WorkloadManifest.targets: 2156
|
||||
./sdk-manifests/x.y.z/microsoft.net.workload.emscripten.net6/x.y.z/WorkloadManifest.json: 1956
|
||||
|
@ -3026,15 +3026,15 @@
|
|||
./sdk/x.y.z/System.Security.Permissions.dll: 82944
|
||||
./sdk/x.y.z/System.ServiceProcess.ServiceController.dll: 24064
|
||||
./sdk/x.y.z/testhost-latest.runtimeconfig.json: 193
|
||||
./sdk/x.y.z/testhost-x.y.z-1.runtimeconfig.json: 152
|
||||
./sdk/x.y.z/testhost-x.y.z-2.runtimeconfig.json: 152
|
||||
./sdk/x.y.z/testhost-x.y.z-3.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y.z-4.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y.z-5.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y.z-6.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y.z-7.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y.z-8.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y.z.runtimeconfig.json: 152
|
||||
./sdk/x.y.z/testhost-x.y-1.runtimeconfig.json: 152
|
||||
./sdk/x.y.z/testhost-x.y-2.runtimeconfig.json: 152
|
||||
./sdk/x.y.z/testhost-x.y-3.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y-4.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y-5.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y-6.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y-7.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y-8.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y.runtimeconfig.json: 152
|
||||
./sdk/x.y.z/testhost.deps.json: 29456
|
||||
./sdk/x.y.z/testhost.dll: 77312
|
||||
./sdk/x.y.z/tr/dotnet.resources.dll: 182272
|
||||
|
@ -3336,8 +3336,8 @@ Microsoft.NET.Sdk.WorkloadMSBuildSdkResolver.x.y.z.nupkg: 18247
|
|||
Microsoft.NET.Sdk.x.y.z.nupkg: 974412
|
||||
Microsoft.NET.StringTools.x.y.z.nupkg: 101676
|
||||
Microsoft.NET.WebAssembly.Threading.x.y.z.nupkg: 37806
|
||||
Microsoft.NET.Workload.Emscripten.Current.Manifest-x.y.z-1.nupkg: 10106
|
||||
Microsoft.NET.Workload.Emscripten.Current.Manifest-x.y.z.nupkg: 10082
|
||||
Microsoft.NET.Workload.Emscripten.Current.Manifest-x.y.z.Transport.x.y.z.nupkg: 10106
|
||||
Microsoft.NET.Workload.Emscripten.net6.Manifest-x.y.z.nupkg: 9750
|
||||
Microsoft.NET.Workload.Emscripten.net7.Manifest-x.y.z.nupkg: 10061
|
||||
Microsoft.NET.Workload.Mono.ToolChain.Current.Manifest-x.y.z.nupkg: 30117
|
||||
|
@ -3436,7 +3436,7 @@ System.Diagnostics.PerformanceCounter.x.y.z.nupkg: 138085
|
|||
System.DirectoryServices.AccountManagement.x.y.z.nupkg: 209179
|
||||
System.DirectoryServices.Protocols.x.y.z.nupkg: 323670
|
||||
System.DirectoryServices.x.y.z.nupkg: 395382
|
||||
System.Formats.Asnx.y.z.nupkg: 115059
|
||||
System.Formats.Asn1.x.y.z.nupkg: 115059
|
||||
System.Formats.Cbor.x.y.z.nupkg: 102051
|
||||
System.IdentityModel.Tokens.Jwt.x.y.z.nupkg: 39751
|
||||
System.IO.Hashing.x.y.z.nupkg: 68024
|
||||
|
|
|
@ -19,20 +19,20 @@
|
|||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/cs/tr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll: 7168
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll: 7168
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll: 7168
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll: 10752
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll: 10752
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll: 10752
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/Microsoft.Extensions.Logging.Generators.dll: 64000
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll: 12288
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll: 9728
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll: 9728
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll: 10752
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll: 10752
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll: 10752
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/Microsoft.Extensions.Logging.Generators.dll: 64000
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll: 12288
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll: 9728
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll: 9728
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/data/FrameworkList.xml: 33002
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/data/PackageOverrides.txt: 6616
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/data/PlatformManifest.txt: 12823
|
||||
|
@ -607,128 +607,128 @@
|
|||
./packs/Microsoft.NETCore.App.Runtime.banana-rid/x.y.z/runtimes/banana-rid/native/libhostfxr.so: 4179456
|
||||
./packs/NETStandard.Library.Ref/x.y.z/data/FrameworkList.xml: 25681
|
||||
./packs/NETStandard.Library.Ref/x.y.z/data/PackageOverrides.txt: 3177
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/Microsoft.Win32.Primitives.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/mscorlib.dll: 37888
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/netstandard.dll: 1597440
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/netstandard.xml: 16615788
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.AppContext.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Buffers.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Collections.Concurrent.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Collections.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Collections.NonGeneric.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Collections.Specialized.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ComponentModel.Composition.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ComponentModel.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ComponentModel.EventBasedAsync.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ComponentModel.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ComponentModel.TypeConverter.dll: 5120
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Console.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Core.dll: 8192
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Data.Common.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Data.dll: 7680
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.Contracts.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.Debug.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.FileVersionInfo.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.Process.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.StackTrace.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.TextWriterTraceListener.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.Tools.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.TraceSource.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.Tracing.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.dll: 30208
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Drawing.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Drawing.Primitives.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Dynamic.Runtime.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Globalization.Calendars.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Globalization.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Globalization.Extensions.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.Compression.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.Compression.FileSystem.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.Compression.ZipFile.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.FileSystem.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.FileSystem.DriveInfo.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.FileSystem.Primitives.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.FileSystem.Watcher.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.IsolatedStorage.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.MemoryMappedFiles.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.Pipes.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.UnmanagedMemoryStream.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Linq.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Linq.Expressions.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Linq.Parallel.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Linq.Queryable.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Memory.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.Http.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.NameResolution.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.NetworkInformation.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.Ping.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.Primitives.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.Requests.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.Security.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.Sockets.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.WebHeaderCollection.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.WebSockets.Client.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.WebSockets.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Numerics.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Numerics.Vectors.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ObjectModel.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.DispatchProxy.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.Emit.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.Emit.ILGeneration.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.Emit.Lightweight.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.Extensions.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Resources.Reader.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Resources.ResourceManager.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Resources.Writer.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.CompilerServices.VisualC.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.dll: 11264
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Extensions.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Handles.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.InteropServices.dll: 6144
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.InteropServices.RuntimeInformation.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Numerics.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Serialization.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Serialization.Formatters.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Serialization.Json.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Serialization.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Serialization.Xml.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Claims.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Cryptography.Algorithms.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Cryptography.Csp.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Cryptography.Encoding.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Cryptography.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Cryptography.X509Certificates.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Principal.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.SecureString.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ServiceModel.Web.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Text.Encoding.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Text.Encoding.Extensions.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Text.RegularExpressions.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.Overlapped.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.Tasks.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.Tasks.Extensions.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.Tasks.Parallel.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.Thread.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.ThreadPool.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.Timer.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Transactions.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ValueTuple.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Web.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Windows.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.dll: 11264
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.Linq.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.ReaderWriter.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.Serialization.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.XDocument.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.XmlDocument.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.XmlSerializer.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.XPath.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.XPath.XDocument.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/Microsoft.Win32.Primitives.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/mscorlib.dll: 37888
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/netstandard.dll: 1597440
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/netstandard.xml: 16615788
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.AppContext.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Buffers.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Collections.Concurrent.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Collections.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Collections.NonGeneric.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Collections.Specialized.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ComponentModel.Composition.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ComponentModel.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ComponentModel.EventBasedAsync.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ComponentModel.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ComponentModel.TypeConverter.dll: 5120
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Console.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Core.dll: 8192
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Data.Common.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Data.dll: 7680
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.Contracts.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.Debug.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.FileVersionInfo.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.Process.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.StackTrace.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.TextWriterTraceListener.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.Tools.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.TraceSource.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.Tracing.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.dll: 30208
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Drawing.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Drawing.Primitives.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Dynamic.Runtime.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Globalization.Calendars.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Globalization.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Globalization.Extensions.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.Compression.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.Compression.FileSystem.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.Compression.ZipFile.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.FileSystem.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.FileSystem.DriveInfo.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.FileSystem.Primitives.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.FileSystem.Watcher.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.IsolatedStorage.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.MemoryMappedFiles.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.Pipes.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.UnmanagedMemoryStream.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Linq.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Linq.Expressions.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Linq.Parallel.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Linq.Queryable.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Memory.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.Http.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.NameResolution.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.NetworkInformation.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.Ping.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.Primitives.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.Requests.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.Security.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.Sockets.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.WebHeaderCollection.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.WebSockets.Client.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.WebSockets.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Numerics.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Numerics.Vectors.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ObjectModel.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.DispatchProxy.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.Emit.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.Emit.ILGeneration.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.Emit.Lightweight.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.Extensions.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Resources.Reader.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Resources.ResourceManager.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Resources.Writer.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.CompilerServices.VisualC.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.dll: 11264
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Extensions.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Handles.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.InteropServices.dll: 6144
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.InteropServices.RuntimeInformation.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Numerics.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Serialization.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Serialization.Formatters.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Serialization.Json.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Serialization.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Serialization.Xml.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Claims.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Cryptography.Algorithms.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Cryptography.Csp.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Cryptography.Encoding.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Cryptography.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Cryptography.X509Certificates.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Principal.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.SecureString.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ServiceModel.Web.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Text.Encoding.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Text.Encoding.Extensions.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Text.RegularExpressions.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.Overlapped.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.Tasks.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.Tasks.Extensions.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.Tasks.Parallel.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.Thread.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.ThreadPool.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.Timer.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Transactions.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ValueTuple.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Web.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Windows.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.dll: 11264
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.Linq.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.ReaderWriter.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.Serialization.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.XDocument.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.XmlDocument.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.XmlSerializer.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.XPath.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.XPath.XDocument.dll: 3072
|
||||
./sdk-manifests/x.y.z/microsoft.net.workload.emscripten.current/x.y.z/WorkloadManifest.json: 2818
|
||||
./sdk-manifests/x.y.z/microsoft.net.workload.emscripten.current/x.y.z/WorkloadManifest.targets: 2156
|
||||
./sdk-manifests/x.y.z/microsoft.net.workload.emscripten.net6/x.y.z/WorkloadManifest.json: 1956
|
||||
|
@ -2700,15 +2700,15 @@
|
|||
./sdk/x.y.z/System.Security.Cryptography.Xml.dll: 440320
|
||||
./sdk/x.y.z/System.ServiceProcess.ServiceController.dll: 24064
|
||||
./sdk/x.y.z/testhost-latest.runtimeconfig.json: 193
|
||||
./sdk/x.y.z/testhost-x.y.z-1.runtimeconfig.json: 152
|
||||
./sdk/x.y.z/testhost-x.y.z-2.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y.z-3.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y.z-4.runtimeconfig.json: 152
|
||||
./sdk/x.y.z/testhost-x.y.z-5.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y.z-6.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y.z-7.runtimeconfig.json: 152
|
||||
./sdk/x.y.z/testhost-x.y.z-8.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y.z.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y-1.runtimeconfig.json: 152
|
||||
./sdk/x.y.z/testhost-x.y-2.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y-3.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y-4.runtimeconfig.json: 152
|
||||
./sdk/x.y.z/testhost-x.y-5.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y-6.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y-7.runtimeconfig.json: 152
|
||||
./sdk/x.y.z/testhost-x.y-8.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost.deps.json: 29456
|
||||
./sdk/x.y.z/testhost.dll: 77312
|
||||
./sdk/x.y.z/tr/dotnet.resources.dll: 182272
|
||||
|
@ -3336,8 +3336,8 @@ Microsoft.NET.Sdk.WorkloadMSBuildSdkResolver.x.y.z.nupkg: 18248
|
|||
Microsoft.NET.Sdk.x.y.z.nupkg: 974414
|
||||
Microsoft.NET.StringTools.x.y.z.nupkg: 101678
|
||||
Microsoft.NET.WebAssembly.Threading.x.y.z.nupkg: 37806
|
||||
Microsoft.NET.Workload.Emscripten.Current.Manifest-x.y.z-1.nupkg: 10105
|
||||
Microsoft.NET.Workload.Emscripten.Current.Manifest-x.y.z.nupkg: 10081
|
||||
Microsoft.NET.Workload.Emscripten.Current.Manifest-x.y.z.Transport.x.y.z.nupkg: 10105
|
||||
Microsoft.NET.Workload.Emscripten.net6.Manifest-x.y.z.nupkg: 9750
|
||||
Microsoft.NET.Workload.Emscripten.net7.Manifest-x.y.z.nupkg: 10061
|
||||
Microsoft.NET.Workload.Mono.ToolChain.Current.Manifest-x.y.z.nupkg: 30117
|
||||
|
@ -3436,7 +3436,7 @@ System.Diagnostics.PerformanceCounter.x.y.z.nupkg: 138088
|
|||
System.DirectoryServices.AccountManagement.x.y.z.nupkg: 209178
|
||||
System.DirectoryServices.Protocols.x.y.z.nupkg: 323671
|
||||
System.DirectoryServices.x.y.z.nupkg: 395382
|
||||
System.Formats.Asnx.y.z.nupkg: 115060
|
||||
System.Formats.Asn1.x.y.z.nupkg: 115060
|
||||
System.Formats.Cbor.x.y.z.nupkg: 102051
|
||||
System.IdentityModel.Tokens.Jwt.x.y.z.nupkg: 39752
|
||||
System.IO.Hashing.x.y.z.nupkg: 68025
|
||||
|
|
|
@ -19,20 +19,20 @@
|
|||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/cs/tr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll: 7168
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll: 7168
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll: 7168
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll: 10752
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll: 10752
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll: 10752
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/Microsoft.Extensions.Logging.Generators.dll: 64000
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll: 12288
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll: 9728
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll: 9728
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll: 10752
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll: 10752
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll: 10752
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/Microsoft.Extensions.Logging.Generators.dll: 64000
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll: 12288
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll: 9728
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll: 9728
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/data/FrameworkList.xml: 33002
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/data/PackageOverrides.txt: 6616
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/ref/netx.y/Microsoft.AspNetCore.Antiforgery.dll: 23552
|
||||
|
@ -932,128 +932,128 @@
|
|||
./packs/Microsoft.NETCore.App.Runtime.banana-rid/x.y.z/runtimes/banana-rid/native/libSystem.Security.Cryptography.Native.OpenSsl.so: 363368
|
||||
./packs/NETStandard.Library.Ref/x.y.z/data/FrameworkList.xml: 25681
|
||||
./packs/NETStandard.Library.Ref/x.y.z/data/PackageOverrides.txt: 3177
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/Microsoft.Win32.Primitives.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/mscorlib.dll: 37888
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/netstandard.dll: 1597440
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/netstandard.xml: 16615788
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.AppContext.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Buffers.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Collections.Concurrent.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Collections.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Collections.NonGeneric.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Collections.Specialized.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ComponentModel.Composition.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ComponentModel.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ComponentModel.EventBasedAsync.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ComponentModel.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ComponentModel.TypeConverter.dll: 5120
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Console.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Core.dll: 8192
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Data.Common.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Data.dll: 7680
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.Contracts.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.Debug.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.FileVersionInfo.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.Process.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.StackTrace.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.TextWriterTraceListener.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.Tools.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.TraceSource.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.Tracing.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.dll: 30208
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Drawing.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Drawing.Primitives.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Dynamic.Runtime.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Globalization.Calendars.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Globalization.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Globalization.Extensions.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.Compression.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.Compression.FileSystem.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.Compression.ZipFile.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.FileSystem.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.FileSystem.DriveInfo.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.FileSystem.Primitives.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.FileSystem.Watcher.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.IsolatedStorage.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.MemoryMappedFiles.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.Pipes.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.UnmanagedMemoryStream.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Linq.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Linq.Expressions.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Linq.Parallel.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Linq.Queryable.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Memory.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.Http.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.NameResolution.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.NetworkInformation.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.Ping.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.Primitives.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.Requests.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.Security.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.Sockets.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.WebHeaderCollection.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.WebSockets.Client.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.WebSockets.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Numerics.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Numerics.Vectors.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ObjectModel.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.DispatchProxy.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.Emit.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.Emit.ILGeneration.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.Emit.Lightweight.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.Extensions.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Resources.Reader.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Resources.ResourceManager.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Resources.Writer.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.CompilerServices.VisualC.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.dll: 11264
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Extensions.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Handles.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.InteropServices.dll: 6144
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.InteropServices.RuntimeInformation.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Numerics.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Serialization.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Serialization.Formatters.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Serialization.Json.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Serialization.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Serialization.Xml.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Claims.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Cryptography.Algorithms.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Cryptography.Csp.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Cryptography.Encoding.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Cryptography.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Cryptography.X509Certificates.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Principal.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.SecureString.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ServiceModel.Web.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Text.Encoding.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Text.Encoding.Extensions.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Text.RegularExpressions.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.Overlapped.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.Tasks.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.Tasks.Extensions.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.Tasks.Parallel.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.Thread.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.ThreadPool.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.Timer.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Transactions.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ValueTuple.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Web.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Windows.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.dll: 11264
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.Linq.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.ReaderWriter.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.Serialization.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.XDocument.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.XmlDocument.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.XmlSerializer.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.XPath.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.XPath.XDocument.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/Microsoft.Win32.Primitives.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/mscorlib.dll: 37888
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/netstandard.dll: 1597440
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/netstandard.xml: 16615788
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.AppContext.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Buffers.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Collections.Concurrent.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Collections.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Collections.NonGeneric.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Collections.Specialized.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ComponentModel.Composition.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ComponentModel.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ComponentModel.EventBasedAsync.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ComponentModel.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ComponentModel.TypeConverter.dll: 5120
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Console.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Core.dll: 8192
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Data.Common.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Data.dll: 7680
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.Contracts.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.Debug.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.FileVersionInfo.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.Process.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.StackTrace.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.TextWriterTraceListener.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.Tools.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.TraceSource.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.Tracing.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.dll: 30208
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Drawing.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Drawing.Primitives.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Dynamic.Runtime.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Globalization.Calendars.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Globalization.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Globalization.Extensions.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.Compression.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.Compression.FileSystem.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.Compression.ZipFile.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.FileSystem.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.FileSystem.DriveInfo.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.FileSystem.Primitives.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.FileSystem.Watcher.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.IsolatedStorage.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.MemoryMappedFiles.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.Pipes.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.UnmanagedMemoryStream.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Linq.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Linq.Expressions.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Linq.Parallel.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Linq.Queryable.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Memory.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.Http.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.NameResolution.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.NetworkInformation.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.Ping.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.Primitives.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.Requests.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.Security.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.Sockets.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.WebHeaderCollection.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.WebSockets.Client.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.WebSockets.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Numerics.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Numerics.Vectors.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ObjectModel.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.DispatchProxy.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.Emit.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.Emit.ILGeneration.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.Emit.Lightweight.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.Extensions.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Resources.Reader.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Resources.ResourceManager.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Resources.Writer.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.CompilerServices.VisualC.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.dll: 11264
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Extensions.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Handles.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.InteropServices.dll: 6144
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.InteropServices.RuntimeInformation.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Numerics.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Serialization.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Serialization.Formatters.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Serialization.Json.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Serialization.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Serialization.Xml.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Claims.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Cryptography.Algorithms.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Cryptography.Csp.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Cryptography.Encoding.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Cryptography.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Cryptography.X509Certificates.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Principal.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.SecureString.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ServiceModel.Web.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Text.Encoding.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Text.Encoding.Extensions.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Text.RegularExpressions.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.Overlapped.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.Tasks.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.Tasks.Extensions.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.Tasks.Parallel.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.Thread.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.ThreadPool.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.Timer.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Transactions.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ValueTuple.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Web.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Windows.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.dll: 11264
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.Linq.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.ReaderWriter.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.Serialization.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.XDocument.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.XmlDocument.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.XmlSerializer.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.XPath.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.XPath.XDocument.dll: 3072
|
||||
./sdk-manifests/x.y.z/microsoft.net.workload.emscripten.current/x.y.z/WorkloadManifest.json: 2818
|
||||
./sdk-manifests/x.y.z/microsoft.net.workload.emscripten.current/x.y.z/WorkloadManifest.targets: 2156
|
||||
./sdk-manifests/x.y.z/microsoft.net.workload.emscripten.net6/x.y.z/WorkloadManifest.json: 1956
|
||||
|
@ -3026,15 +3026,15 @@
|
|||
./sdk/x.y.z/System.ServiceProcess.ServiceController.dll: 24576
|
||||
./sdk/x.y.z/System.Windows.Extensions.dll: 12800
|
||||
./sdk/x.y.z/testhost-latest.runtimeconfig.json: 193
|
||||
./sdk/x.y.z/testhost-x.y.z-1.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y.z-2.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y.z-3.runtimeconfig.json: 152
|
||||
./sdk/x.y.z/testhost-x.y.z-4.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y.z-5.runtimeconfig.json: 152
|
||||
./sdk/x.y.z/testhost-x.y.z-6.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y.z-7.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y.z-8.runtimeconfig.json: 152
|
||||
./sdk/x.y.z/testhost-x.y.z.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y-1.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y-2.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y-3.runtimeconfig.json: 152
|
||||
./sdk/x.y.z/testhost-x.y-4.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y-5.runtimeconfig.json: 152
|
||||
./sdk/x.y.z/testhost-x.y-6.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y-7.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y-8.runtimeconfig.json: 152
|
||||
./sdk/x.y.z/testhost-x.y.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost.deps.json: 29456
|
||||
./sdk/x.y.z/testhost.dll: 82944
|
||||
./sdk/x.y.z/tr/dotnet.resources.dll: 182272
|
||||
|
@ -3336,8 +3336,8 @@ Microsoft.NET.Sdk.WorkloadMSBuildSdkResolver.x.y.z.nupkg: 18248
|
|||
Microsoft.NET.Sdk.x.y.z.nupkg: 974411
|
||||
Microsoft.NET.StringTools.x.y.z.nupkg: 101693
|
||||
Microsoft.NET.WebAssembly.Threading.x.y.z.nupkg: 37806
|
||||
Microsoft.NET.Workload.Emscripten.Current.Manifest-x.y.z-1.nupkg: 10104
|
||||
Microsoft.NET.Workload.Emscripten.Current.Manifest-x.y.z.nupkg: 10081
|
||||
Microsoft.NET.Workload.Emscripten.Current.Manifest-x.y.z.Transport.x.y.z.nupkg: 10104
|
||||
Microsoft.NET.Workload.Emscripten.net6.Manifest-x.y.z.nupkg: 9749
|
||||
Microsoft.NET.Workload.Emscripten.net7.Manifest-x.y.z.nupkg: 10059
|
||||
Microsoft.NET.Workload.Mono.ToolChain.Current.Manifest-x.y.z.nupkg: 30118
|
||||
|
@ -3436,7 +3436,7 @@ System.Diagnostics.PerformanceCounter.x.y.z.nupkg: 138085
|
|||
System.DirectoryServices.AccountManagement.x.y.z.nupkg: 209181
|
||||
System.DirectoryServices.Protocols.x.y.z.nupkg: 323673
|
||||
System.DirectoryServices.x.y.z.nupkg: 395378
|
||||
System.Formats.Asnx.y.z.nupkg: 115057
|
||||
System.Formats.Asn1.x.y.z.nupkg: 115057
|
||||
System.Formats.Cbor.x.y.z.nupkg: 102052
|
||||
System.IdentityModel.Tokens.Jwt.x.y.z.nupkg: 39755
|
||||
System.IO.Hashing.x.y.z.nupkg: 68021
|
||||
|
|
|
@ -19,20 +19,20 @@
|
|||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/cs/tr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll: 7168
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll: 7168
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll: 7168
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll: 10752
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll: 10752
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll: 10752
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/Microsoft.Extensions.Logging.Generators.dll: 64000
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll: 12288
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll: 9728
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y.z/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll: 9728
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll: 10752
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll: 10752
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll: 10752
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/Microsoft.Extensions.Logging.Generators.dll: 64000
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll: 12288
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll: 10240
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll: 9728
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/analyzers/dotnet/roslynx.y/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll: 9728
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/data/FrameworkList.xml: 33002
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/data/PackageOverrides.txt: 6616
|
||||
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/ref/netx.y/Microsoft.AspNetCore.Antiforgery.dll: 23552
|
||||
|
@ -932,128 +932,128 @@
|
|||
./packs/Microsoft.NETCore.App.Runtime.banana-rid/x.y.z/runtimes/banana-rid/native/libSystem.Security.Cryptography.Native.OpenSsl.so: 361656
|
||||
./packs/NETStandard.Library.Ref/x.y.z/data/FrameworkList.xml: 25681
|
||||
./packs/NETStandard.Library.Ref/x.y.z/data/PackageOverrides.txt: 3177
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/Microsoft.Win32.Primitives.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/mscorlib.dll: 37888
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/netstandard.dll: 1597440
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/netstandard.xml: 16615788
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.AppContext.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Buffers.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Collections.Concurrent.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Collections.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Collections.NonGeneric.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Collections.Specialized.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ComponentModel.Composition.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ComponentModel.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ComponentModel.EventBasedAsync.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ComponentModel.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ComponentModel.TypeConverter.dll: 5120
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Console.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Core.dll: 8192
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Data.Common.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Data.dll: 7680
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.Contracts.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.Debug.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.FileVersionInfo.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.Process.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.StackTrace.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.TextWriterTraceListener.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.Tools.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.TraceSource.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Diagnostics.Tracing.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.dll: 30208
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Drawing.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Drawing.Primitives.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Dynamic.Runtime.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Globalization.Calendars.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Globalization.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Globalization.Extensions.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.Compression.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.Compression.FileSystem.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.Compression.ZipFile.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.FileSystem.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.FileSystem.DriveInfo.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.FileSystem.Primitives.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.FileSystem.Watcher.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.IsolatedStorage.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.MemoryMappedFiles.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.Pipes.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.IO.UnmanagedMemoryStream.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Linq.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Linq.Expressions.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Linq.Parallel.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Linq.Queryable.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Memory.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.Http.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.NameResolution.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.NetworkInformation.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.Ping.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.Primitives.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.Requests.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.Security.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.Sockets.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.WebHeaderCollection.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.WebSockets.Client.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Net.WebSockets.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Numerics.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Numerics.Vectors.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ObjectModel.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.DispatchProxy.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.Emit.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.Emit.ILGeneration.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.Emit.Lightweight.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.Extensions.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Reflection.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Resources.Reader.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Resources.ResourceManager.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Resources.Writer.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.CompilerServices.VisualC.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.dll: 11264
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Extensions.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Handles.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.InteropServices.dll: 6144
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.InteropServices.RuntimeInformation.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Numerics.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Serialization.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Serialization.Formatters.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Serialization.Json.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Serialization.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Runtime.Serialization.Xml.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Claims.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Cryptography.Algorithms.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Cryptography.Csp.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Cryptography.Encoding.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Cryptography.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Cryptography.X509Certificates.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.Principal.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Security.SecureString.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ServiceModel.Web.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Text.Encoding.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Text.Encoding.Extensions.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Text.RegularExpressions.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.Overlapped.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.Tasks.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.Tasks.Extensions.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.Tasks.Parallel.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.Thread.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.ThreadPool.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Threading.Timer.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Transactions.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.ValueTuple.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Web.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Windows.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.dll: 11264
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.Linq.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.ReaderWriter.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.Serialization.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.XDocument.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.XmlDocument.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.XmlSerializer.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.XPath.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y.z/System.Xml.XPath.XDocument.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/Microsoft.Win32.Primitives.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/mscorlib.dll: 37888
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/netstandard.dll: 1597440
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/netstandard.xml: 16615788
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.AppContext.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Buffers.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Collections.Concurrent.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Collections.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Collections.NonGeneric.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Collections.Specialized.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ComponentModel.Composition.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ComponentModel.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ComponentModel.EventBasedAsync.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ComponentModel.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ComponentModel.TypeConverter.dll: 5120
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Console.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Core.dll: 8192
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Data.Common.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Data.dll: 7680
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.Contracts.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.Debug.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.FileVersionInfo.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.Process.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.StackTrace.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.TextWriterTraceListener.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.Tools.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.TraceSource.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Diagnostics.Tracing.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.dll: 30208
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Drawing.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Drawing.Primitives.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Dynamic.Runtime.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Globalization.Calendars.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Globalization.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Globalization.Extensions.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.Compression.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.Compression.FileSystem.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.Compression.ZipFile.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.FileSystem.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.FileSystem.DriveInfo.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.FileSystem.Primitives.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.FileSystem.Watcher.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.IsolatedStorage.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.MemoryMappedFiles.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.Pipes.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.IO.UnmanagedMemoryStream.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Linq.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Linq.Expressions.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Linq.Parallel.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Linq.Queryable.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Memory.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.Http.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.NameResolution.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.NetworkInformation.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.Ping.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.Primitives.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.Requests.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.Security.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.Sockets.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.WebHeaderCollection.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.WebSockets.Client.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Net.WebSockets.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Numerics.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Numerics.Vectors.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ObjectModel.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.DispatchProxy.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.Emit.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.Emit.ILGeneration.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.Emit.Lightweight.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.Extensions.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Reflection.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Resources.Reader.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Resources.ResourceManager.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Resources.Writer.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.CompilerServices.VisualC.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.dll: 11264
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Extensions.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Handles.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.InteropServices.dll: 6144
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.InteropServices.RuntimeInformation.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Numerics.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Serialization.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Serialization.Formatters.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Serialization.Json.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Serialization.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Runtime.Serialization.Xml.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Claims.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Cryptography.Algorithms.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Cryptography.Csp.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Cryptography.Encoding.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Cryptography.Primitives.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Cryptography.X509Certificates.dll: 4608
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.Principal.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Security.SecureString.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ServiceModel.Web.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Text.Encoding.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Text.Encoding.Extensions.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Text.RegularExpressions.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.Overlapped.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.Tasks.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.Tasks.Extensions.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.Tasks.Parallel.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.Thread.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.ThreadPool.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Threading.Timer.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Transactions.dll: 4096
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.ValueTuple.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Web.dll: 3072
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Windows.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.dll: 11264
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.Linq.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.ReaderWriter.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.Serialization.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.XDocument.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.XmlDocument.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.XmlSerializer.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.XPath.dll: 3584
|
||||
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandardx.y/System.Xml.XPath.XDocument.dll: 3072
|
||||
./sdk-manifests/x.y.z/microsoft.net.workload.emscripten.current/x.y.z/WorkloadManifest.json: 2818
|
||||
./sdk-manifests/x.y.z/microsoft.net.workload.emscripten.current/x.y.z/WorkloadManifest.targets: 2156
|
||||
./sdk-manifests/x.y.z/microsoft.net.workload.emscripten.net6/x.y.z/WorkloadManifest.json: 1956
|
||||
|
@ -3021,15 +3021,15 @@
|
|||
./sdk/x.y.z/System.ServiceProcess.ServiceController.dll: 24064
|
||||
./sdk/x.y.z/System.Windows.Extensions.dll: 12800
|
||||
./sdk/x.y.z/testhost-latest.runtimeconfig.json: 193
|
||||
./sdk/x.y.z/testhost-x.y.z-1.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y.z-2.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y.z-3.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y.z-4.runtimeconfig.json: 152
|
||||
./sdk/x.y.z/testhost-x.y.z-5.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y.z-6.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y.z-7.runtimeconfig.json: 152
|
||||
./sdk/x.y.z/testhost-x.y.z-8.runtimeconfig.json: 152
|
||||
./sdk/x.y.z/testhost-x.y.z.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y-1.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y-2.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y-3.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y-4.runtimeconfig.json: 152
|
||||
./sdk/x.y.z/testhost-x.y-5.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y-6.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost-x.y-7.runtimeconfig.json: 152
|
||||
./sdk/x.y.z/testhost-x.y-8.runtimeconfig.json: 152
|
||||
./sdk/x.y.z/testhost-x.y.runtimeconfig.json: 159
|
||||
./sdk/x.y.z/testhost.deps.json: 29456
|
||||
./sdk/x.y.z/testhost.dll: 77312
|
||||
./sdk/x.y.z/tr/dotnet.resources.dll: 182272
|
||||
|
@ -3336,8 +3336,8 @@ Microsoft.NET.Sdk.WorkloadMSBuildSdkResolver.x.y.z.nupkg: 18247
|
|||
Microsoft.NET.Sdk.x.y.z.nupkg: 974409
|
||||
Microsoft.NET.StringTools.x.y.z.nupkg: 101680
|
||||
Microsoft.NET.WebAssembly.Threading.x.y.z.nupkg: 37807
|
||||
Microsoft.NET.Workload.Emscripten.Current.Manifest-x.y.z-1.nupkg: 10105
|
||||
Microsoft.NET.Workload.Emscripten.Current.Manifest-x.y.z.nupkg: 10082
|
||||
Microsoft.NET.Workload.Emscripten.Current.Manifest-x.y.z.Transport.x.y.z.nupkg: 10105
|
||||
Microsoft.NET.Workload.Emscripten.net6.Manifest-x.y.z.nupkg: 9750
|
||||
Microsoft.NET.Workload.Emscripten.net7.Manifest-x.y.z.nupkg: 10059
|
||||
Microsoft.NET.Workload.Mono.ToolChain.Current.Manifest-x.y.z.nupkg: 30117
|
||||
|
@ -3436,7 +3436,7 @@ System.Diagnostics.PerformanceCounter.x.y.z.nupkg: 138088
|
|||
System.DirectoryServices.AccountManagement.x.y.z.nupkg: 209181
|
||||
System.DirectoryServices.Protocols.x.y.z.nupkg: 323675
|
||||
System.DirectoryServices.x.y.z.nupkg: 395379
|
||||
System.Formats.Asnx.y.z.nupkg: 115059
|
||||
System.Formats.Asn1.x.y.z.nupkg: 115059
|
||||
System.Formats.Cbor.x.y.z.nupkg: 102054
|
||||
System.IdentityModel.Tokens.Jwt.x.y.z.nupkg: 39747
|
||||
System.IO.Hashing.x.y.z.nupkg: 68025
|
||||
|
|
Loading…
Add table
Reference in a new issue