Stop producing unused package archives (#6073)

The following package archives which are no longer used by partner teams. It is expected that these will be replaced by targeting packs.

* LZMA (was used by dotnet-cli)
* Package zips (ended up not getting used by anyone)
* Compat package zips (was used by Azure Web Apps)
This commit is contained in:
Nate McMaster 2018-12-20 20:07:40 -08:00 committed by GitHub
parent 92adad62e3
commit 2af766db49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
38 changed files with 0 additions and 19638 deletions

View File

@ -1,35 +0,0 @@
<Project>
<Target Name="CheckForPreviousReleaseArchiveBaseline" BeforeTargets="FastCheck">
<MSBuild Projects="@(ArchiveProjects)"
Targets="CheckForPreviousReleaseArchiveBaseline" />
</Target>
<ItemGroup>
<ArchiveProjects Include="$(RepositoryRoot)src\PackageArchive\Archive.*\*.*proj" />
</ItemGroup>
<Target Name="BuildFallbackArchive" DependsOnTargets="ResolveSharedSourcesPackageInfo;GetProjectArtifactInfo;GetFxProjectArtifactInfo;ResolveRepoInfo;GeneratePropsFiles">
<PropertyGroup>
<ArchiveBuildProps>
DotNetRestoreSourcePropsPath=$(GeneratedRestoreSourcesPropsPath);
DotNetPackageVersionPropsPath=$(GeneratedPackageVersionPropsPath);
_BuildToolsAssembly=$(_BuildToolsAssembly)
</ArchiveBuildProps>
</PropertyGroup>
<Error Text="Could not find any package archive projects to build"
Condition=" @(ArchiveProjects->Count()) == 0 " />
<MSBuild Projects="@(ArchiveProjects)"
Targets="Restore"
BuildInParallel="false"
StopOnFirstFailure="true"
Properties="$(ArchiveBuildProps);_Dummy=restore" />
<MSBuild Projects="@(ArchiveProjects)"
Targets="Build"
BuildInParallel="false"
StopOnFirstFailure="true"
Properties="$(ArchiveBuildProps)" />
</Target>
</Project>

View File

@ -163,7 +163,6 @@
<MicrosoftCodeAnalysisCSharpPackageVersion>2.8.0</MicrosoftCodeAnalysisCSharpPackageVersion>
<MicrosoftCodeAnalysisCSharpWorkspacesPackageVersion>2.8.0</MicrosoftCodeAnalysisCSharpWorkspacesPackageVersion>
<MicrosoftDiaSymReaderNativePackageVersion>1.7.0</MicrosoftDiaSymReaderNativePackageVersion>
<MicrosoftDotNetArchivePackageVersion>0.2.0-beta-63019-01</MicrosoftDotNetArchivePackageVersion>
<MicrosoftDotNetProjectModelPackageVersion>1.0.0-rc3-003121</MicrosoftDotNetProjectModelPackageVersion>
<MicrosoftExtensionsPlatformAbstractionsPackageVersion>1.1.0</MicrosoftExtensionsPlatformAbstractionsPackageVersion>
<MicrosoftIdentityModelClientsActiveDirectoryPackageVersion>3.19.8</MicrosoftIdentityModelClientsActiveDirectoryPackageVersion>

View File

@ -1,6 +1,5 @@
<Project>
<Import Project="RepositoryBuild.targets" />
<Import Project="PackageArchive.targets" />
<Import Project="AzureIntegration.targets" />
<Import Project="SharedFx.targets" />
<Import Project="CodeSign.targets" />

View File

@ -1,70 +0,0 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.IO;
using System.Threading;
using Microsoft.Build.Framework;
using Microsoft.Build.Utilities;
using Microsoft.DotNet.Archive;
namespace RepoTasks
{
public class CreateLzma : Task, ICancelableTask
{
private readonly CancellationTokenSource _cts = new CancellationTokenSource();
[Required]
public string OutputPath { get; set; }
[Required]
public string[] Sources { get; set; }
public void Cancel() => _cts.Cancel();
public override bool Execute()
{
var progress = new MSBuildProgressReport(Log, _cts.Token);
using (var archive = new IndexedArchive())
{
foreach (var source in Sources)
{
if (Directory.Exists(source))
{
var trimmedSource = source.TrimEnd(new []{ '\\', '/' });
Log.LogMessage(MessageImportance.High, $"Adding directory: {trimmedSource}");
archive.AddDirectory(trimmedSource, progress);
}
else
{
Log.LogMessage(MessageImportance.High, $"Adding file: {source}");
archive.AddFile(source, Path.GetFileName(source));
}
}
archive.Save(OutputPath, progress);
}
return !Log.HasLoggedErrors;
}
private class MSBuildProgressReport : IProgress<ProgressReport>
{
private TaskLoggingHelper _log;
private readonly CancellationToken _cancellationToken;
public MSBuildProgressReport(TaskLoggingHelper log, CancellationToken cancellationToken)
{
_log = log;
_cancellationToken = cancellationToken;
}
public void Report(ProgressReport value)
{
var complete = (double)value.Ticks / value.Total;
_log.LogMessage(MessageImportance.Low, $"Progress: {value.Phase} - {complete:P}");
_cancellationToken.ThrowIfCancellationRequested(); // because LZMA apis don't take a cancellation token, throw from the logger (yes, its ugly, but it works.)
}
}
}
}

View File

@ -1,64 +0,0 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Microsoft.Build.Framework;
using System;
using System.Collections.Concurrent;
using System.IO;
using System.Threading.Tasks;
using System.Xml.Linq;
namespace RepoTasks
{
/// <summary>
/// Filters a list of .xml files to only those that are .NET Xml docs files
/// </summary>
public class GetDocXmlFiles : Microsoft.Build.Utilities.Task
{
[Required]
public ITaskItem[] Files { get; set; }
[Output]
public ITaskItem[] XmlDocFiles { get; set; }
public override bool Execute()
{
var xmlDocs = new ConcurrentBag<ITaskItem>();
Parallel.ForEach(Files, f =>
{
try
{
using (var file = File.OpenRead(f.ItemSpec))
using (var reader = new StreamReader(file))
{
string line;
for (var i = 0; i < 2; i++)
{
line = reader.ReadLine();
if (i == 0 && line.StartsWith("<?xml", StringComparison.Ordinal))
{
line = line.Substring(line.IndexOf("?>") + 2);
}
if (line.StartsWith("<doc>", StringComparison.OrdinalIgnoreCase) || line.StartsWith("<doc xml:", StringComparison.OrdinalIgnoreCase))
{
xmlDocs.Add(f);
return;
}
}
}
}
catch (Exception ex)
{
Log.LogMessage(MessageImportance.Normal, $"Failed to read {f.ItemSpec}: {ex.ToString()}");
}
Log.LogMessage($"Did not detect {f.ItemSpec} as an xml doc file");
});
XmlDocFiles = xmlDocs.ToArray();
Log.LogMessage($"Found {XmlDocFiles.Length} xml doc file(s)");
return true;
}
}
}

View File

@ -8,7 +8,6 @@
<ItemGroup>
<PackageReference Remove="Internal.AspNetCore.Sdk" />
<PackageReference Include="Microsoft.DotNet.Archive" Version="$(MicrosoftDotNetArchivePackageVersion)" />
<PackageReference Include="NuGet.Build.Tasks" Version="4.9.1" />
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="$(DevDependency_MicrosoftExtensionsDependencyModelPackageVersion)" />
<PackageReference Include="WindowsAzure.Storage" Version="$(DevDependency_WindowsAzureStoragePackageVersion)" />

View File

@ -3,9 +3,7 @@
<_RepoTaskAssembly>$(MSBuildThisFileDirectory)bin\publish\RepoTasks.dll</_RepoTaskAssembly>
</PropertyGroup>
<UsingTask TaskName="RepoTasks.CreateLzma" AssemblyFile="$(_RepoTaskAssembly)" />
<UsingTask TaskName="RepoTasks.GenerateRestoreSourcesPropsFile" AssemblyFile="$(_RepoTaskAssembly)" />
<UsingTask TaskName="RepoTasks.GetDocXmlFiles" AssemblyFile="$(_RepoTaskAssembly)" />
<UsingTask TaskName="RepoTasks.JoinItems" AssemblyFile="$(_RepoTaskAssembly)" />
<UsingTask TaskName="RepoTasks.OrderBy" AssemblyFile="$(_RepoTaskAssembly)" />
<UsingTask TaskName="RepoTasks.GenerateSharedFrameworkMetadataFiles" AssemblyFile="$(_RepoTaskAssembly)" />

View File

@ -1,14 +0,0 @@
<Project>
<Import Project="..\Archive.props" />
<!-- Same as Archive.CiServer.Patch, but it includes .nupkg files for compatibility with 1.x versions of the .NET Core SDK -->
<PropertyGroup>
<TargetFileName>nuGetPackagesArchive-ci-server-compat-$(PackageVersion).patch.zip</TargetFileName>
<IsIncremental>true</IsIncremental>
<IncludeXmlDocs>false</IncludeXmlDocs>
<IncludeNupkgFiles>true</IncludeNupkgFiles>
</PropertyGroup>
<Import Project="..\Archive.targets" />
</Project>

View File

@ -1,381 +0,0 @@
microsoft.netcore.app\2.1.0\.signature.p7s
microsoft.netcore.app\2.1.0\build\netcoreapp2.1\Microsoft.NETCore.App.PlatformManifest.txt
microsoft.netcore.app\2.1.0\build\netcoreapp2.1\Microsoft.NETCore.App.props
microsoft.netcore.app\2.1.0\build\netcoreapp2.1\Microsoft.NETCore.App.targets
microsoft.netcore.app\2.1.0\LICENSE.TXT
microsoft.netcore.app\2.1.0\microsoft.netcore.app.2.1.0.nupkg
microsoft.netcore.app\2.1.0\microsoft.netcore.app.2.1.0.nupkg.sha512
microsoft.netcore.app\2.1.0\microsoft.netcore.app.nuspec
microsoft.netcore.app\2.1.0\Microsoft.NETCore.App.versions.txt
microsoft.netcore.app\2.1.0\ref\netcoreapp\_._
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\Microsoft.CSharp.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\Microsoft.VisualBasic.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\Microsoft.Win32.Primitives.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\mscorlib.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\netstandard.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.AppContext.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Buffers.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Collections.Concurrent.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Collections.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Collections.Immutable.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Collections.NonGeneric.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Collections.Specialized.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ComponentModel.Annotations.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ComponentModel.DataAnnotations.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ComponentModel.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ComponentModel.EventBasedAsync.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ComponentModel.Primitives.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ComponentModel.TypeConverter.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Configuration.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Console.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Core.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Data.Common.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Data.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.Contracts.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.Debug.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.DiagnosticSource.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.FileVersionInfo.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.Process.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.StackTrace.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.TextWriterTraceListener.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.Tools.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.TraceSource.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.Tracing.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Drawing.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Drawing.Primitives.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Dynamic.Runtime.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Globalization.Calendars.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Globalization.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Globalization.Extensions.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.Compression.Brotli.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.Compression.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.Compression.FileSystem.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.Compression.ZipFile.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.FileSystem.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.FileSystem.DriveInfo.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.FileSystem.Primitives.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.FileSystem.Watcher.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.IsolatedStorage.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.MemoryMappedFiles.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.Pipes.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.UnmanagedMemoryStream.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Linq.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Linq.Expressions.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Linq.Parallel.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Linq.Queryable.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Memory.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Http.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.HttpListener.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Mail.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.NameResolution.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.NetworkInformation.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Ping.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Primitives.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Requests.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Security.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.ServicePoint.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Sockets.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.WebClient.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.WebHeaderCollection.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.WebProxy.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.WebSockets.Client.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.WebSockets.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Numerics.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Numerics.Vectors.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ObjectModel.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.DispatchProxy.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.Emit.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.Emit.ILGeneration.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.Emit.Lightweight.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.Extensions.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.Metadata.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.Primitives.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.TypeExtensions.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Resources.Reader.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Resources.ResourceManager.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Resources.Writer.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.CompilerServices.VisualC.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Extensions.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Handles.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.InteropServices.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.InteropServices.RuntimeInformation.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.InteropServices.WindowsRuntime.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Loader.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Numerics.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Serialization.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Serialization.Formatters.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Serialization.Json.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Serialization.Primitives.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Serialization.Xml.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Claims.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Cryptography.Algorithms.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Cryptography.Csp.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Cryptography.Encoding.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Cryptography.Primitives.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Cryptography.X509Certificates.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Principal.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.SecureString.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ServiceModel.Web.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ServiceProcess.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Text.Encoding.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Text.Encoding.Extensions.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Text.RegularExpressions.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Overlapped.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Tasks.Dataflow.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Tasks.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Tasks.Extensions.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Tasks.Parallel.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Thread.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.ThreadPool.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Timer.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Transactions.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Transactions.Local.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ValueTuple.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Web.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Web.HttpUtility.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Windows.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.Linq.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.ReaderWriter.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.Serialization.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.XDocument.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.XmlDocument.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.XmlSerializer.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.XPath.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.XPath.XDocument.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\WindowsBase.dll
microsoft.netcore.app\2.1.0\runtime.json
microsoft.netcore.app\2.1.0\THIRD-PARTY-NOTICES.TXT
microsoft.netcore.dotnetapphost\2.1.0\.signature.p7s
microsoft.netcore.dotnetapphost\2.1.0\LICENSE.TXT
microsoft.netcore.dotnetapphost\2.1.0\microsoft.netcore.dotnetapphost.2.1.0.nupkg
microsoft.netcore.dotnetapphost\2.1.0\microsoft.netcore.dotnetapphost.2.1.0.nupkg.sha512
microsoft.netcore.dotnetapphost\2.1.0\microsoft.netcore.dotnetapphost.nuspec
microsoft.netcore.dotnetapphost\2.1.0\runtime.json
microsoft.netcore.dotnetapphost\2.1.0\THIRD-PARTY-NOTICES.TXT
microsoft.netcore.dotnethostpolicy\2.1.0\.signature.p7s
microsoft.netcore.dotnethostpolicy\2.1.0\LICENSE.TXT
microsoft.netcore.dotnethostpolicy\2.1.0\microsoft.netcore.dotnethostpolicy.2.1.0.nupkg
microsoft.netcore.dotnethostpolicy\2.1.0\microsoft.netcore.dotnethostpolicy.2.1.0.nupkg.sha512
microsoft.netcore.dotnethostpolicy\2.1.0\microsoft.netcore.dotnethostpolicy.nuspec
microsoft.netcore.dotnethostpolicy\2.1.0\runtime.json
microsoft.netcore.dotnethostpolicy\2.1.0\THIRD-PARTY-NOTICES.TXT
microsoft.netcore.dotnethostresolver\2.1.0\.signature.p7s
microsoft.netcore.dotnethostresolver\2.1.0\LICENSE.TXT
microsoft.netcore.dotnethostresolver\2.1.0\microsoft.netcore.dotnethostresolver.2.1.0.nupkg
microsoft.netcore.dotnethostresolver\2.1.0\microsoft.netcore.dotnethostresolver.2.1.0.nupkg.sha512
microsoft.netcore.dotnethostresolver\2.1.0\microsoft.netcore.dotnethostresolver.nuspec
microsoft.netcore.dotnethostresolver\2.1.0\runtime.json
microsoft.netcore.dotnethostresolver\2.1.0\THIRD-PARTY-NOTICES.TXT
microsoft.netcore.targets\2.1.0\.signature.p7s
microsoft.netcore.targets\2.1.0\lib\netstandard1.0\_._
microsoft.netcore.targets\2.1.0\LICENSE.TXT
microsoft.netcore.targets\2.1.0\microsoft.netcore.targets.2.1.0.nupkg
microsoft.netcore.targets\2.1.0\microsoft.netcore.targets.2.1.0.nupkg.sha512
microsoft.netcore.targets\2.1.0\microsoft.netcore.targets.nuspec
microsoft.netcore.targets\2.1.0\runtime.json
microsoft.netcore.targets\2.1.0\THIRD-PARTY-NOTICES.TXT
microsoft.netcore.targets\2.1.0\useSharedDesignerContext.txt
microsoft.netcore.targets\2.1.0\version.txt
microsoft.visualstudio.web.codegeneration.contracts\2.1.3\.signature.p7s
microsoft.visualstudio.web.codegeneration.contracts\2.1.3\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll
microsoft.visualstudio.web.codegeneration.contracts\2.1.3\microsoft.visualstudio.web.codegeneration.contracts.2.1.3.nupkg
microsoft.visualstudio.web.codegeneration.contracts\2.1.3\microsoft.visualstudio.web.codegeneration.contracts.2.1.3.nupkg.sha512
microsoft.visualstudio.web.codegeneration.contracts\2.1.3\microsoft.visualstudio.web.codegeneration.contracts.nuspec
microsoft.visualstudio.web.codegeneration.core\2.1.3\.signature.p7s
microsoft.visualstudio.web.codegeneration.core\2.1.3\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll
microsoft.visualstudio.web.codegeneration.core\2.1.3\microsoft.visualstudio.web.codegeneration.core.2.1.3.nupkg
microsoft.visualstudio.web.codegeneration.core\2.1.3\microsoft.visualstudio.web.codegeneration.core.2.1.3.nupkg.sha512
microsoft.visualstudio.web.codegeneration.core\2.1.3\microsoft.visualstudio.web.codegeneration.core.nuspec
microsoft.visualstudio.web.codegeneration.design\2.1.3\.signature.p7s
microsoft.visualstudio.web.codegeneration.design\2.1.3\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.design\2.1.3\lib\netstandard2.0\dotnet-aspnet-codegenerator-design.dll
microsoft.visualstudio.web.codegeneration.design\2.1.3\microsoft.visualstudio.web.codegeneration.design.2.1.3.nupkg
microsoft.visualstudio.web.codegeneration.design\2.1.3\microsoft.visualstudio.web.codegeneration.design.2.1.3.nupkg.sha512
microsoft.visualstudio.web.codegeneration.design\2.1.3\microsoft.visualstudio.web.codegeneration.design.nuspec
microsoft.visualstudio.web.codegeneration.design\2.1.3\runtimes\win7-x64\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.design\2.1.3\runtimes\win7-x86\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.design\2.1.3\runtimes\win-arm\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.design\2.1.3\runtimes\win-arm64\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.3\.signature.p7s
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.3\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.3\microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.1.3.nupkg
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.3\microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.1.3.nupkg.sha512
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.3\microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.3\Templates\DbContext\NewLocalDbContext.cshtml
microsoft.visualstudio.web.codegeneration.templating\2.1.3\.signature.p7s
microsoft.visualstudio.web.codegeneration.templating\2.1.3\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll
microsoft.visualstudio.web.codegeneration.templating\2.1.3\microsoft.visualstudio.web.codegeneration.templating.2.1.3.nupkg
microsoft.visualstudio.web.codegeneration.templating\2.1.3\microsoft.visualstudio.web.codegeneration.templating.2.1.3.nupkg.sha512
microsoft.visualstudio.web.codegeneration.templating\2.1.3\microsoft.visualstudio.web.codegeneration.templating.nuspec
microsoft.visualstudio.web.codegeneration.utils\2.1.3\.signature.p7s
microsoft.visualstudio.web.codegeneration.utils\2.1.3\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll
microsoft.visualstudio.web.codegeneration.utils\2.1.3\microsoft.visualstudio.web.codegeneration.utils.2.1.3.nupkg
microsoft.visualstudio.web.codegeneration.utils\2.1.3\microsoft.visualstudio.web.codegeneration.utils.2.1.3.nupkg.sha512
microsoft.visualstudio.web.codegeneration.utils\2.1.3\microsoft.visualstudio.web.codegeneration.utils.nuspec
microsoft.visualstudio.web.codegeneration\2.1.3\.signature.p7s
microsoft.visualstudio.web.codegeneration\2.1.3\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.dll
microsoft.visualstudio.web.codegeneration\2.1.3\microsoft.visualstudio.web.codegeneration.2.1.3.nupkg
microsoft.visualstudio.web.codegeneration\2.1.3\microsoft.visualstudio.web.codegeneration.2.1.3.nupkg.sha512
microsoft.visualstudio.web.codegeneration\2.1.3\microsoft.visualstudio.web.codegeneration.nuspec
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\.signature.p7s
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Generators\ParameterDefinitions\area.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Generators\ParameterDefinitions\controller.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Generators\ParameterDefinitions\identity.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Generators\ParameterDefinitions\razorpage.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Generators\ParameterDefinitions\view.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\lib\netstandard2.0\identitygeneratorfilesconfig.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\microsoft.visualstudio.web.codegenerators.mvc.2.1.3.nupkg
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\microsoft.visualstudio.web.codegenerators.mvc.2.1.3.nupkg.sha512
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\microsoft.visualstudio.web.codegenerators.mvc.nuspec
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ControllerGenerator\ApiControllerWithActions.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ControllerGenerator\ApiControllerWithContext.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ControllerGenerator\ApiEmptyController.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ControllerGenerator\ControllerWithActions.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ControllerGenerator\EmptyController.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ControllerGenerator\MvcControllerWithContext.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\_LoginPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Data\ApplicationDbContext.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Data\ApplicationUser.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\IdentityHostingStartup.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\_Layout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\_ValidationScriptsPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\_ViewImports.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\_ViewStart.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account._ViewImports.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.AccessDenied.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.AccessDenied.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ConfirmEmail.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ConfirmEmail.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ExternalLogin.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ExternalLogin.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ForgotPassword.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ForgotPassword.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.Lockout.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.Lockout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.Login.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.Login.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.LoginWith2fa.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.LoginWith2fa.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.Logout.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.Logout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.Register.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.Register.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ResetPassword.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ResetPassword.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage._Layout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage._ManageNav.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage._StatusMessage.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage._ViewImports.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ManageNavPages.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Error.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Error.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\ScaffoldingReadme.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\SupportPages._CookieConsentPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\SupportPages._ViewImports.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\SupportPages._ViewStart.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\css\site.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\css\site.min.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\favicon.ico
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\images\banner1.svg
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\images\banner2.svg
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\images\banner3.svg
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\js\site.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\js\site.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\.bower.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.eot
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.svg
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.ttf
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff2
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\js\npm.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\LICENSE
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery\.bower.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery\dist\jquery.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery\LICENSE.txt
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation\.bower.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation\LICENSE.md
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\.bower.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\LICENSE.txt
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\MvcLayout\_Layout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\MvcLayout\Error.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\_ValidationScriptsPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\Create.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\CreatePageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\Delete.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\DeletePageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\Details.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\DetailsPageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\Edit.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\EditPageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\Empty.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\EmptyPageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\List.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\ListPageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Startup\ReadMe.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Startup\Startup.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ViewGenerator\_ValidationScriptsPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ViewGenerator\Create.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ViewGenerator\Delete.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ViewGenerator\Details.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ViewGenerator\Edit.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ViewGenerator\Empty.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ViewGenerator\List.cshtml

View File

@ -1,195 +0,0 @@
microsoft.visualstudio.web.codegeneration.contracts\2.1.4\.signature.p7s
microsoft.visualstudio.web.codegeneration.contracts\2.1.4\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll
microsoft.visualstudio.web.codegeneration.contracts\2.1.4\microsoft.visualstudio.web.codegeneration.contracts.2.1.4.nupkg
microsoft.visualstudio.web.codegeneration.contracts\2.1.4\microsoft.visualstudio.web.codegeneration.contracts.2.1.4.nupkg.sha512
microsoft.visualstudio.web.codegeneration.contracts\2.1.4\microsoft.visualstudio.web.codegeneration.contracts.nuspec
microsoft.visualstudio.web.codegeneration.core\2.1.4\.signature.p7s
microsoft.visualstudio.web.codegeneration.core\2.1.4\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll
microsoft.visualstudio.web.codegeneration.core\2.1.4\microsoft.visualstudio.web.codegeneration.core.2.1.4.nupkg
microsoft.visualstudio.web.codegeneration.core\2.1.4\microsoft.visualstudio.web.codegeneration.core.2.1.4.nupkg.sha512
microsoft.visualstudio.web.codegeneration.core\2.1.4\microsoft.visualstudio.web.codegeneration.core.nuspec
microsoft.visualstudio.web.codegeneration.design\2.1.4\.signature.p7s
microsoft.visualstudio.web.codegeneration.design\2.1.4\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.design\2.1.4\lib\netstandard2.0\dotnet-aspnet-codegenerator-design.dll
microsoft.visualstudio.web.codegeneration.design\2.1.4\microsoft.visualstudio.web.codegeneration.design.2.1.4.nupkg
microsoft.visualstudio.web.codegeneration.design\2.1.4\microsoft.visualstudio.web.codegeneration.design.2.1.4.nupkg.sha512
microsoft.visualstudio.web.codegeneration.design\2.1.4\microsoft.visualstudio.web.codegeneration.design.nuspec
microsoft.visualstudio.web.codegeneration.design\2.1.4\runtimes\win7-x64\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.design\2.1.4\runtimes\win7-x86\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.design\2.1.4\runtimes\win-arm\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.design\2.1.4\runtimes\win-arm64\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.4\.signature.p7s
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.4\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.4\microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.1.4.nupkg
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.4\microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.1.4.nupkg.sha512
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.4\microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.4\Templates\DbContext\NewLocalDbContext.cshtml
microsoft.visualstudio.web.codegeneration.templating\2.1.4\.signature.p7s
microsoft.visualstudio.web.codegeneration.templating\2.1.4\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll
microsoft.visualstudio.web.codegeneration.templating\2.1.4\microsoft.visualstudio.web.codegeneration.templating.2.1.4.nupkg
microsoft.visualstudio.web.codegeneration.templating\2.1.4\microsoft.visualstudio.web.codegeneration.templating.2.1.4.nupkg.sha512
microsoft.visualstudio.web.codegeneration.templating\2.1.4\microsoft.visualstudio.web.codegeneration.templating.nuspec
microsoft.visualstudio.web.codegeneration.utils\2.1.4\.signature.p7s
microsoft.visualstudio.web.codegeneration.utils\2.1.4\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll
microsoft.visualstudio.web.codegeneration.utils\2.1.4\microsoft.visualstudio.web.codegeneration.utils.2.1.4.nupkg
microsoft.visualstudio.web.codegeneration.utils\2.1.4\microsoft.visualstudio.web.codegeneration.utils.2.1.4.nupkg.sha512
microsoft.visualstudio.web.codegeneration.utils\2.1.4\microsoft.visualstudio.web.codegeneration.utils.nuspec
microsoft.visualstudio.web.codegeneration\2.1.4\.signature.p7s
microsoft.visualstudio.web.codegeneration\2.1.4\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.dll
microsoft.visualstudio.web.codegeneration\2.1.4\microsoft.visualstudio.web.codegeneration.2.1.4.nupkg
microsoft.visualstudio.web.codegeneration\2.1.4\microsoft.visualstudio.web.codegeneration.2.1.4.nupkg.sha512
microsoft.visualstudio.web.codegeneration\2.1.4\microsoft.visualstudio.web.codegeneration.nuspec
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\.signature.p7s
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Generators\ParameterDefinitions\area.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Generators\ParameterDefinitions\controller.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Generators\ParameterDefinitions\identity.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Generators\ParameterDefinitions\razorpage.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Generators\ParameterDefinitions\view.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\lib\netstandard2.0\identitygeneratorfilesconfig.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\microsoft.visualstudio.web.codegenerators.mvc.2.1.4.nupkg
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\microsoft.visualstudio.web.codegenerators.mvc.2.1.4.nupkg.sha512
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\microsoft.visualstudio.web.codegenerators.mvc.nuspec
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ControllerGenerator\ApiControllerWithActions.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ControllerGenerator\ApiControllerWithContext.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ControllerGenerator\ApiEmptyController.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ControllerGenerator\ControllerWithActions.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ControllerGenerator\EmptyController.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ControllerGenerator\MvcControllerWithContext.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\_LoginPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Data\ApplicationDbContext.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Data\ApplicationUser.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\IdentityHostingStartup.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\_Layout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\_ValidationScriptsPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\_ViewImports.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\_ViewStart.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account._ViewImports.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.AccessDenied.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.AccessDenied.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ConfirmEmail.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ConfirmEmail.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ExternalLogin.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ExternalLogin.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ForgotPassword.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ForgotPassword.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.Lockout.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.Lockout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.Login.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.Login.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.LoginWith2fa.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.LoginWith2fa.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.Logout.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.Logout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.Register.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.Register.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ResetPassword.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ResetPassword.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage._Layout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage._ManageNav.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage._StatusMessage.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage._ViewImports.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ManageNavPages.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Error.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Error.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\ScaffoldingReadme.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\SupportPages._CookieConsentPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\SupportPages._ViewImports.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\SupportPages._ViewStart.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\css\site.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\css\site.min.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\favicon.ico
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\images\banner1.svg
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\images\banner2.svg
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\images\banner3.svg
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\js\site.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\js\site.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\.bower.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.eot
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.svg
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.ttf
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff2
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\js\npm.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\LICENSE
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery\.bower.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery\dist\jquery.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery\LICENSE.txt
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation\.bower.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation\LICENSE.md
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\.bower.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\LICENSE.txt
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\MvcLayout\_Layout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\MvcLayout\Error.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\_ValidationScriptsPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\Create.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\CreatePageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\Delete.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\DeletePageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\Details.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\DetailsPageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\Edit.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\EditPageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\Empty.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\EmptyPageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\List.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\ListPageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Startup\ReadMe.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Startup\Startup.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ViewGenerator\_ValidationScriptsPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ViewGenerator\Create.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ViewGenerator\Delete.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ViewGenerator\Details.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ViewGenerator\Edit.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ViewGenerator\Empty.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ViewGenerator\List.cshtml

View File

@ -1,214 +0,0 @@
microsoft.aspnetcore.razor.design\2.1.2\.signature.p7s
microsoft.aspnetcore.razor.design\2.1.2\build\netstandard2.0\Microsoft.AspNetCore.Razor.Design.CodeGeneration.targets
microsoft.aspnetcore.razor.design\2.1.2\build\netstandard2.0\Microsoft.AspNetCore.Razor.Design.props
microsoft.aspnetcore.razor.design\2.1.2\buildMultiTargeting\Microsoft.AspNetCore.Razor.Design.props
microsoft.aspnetcore.razor.design\2.1.2\microsoft.aspnetcore.razor.design.2.1.2.nupkg
microsoft.aspnetcore.razor.design\2.1.2\microsoft.aspnetcore.razor.design.2.1.2.nupkg.sha512
microsoft.aspnetcore.razor.design\2.1.2\microsoft.aspnetcore.razor.design.nuspec
microsoft.aspnetcore.razor.design\2.1.2\tasks\net46\Microsoft.AspNetCore.Razor.Tasks.dll
microsoft.aspnetcore.razor.design\2.1.2\tasks\netstandard2.0\Microsoft.AspNetCore.Razor.Tasks.dll
microsoft.aspnetcore.razor.design\2.1.2\tools\Microsoft.AspNetCore.Razor.Language.dll
microsoft.aspnetcore.razor.design\2.1.2\tools\Microsoft.CodeAnalysis.CSharp.dll
microsoft.aspnetcore.razor.design\2.1.2\tools\Microsoft.CodeAnalysis.dll
microsoft.aspnetcore.razor.design\2.1.2\tools\Microsoft.CodeAnalysis.Razor.dll
microsoft.aspnetcore.razor.design\2.1.2\tools\Newtonsoft.Json.dll
microsoft.aspnetcore.razor.design\2.1.2\tools\runtimes\unix\lib\netstandard1.3\System.Text.Encoding.CodePages.dll
microsoft.aspnetcore.razor.design\2.1.2\tools\runtimes\win\lib\netstandard1.3\System.Text.Encoding.CodePages.dll
microsoft.aspnetcore.razor.design\2.1.2\tools\rzc.deps.json
microsoft.aspnetcore.razor.design\2.1.2\tools\rzc.dll
microsoft.aspnetcore.razor.design\2.1.2\tools\rzc.runtimeconfig.json
microsoft.visualstudio.web.codegeneration.contracts\2.1.5\.signature.p7s
microsoft.visualstudio.web.codegeneration.contracts\2.1.5\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll
microsoft.visualstudio.web.codegeneration.contracts\2.1.5\microsoft.visualstudio.web.codegeneration.contracts.2.1.5.nupkg
microsoft.visualstudio.web.codegeneration.contracts\2.1.5\microsoft.visualstudio.web.codegeneration.contracts.2.1.5.nupkg.sha512
microsoft.visualstudio.web.codegeneration.contracts\2.1.5\microsoft.visualstudio.web.codegeneration.contracts.nuspec
microsoft.visualstudio.web.codegeneration.core\2.1.5\.signature.p7s
microsoft.visualstudio.web.codegeneration.core\2.1.5\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll
microsoft.visualstudio.web.codegeneration.core\2.1.5\microsoft.visualstudio.web.codegeneration.core.2.1.5.nupkg
microsoft.visualstudio.web.codegeneration.core\2.1.5\microsoft.visualstudio.web.codegeneration.core.2.1.5.nupkg.sha512
microsoft.visualstudio.web.codegeneration.core\2.1.5\microsoft.visualstudio.web.codegeneration.core.nuspec
microsoft.visualstudio.web.codegeneration.design\2.1.5\.signature.p7s
microsoft.visualstudio.web.codegeneration.design\2.1.5\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.design\2.1.5\lib\netstandard2.0\dotnet-aspnet-codegenerator-design.dll
microsoft.visualstudio.web.codegeneration.design\2.1.5\microsoft.visualstudio.web.codegeneration.design.2.1.5.nupkg
microsoft.visualstudio.web.codegeneration.design\2.1.5\microsoft.visualstudio.web.codegeneration.design.2.1.5.nupkg.sha512
microsoft.visualstudio.web.codegeneration.design\2.1.5\microsoft.visualstudio.web.codegeneration.design.nuspec
microsoft.visualstudio.web.codegeneration.design\2.1.5\runtimes\win-arm\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.design\2.1.5\runtimes\win-arm64\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.design\2.1.5\runtimes\win7-x64\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.design\2.1.5\runtimes\win7-x86\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.5\.signature.p7s
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.5\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.5\microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.1.5.nupkg
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.5\microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.1.5.nupkg.sha512
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.5\microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.5\Templates\DbContext\NewLocalDbContext.cshtml
microsoft.visualstudio.web.codegeneration.templating\2.1.5\.signature.p7s
microsoft.visualstudio.web.codegeneration.templating\2.1.5\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll
microsoft.visualstudio.web.codegeneration.templating\2.1.5\microsoft.visualstudio.web.codegeneration.templating.2.1.5.nupkg
microsoft.visualstudio.web.codegeneration.templating\2.1.5\microsoft.visualstudio.web.codegeneration.templating.2.1.5.nupkg.sha512
microsoft.visualstudio.web.codegeneration.templating\2.1.5\microsoft.visualstudio.web.codegeneration.templating.nuspec
microsoft.visualstudio.web.codegeneration.utils\2.1.5\.signature.p7s
microsoft.visualstudio.web.codegeneration.utils\2.1.5\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll
microsoft.visualstudio.web.codegeneration.utils\2.1.5\microsoft.visualstudio.web.codegeneration.utils.2.1.5.nupkg
microsoft.visualstudio.web.codegeneration.utils\2.1.5\microsoft.visualstudio.web.codegeneration.utils.2.1.5.nupkg.sha512
microsoft.visualstudio.web.codegeneration.utils\2.1.5\microsoft.visualstudio.web.codegeneration.utils.nuspec
microsoft.visualstudio.web.codegeneration\2.1.5\.signature.p7s
microsoft.visualstudio.web.codegeneration\2.1.5\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.dll
microsoft.visualstudio.web.codegeneration\2.1.5\microsoft.visualstudio.web.codegeneration.2.1.5.nupkg
microsoft.visualstudio.web.codegeneration\2.1.5\microsoft.visualstudio.web.codegeneration.2.1.5.nupkg.sha512
microsoft.visualstudio.web.codegeneration\2.1.5\microsoft.visualstudio.web.codegeneration.nuspec
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\.signature.p7s
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Generators\ParameterDefinitions\area.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Generators\ParameterDefinitions\controller.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Generators\ParameterDefinitions\identity.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Generators\ParameterDefinitions\razorpage.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Generators\ParameterDefinitions\view.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\lib\netstandard2.0\identitygeneratorfilesconfig.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\microsoft.visualstudio.web.codegenerators.mvc.2.1.5.nupkg
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\microsoft.visualstudio.web.codegenerators.mvc.2.1.5.nupkg.sha512
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\microsoft.visualstudio.web.codegenerators.mvc.nuspec
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ControllerGenerator\ApiControllerWithActions.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ControllerGenerator\ApiControllerWithContext.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ControllerGenerator\ApiEmptyController.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ControllerGenerator\ControllerWithActions.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ControllerGenerator\EmptyController.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ControllerGenerator\MvcControllerWithContext.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\_LoginPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Data\ApplicationDbContext.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Data\ApplicationUser.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\IdentityHostingStartup.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\_Layout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\_ValidationScriptsPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\_ViewImports.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\_ViewStart.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account._ViewImports.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.AccessDenied.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.AccessDenied.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ConfirmEmail.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ConfirmEmail.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ExternalLogin.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ExternalLogin.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ForgotPassword.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ForgotPassword.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.Lockout.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.Lockout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.Login.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.Login.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.LoginWith2fa.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.LoginWith2fa.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.Logout.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.Logout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.Register.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.Register.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ResetPassword.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ResetPassword.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage._Layout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage._ManageNav.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage._StatusMessage.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage._ViewImports.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ManageNavPages.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Error.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Error.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\ScaffoldingReadme.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\SupportPages._CookieConsentPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\SupportPages._ViewImports.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\SupportPages._ViewStart.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\css\site.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\css\site.min.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\favicon.ico
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\images\banner1.svg
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\images\banner2.svg
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\images\banner3.svg
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\js\site.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\js\site.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\.bower.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.eot
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.svg
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.ttf
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff2
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\js\npm.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\LICENSE
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\.bower.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\LICENSE.txt
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation\.bower.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation\LICENSE.md
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery\.bower.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery\dist\jquery.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery\LICENSE.txt
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\MvcLayout\_Layout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\MvcLayout\Error.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\_ValidationScriptsPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\Create.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\CreatePageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\Delete.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\DeletePageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\Details.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\DetailsPageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\Edit.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\EditPageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\Empty.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\EmptyPageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\List.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\ListPageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Startup\ReadMe.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Startup\Startup.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ViewGenerator\_ValidationScriptsPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ViewGenerator\Create.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ViewGenerator\Delete.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ViewGenerator\Details.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ViewGenerator\Edit.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ViewGenerator\Empty.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ViewGenerator\List.cshtml

View File

@ -1,675 +0,0 @@
libuv\1.10.0\.nupkg.metadata
libuv\1.10.0\.signature.p7s
messagepack\1.7.3.4\.nupkg.metadata
messagepack\1.7.3.4\.signature.p7s
microsoft.applicationinsights.aspnetcore\2.1.1\.nupkg.metadata
microsoft.applicationinsights.aspnetcore\2.1.1\.signature.p7s
microsoft.applicationinsights.dependencycollector\2.4.1\.nupkg.metadata
microsoft.applicationinsights.dependencycollector\2.4.1\.signature.p7s
microsoft.applicationinsights\2.4.0\.nupkg.metadata
microsoft.applicationinsights\2.4.0\.signature.p7s
microsoft.aspnet.webapi.client\5.2.6\.nupkg.metadata
microsoft.aspnetcore.all\2.1.1\.nupkg.metadata
microsoft.aspnetcore.antiforgery\2.1.1\.nupkg.metadata
microsoft.aspnetcore.app\2.1.1\.nupkg.metadata
microsoft.aspnetcore.applicationinsights.hostingstartup\2.1.1\.nupkg.metadata
microsoft.aspnetcore.authentication.abstractions\2.1.1\.nupkg.metadata
microsoft.aspnetcore.authentication.azuread.ui\2.1.1\.nupkg.metadata
microsoft.aspnetcore.authentication.azureadb2c.ui\2.1.1\.nupkg.metadata
microsoft.aspnetcore.authentication.cookies\2.1.1\.nupkg.metadata
microsoft.aspnetcore.authentication.core\2.1.1\.nupkg.metadata
microsoft.aspnetcore.authentication.facebook\2.1.1\.nupkg.metadata
microsoft.aspnetcore.authentication.google\2.1.1\.nupkg.metadata
microsoft.aspnetcore.authentication.jwtbearer\2.1.1\.nupkg.metadata
microsoft.aspnetcore.authentication.microsoftaccount\2.1.1\.nupkg.metadata
microsoft.aspnetcore.authentication.oauth\2.1.1\.nupkg.metadata
microsoft.aspnetcore.authentication.openidconnect\2.1.1\.nupkg.metadata
microsoft.aspnetcore.authentication.twitter\2.1.1\.nupkg.metadata
microsoft.aspnetcore.authentication.wsfederation\2.1.1\.nupkg.metadata
microsoft.aspnetcore.authentication\2.1.1\.nupkg.metadata
microsoft.aspnetcore.authorization.policy\2.1.1\.nupkg.metadata
microsoft.aspnetcore.authorization\2.1.1\.nupkg.metadata
microsoft.aspnetcore.azureappservices.hostingstartup\2.1.1\.nupkg.metadata
microsoft.aspnetcore.azureappservicesintegration\2.1.1\.nupkg.metadata
microsoft.aspnetcore.connections.abstractions\2.1.1\.nupkg.metadata
microsoft.aspnetcore.cookiepolicy\2.1.1\.nupkg.metadata
microsoft.aspnetcore.cors\2.1.1\.nupkg.metadata
microsoft.aspnetcore.cryptography.internal\2.1.1\.nupkg.metadata
microsoft.aspnetcore.cryptography.keyderivation\2.1.1\.nupkg.metadata
microsoft.aspnetcore.dataprotection.abstractions\2.1.1\.nupkg.metadata
microsoft.aspnetcore.dataprotection.azurekeyvault\2.1.1\.nupkg.metadata
microsoft.aspnetcore.dataprotection.azurestorage\2.1.1\.nupkg.metadata
microsoft.aspnetcore.dataprotection.extensions\2.1.1\.nupkg.metadata
microsoft.aspnetcore.dataprotection\2.1.1\.nupkg.metadata
microsoft.aspnetcore.diagnostics.abstractions\2.1.1\.nupkg.metadata
microsoft.aspnetcore.diagnostics.entityframeworkcore\2.1.1\.nupkg.metadata
microsoft.aspnetcore.diagnostics\2.1.1\.nupkg.metadata
microsoft.aspnetcore.hostfiltering\2.1.1\.nupkg.metadata
microsoft.aspnetcore.hosting.abstractions\2.1.1\.nupkg.metadata
microsoft.aspnetcore.hosting.server.abstractions\2.1.1\.nupkg.metadata
microsoft.aspnetcore.hosting\2.1.1\.nupkg.metadata
microsoft.aspnetcore.html.abstractions\2.1.1\.nupkg.metadata
microsoft.aspnetcore.http.abstractions\2.1.1\.nupkg.metadata
microsoft.aspnetcore.http.connections.common\1.0.1\.nupkg.metadata
microsoft.aspnetcore.http.connections\1.0.1\.nupkg.metadata
microsoft.aspnetcore.http.extensions\2.1.1\.nupkg.metadata
microsoft.aspnetcore.http.features\2.1.1\.nupkg.metadata
microsoft.aspnetcore.http\2.1.1\.nupkg.metadata
microsoft.aspnetcore.httpoverrides\2.1.1\.nupkg.metadata
microsoft.aspnetcore.httpspolicy\2.1.1\.nupkg.metadata
microsoft.aspnetcore.identity.entityframeworkcore\2.1.1\.nupkg.metadata
microsoft.aspnetcore.identity.ui\2.1.1\.nupkg.metadata
microsoft.aspnetcore.identity\2.1.1\.nupkg.metadata
microsoft.aspnetcore.jsonpatch\2.1.1\.nupkg.metadata
microsoft.aspnetcore.localization.routing\2.1.1\.nupkg.metadata
microsoft.aspnetcore.localization\2.1.1\.nupkg.metadata
microsoft.aspnetcore.middlewareanalysis\2.1.1\.nupkg.metadata
microsoft.aspnetcore.mvc.abstractions\2.1.1\.nupkg.metadata
microsoft.aspnetcore.mvc.analyzers\2.1.1\.nupkg.metadata
microsoft.aspnetcore.mvc.apiexplorer\2.1.1\.nupkg.metadata
microsoft.aspnetcore.mvc.core\2.1.1\.nupkg.metadata
microsoft.aspnetcore.mvc.cors\2.1.1\.nupkg.metadata
microsoft.aspnetcore.mvc.dataannotations\2.1.1\.nupkg.metadata
microsoft.aspnetcore.mvc.formatters.json\2.1.1\.nupkg.metadata
microsoft.aspnetcore.mvc.formatters.xml\2.1.1\.nupkg.metadata
microsoft.aspnetcore.mvc.localization\2.1.1\.nupkg.metadata
microsoft.aspnetcore.mvc.razor.extensions\2.1.1\.nupkg.metadata
microsoft.aspnetcore.mvc.razor.viewcompilation\2.1.1\.nupkg.metadata
microsoft.aspnetcore.mvc.razor\2.1.1\.nupkg.metadata
microsoft.aspnetcore.mvc.razorpages\2.1.1\.nupkg.metadata
microsoft.aspnetcore.mvc.taghelpers\2.1.1\.nupkg.metadata
microsoft.aspnetcore.mvc.viewfeatures\2.1.1\.nupkg.metadata
microsoft.aspnetcore.mvc\2.1.1\.nupkg.metadata
microsoft.aspnetcore.nodeservices\2.1.1\.nupkg.metadata
microsoft.aspnetcore.owin\2.1.1\.nupkg.metadata
microsoft.aspnetcore.razor.design\2.1.2\.nupkg.metadata
microsoft.aspnetcore.razor.language\2.1.1\.nupkg.metadata
microsoft.aspnetcore.razor.runtime\2.1.1\.nupkg.metadata
microsoft.aspnetcore.razor\2.1.1\.nupkg.metadata
microsoft.aspnetcore.responsecaching.abstractions\2.1.1\.nupkg.metadata
microsoft.aspnetcore.responsecaching\2.1.1\.nupkg.metadata
microsoft.aspnetcore.responsecompression\2.1.1\.nupkg.metadata
microsoft.aspnetcore.rewrite\2.1.1\.nupkg.metadata
microsoft.aspnetcore.routing.abstractions\2.1.1\.nupkg.metadata
microsoft.aspnetcore.routing\2.1.1\.nupkg.metadata
microsoft.aspnetcore.server.httpsys\2.1.1\.nupkg.metadata
microsoft.aspnetcore.server.iisintegration\2.1.1\.nupkg.metadata
microsoft.aspnetcore.server.kestrel.core\2.1.1\.nupkg.metadata
microsoft.aspnetcore.server.kestrel.https\2.1.1\.nupkg.metadata
microsoft.aspnetcore.server.kestrel.transport.abstractions\2.1.1\.nupkg.metadata
microsoft.aspnetcore.server.kestrel.transport.libuv\2.1.1\.nupkg.metadata
microsoft.aspnetcore.server.kestrel.transport.sockets\2.1.1\.nupkg.metadata
microsoft.aspnetcore.server.kestrel\2.1.1\.nupkg.metadata
microsoft.aspnetcore.session\2.1.1\.nupkg.metadata
microsoft.aspnetcore.signalr.common\1.0.1\.nupkg.metadata
microsoft.aspnetcore.signalr.core\1.0.1\.nupkg.metadata
microsoft.aspnetcore.signalr.protocols.json\1.0.1\.nupkg.metadata
microsoft.aspnetcore.signalr.redis\1.0.1\.nupkg.metadata
microsoft.aspnetcore.signalr\1.0.1\.nupkg.metadata
microsoft.aspnetcore.spaservices.extensions\2.1.1\.nupkg.metadata
microsoft.aspnetcore.spaservices\2.1.1\.nupkg.metadata
microsoft.aspnetcore.staticfiles\2.1.1\.nupkg.metadata
microsoft.aspnetcore.websockets\2.1.1\.nupkg.metadata
microsoft.aspnetcore.webutilities\2.1.1\.nupkg.metadata
microsoft.aspnetcore\2.1.1\.nupkg.metadata
microsoft.azure.keyvault.webkey\2.0.7\.nupkg.metadata
microsoft.azure.keyvault.webkey\2.0.7\.signature.p7s
microsoft.azure.keyvault\2.3.2\.nupkg.metadata
microsoft.azure.keyvault\2.3.2\.signature.p7s
microsoft.azure.services.appauthentication\1.0.1\.nupkg.metadata
microsoft.azure.services.appauthentication\1.0.1\.signature.p7s
microsoft.codeanalysis.analyzers\1.1.0\.nupkg.metadata
microsoft.codeanalysis.common\2.8.0\.nupkg.metadata
microsoft.codeanalysis.csharp.workspaces\2.8.0\.nupkg.metadata
microsoft.codeanalysis.csharp\2.8.0\.nupkg.metadata
microsoft.codeanalysis.razor\2.1.1\.nupkg.metadata
microsoft.codeanalysis.workspaces.common\2.8.0\.nupkg.metadata
microsoft.csharp\4.0.1\.nupkg.metadata
microsoft.csharp\4.3.0\.nupkg.metadata
microsoft.csharp\4.5.0\.nupkg.metadata
microsoft.data.edm\5.8.2\.nupkg.metadata
microsoft.data.odata\5.8.2\.nupkg.metadata
microsoft.data.sqlite.core\2.1.0\.nupkg.metadata
microsoft.data.sqlite\2.1.0\.nupkg.metadata
microsoft.dotnet.platformabstractions\2.1.0\.nupkg.metadata
microsoft.entityframeworkcore.abstractions\2.1.1\.nupkg.metadata
microsoft.entityframeworkcore.analyzers\2.1.1\.nupkg.metadata
microsoft.entityframeworkcore.design\2.1.1\.nupkg.metadata
microsoft.entityframeworkcore.inmemory\2.1.1\.nupkg.metadata
microsoft.entityframeworkcore.relational\2.1.1\.nupkg.metadata
microsoft.entityframeworkcore.sqlite.core\2.1.1\.nupkg.metadata
microsoft.entityframeworkcore.sqlite\2.1.1\.nupkg.metadata
microsoft.entityframeworkcore.sqlserver\2.1.1\.nupkg.metadata
microsoft.entityframeworkcore.tools\2.1.1\.nupkg.metadata
microsoft.entityframeworkcore\2.1.1\.nupkg.metadata
microsoft.extensions.caching.abstractions\2.1.1\.nupkg.metadata
microsoft.extensions.caching.memory\2.1.1\.nupkg.metadata
microsoft.extensions.caching.redis\2.1.1\.nupkg.metadata
microsoft.extensions.caching.sqlserver\2.1.1\.nupkg.metadata
microsoft.extensions.configuration.abstractions\2.1.1\.nupkg.metadata
microsoft.extensions.configuration.azurekeyvault\2.1.1\.nupkg.metadata
microsoft.extensions.configuration.binder\2.1.1\.nupkg.metadata
microsoft.extensions.configuration.commandline\2.1.1\.nupkg.metadata
microsoft.extensions.configuration.environmentvariables\2.1.1\.nupkg.metadata
microsoft.extensions.configuration.fileextensions\2.1.1\.nupkg.metadata
microsoft.extensions.configuration.ini\2.1.1\.nupkg.metadata
microsoft.extensions.configuration.json\2.1.1\.nupkg.metadata
microsoft.extensions.configuration.keyperfile\2.1.1\.nupkg.metadata
microsoft.extensions.configuration.usersecrets\2.1.1\.nupkg.metadata
microsoft.extensions.configuration.xml\2.1.1\.nupkg.metadata
microsoft.extensions.configuration\2.1.1\.nupkg.metadata
microsoft.extensions.dependencyinjection.abstractions\2.1.1\.nupkg.metadata
microsoft.extensions.dependencyinjection\2.1.1\.nupkg.metadata
microsoft.extensions.dependencymodel\2.1.0\.nupkg.metadata
microsoft.extensions.diagnosticadapter\2.1.0\.nupkg.metadata
microsoft.extensions.fileproviders.abstractions\2.1.1\.nupkg.metadata
microsoft.extensions.fileproviders.composite\2.1.1\.nupkg.metadata
microsoft.extensions.fileproviders.embedded\2.1.1\.nupkg.metadata
microsoft.extensions.fileproviders.physical\2.1.1\.nupkg.metadata
microsoft.extensions.filesystemglobbing\2.1.1\.nupkg.metadata
microsoft.extensions.hosting.abstractions\2.1.1\.nupkg.metadata
microsoft.extensions.hosting\2.1.1\.nupkg.metadata
microsoft.extensions.http\2.1.1\.nupkg.metadata
microsoft.extensions.identity.core\2.1.1\.nupkg.metadata
microsoft.extensions.identity.stores\2.1.1\.nupkg.metadata
microsoft.extensions.localization.abstractions\2.1.1\.nupkg.metadata
microsoft.extensions.localization\2.1.1\.nupkg.metadata
microsoft.extensions.logging.abstractions\2.1.1\.nupkg.metadata
microsoft.extensions.logging.azureappservices\2.1.1\.nupkg.metadata
microsoft.extensions.logging.configuration\2.1.1\.nupkg.metadata
microsoft.extensions.logging.console\2.1.1\.nupkg.metadata
microsoft.extensions.logging.debug\2.1.1\.nupkg.metadata
microsoft.extensions.logging.eventsource\2.1.1\.nupkg.metadata
microsoft.extensions.logging.tracesource\2.1.1\.nupkg.metadata
microsoft.extensions.logging\2.1.1\.nupkg.metadata
microsoft.extensions.objectpool\2.1.1\.nupkg.metadata
microsoft.extensions.options.configurationextensions\2.1.1\.nupkg.metadata
microsoft.extensions.options\2.1.1\.nupkg.metadata
microsoft.extensions.platformabstractions\1.1.0\.nupkg.metadata
microsoft.extensions.primitives\2.1.1\.nupkg.metadata
microsoft.extensions.webencoders\2.1.1\.nupkg.metadata
microsoft.identitymodel.clients.activedirectory\3.14.2\.nupkg.metadata
microsoft.identitymodel.clients.activedirectory\3.14.2\.signature.p7s
microsoft.identitymodel.logging\5.2.0\.nupkg.metadata
microsoft.identitymodel.logging\5.2.0\.signature.p7s
microsoft.identitymodel.protocols.openidconnect\5.2.0\.nupkg.metadata
microsoft.identitymodel.protocols.openidconnect\5.2.0\.signature.p7s
microsoft.identitymodel.protocols.wsfederation\5.2.0\.nupkg.metadata
microsoft.identitymodel.protocols.wsfederation\5.2.0\.signature.p7s
microsoft.identitymodel.protocols\5.2.0\.nupkg.metadata
microsoft.identitymodel.protocols\5.2.0\.signature.p7s
microsoft.identitymodel.tokens.saml\5.2.0\.nupkg.metadata
microsoft.identitymodel.tokens.saml\5.2.0\.signature.p7s
microsoft.identitymodel.tokens\5.2.0\.nupkg.metadata
microsoft.identitymodel.tokens\5.2.0\.signature.p7s
microsoft.identitymodel.xml\5.2.0\.nupkg.metadata
microsoft.identitymodel.xml\5.2.0\.signature.p7s
microsoft.net.http.headers\2.1.1\.nupkg.metadata
microsoft.netcore.app\2.1.0\.nupkg.metadata
microsoft.netcore.dotnetapphost\2.1.0\.nupkg.metadata
microsoft.netcore.dotnethostpolicy\2.1.0\.nupkg.metadata
microsoft.netcore.dotnethostresolver\2.1.0\.nupkg.metadata
microsoft.netcore.platforms\1.0.1\.nupkg.metadata
microsoft.netcore.platforms\1.0.1\.signature.p7s
microsoft.netcore.platforms\1.0.2\.nupkg.metadata
microsoft.netcore.platforms\1.0.2\.signature.p7s
microsoft.netcore.platforms\1.1.0\.nupkg.metadata
microsoft.netcore.platforms\1.1.0\.signature.p7s
microsoft.netcore.platforms\2.0.0\.nupkg.metadata
microsoft.netcore.platforms\2.0.0\.signature.p7s
microsoft.netcore.platforms\2.1.0\.nupkg.metadata
microsoft.netcore.targets\1.0.1\.nupkg.metadata
microsoft.netcore.targets\1.1.0\.nupkg.metadata
microsoft.netcore.targets\2.1.0\.nupkg.metadata
microsoft.rest.clientruntime.azure\3.3.7\.nupkg.metadata
microsoft.rest.clientruntime.azure\3.3.7\.signature.p7s
microsoft.rest.clientruntime\2.3.8\.nupkg.metadata
microsoft.rest.clientruntime\2.3.8\.signature.p7s
microsoft.visualstudio.web.browserlink\2.1.1\.nupkg.metadata
microsoft.visualstudio.web.codegeneration.contracts\2.1.6\.nupkg.metadata
microsoft.visualstudio.web.codegeneration.contracts\2.1.6\.signature.p7s
microsoft.visualstudio.web.codegeneration.contracts\2.1.6\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll
microsoft.visualstudio.web.codegeneration.contracts\2.1.6\microsoft.visualstudio.web.codegeneration.contracts.2.1.6.nupkg
microsoft.visualstudio.web.codegeneration.contracts\2.1.6\microsoft.visualstudio.web.codegeneration.contracts.2.1.6.nupkg.sha512
microsoft.visualstudio.web.codegeneration.contracts\2.1.6\microsoft.visualstudio.web.codegeneration.contracts.nuspec
microsoft.visualstudio.web.codegeneration.core\2.1.6\.nupkg.metadata
microsoft.visualstudio.web.codegeneration.core\2.1.6\.signature.p7s
microsoft.visualstudio.web.codegeneration.core\2.1.6\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll
microsoft.visualstudio.web.codegeneration.core\2.1.6\microsoft.visualstudio.web.codegeneration.core.2.1.6.nupkg
microsoft.visualstudio.web.codegeneration.core\2.1.6\microsoft.visualstudio.web.codegeneration.core.2.1.6.nupkg.sha512
microsoft.visualstudio.web.codegeneration.core\2.1.6\microsoft.visualstudio.web.codegeneration.core.nuspec
microsoft.visualstudio.web.codegeneration.design\2.1.6\.nupkg.metadata
microsoft.visualstudio.web.codegeneration.design\2.1.6\.signature.p7s
microsoft.visualstudio.web.codegeneration.design\2.1.6\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.design\2.1.6\lib\netstandard2.0\dotnet-aspnet-codegenerator-design.dll
microsoft.visualstudio.web.codegeneration.design\2.1.6\microsoft.visualstudio.web.codegeneration.design.2.1.6.nupkg
microsoft.visualstudio.web.codegeneration.design\2.1.6\microsoft.visualstudio.web.codegeneration.design.2.1.6.nupkg.sha512
microsoft.visualstudio.web.codegeneration.design\2.1.6\microsoft.visualstudio.web.codegeneration.design.nuspec
microsoft.visualstudio.web.codegeneration.design\2.1.6\runtimes\win7-x64\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.design\2.1.6\runtimes\win7-x86\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.design\2.1.6\runtimes\win-arm\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.design\2.1.6\runtimes\win-arm64\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.6\.nupkg.metadata
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.6\.signature.p7s
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.6\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.6\microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.1.6.nupkg
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.6\microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.1.6.nupkg.sha512
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.6\microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.6\Templates\DbContext\NewLocalDbContext.cshtml
microsoft.visualstudio.web.codegeneration.templating\2.1.6\.nupkg.metadata
microsoft.visualstudio.web.codegeneration.templating\2.1.6\.signature.p7s
microsoft.visualstudio.web.codegeneration.templating\2.1.6\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll
microsoft.visualstudio.web.codegeneration.templating\2.1.6\microsoft.visualstudio.web.codegeneration.templating.2.1.6.nupkg
microsoft.visualstudio.web.codegeneration.templating\2.1.6\microsoft.visualstudio.web.codegeneration.templating.2.1.6.nupkg.sha512
microsoft.visualstudio.web.codegeneration.templating\2.1.6\microsoft.visualstudio.web.codegeneration.templating.nuspec
microsoft.visualstudio.web.codegeneration.utils\2.1.6\.nupkg.metadata
microsoft.visualstudio.web.codegeneration.utils\2.1.6\.signature.p7s
microsoft.visualstudio.web.codegeneration.utils\2.1.6\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll
microsoft.visualstudio.web.codegeneration.utils\2.1.6\microsoft.visualstudio.web.codegeneration.utils.2.1.6.nupkg
microsoft.visualstudio.web.codegeneration.utils\2.1.6\microsoft.visualstudio.web.codegeneration.utils.2.1.6.nupkg.sha512
microsoft.visualstudio.web.codegeneration.utils\2.1.6\microsoft.visualstudio.web.codegeneration.utils.nuspec
microsoft.visualstudio.web.codegeneration\2.1.6\.nupkg.metadata
microsoft.visualstudio.web.codegeneration\2.1.6\.signature.p7s
microsoft.visualstudio.web.codegeneration\2.1.6\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.dll
microsoft.visualstudio.web.codegeneration\2.1.6\microsoft.visualstudio.web.codegeneration.2.1.6.nupkg
microsoft.visualstudio.web.codegeneration\2.1.6\microsoft.visualstudio.web.codegeneration.2.1.6.nupkg.sha512
microsoft.visualstudio.web.codegeneration\2.1.6\microsoft.visualstudio.web.codegeneration.nuspec
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\.nupkg.metadata
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\.signature.p7s
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Generators\ParameterDefinitions\area.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Generators\ParameterDefinitions\controller.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Generators\ParameterDefinitions\identity.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Generators\ParameterDefinitions\razorpage.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Generators\ParameterDefinitions\view.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\lib\netstandard2.0\identitygeneratorfilesconfig.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\microsoft.visualstudio.web.codegenerators.mvc.2.1.6.nupkg
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\microsoft.visualstudio.web.codegenerators.mvc.2.1.6.nupkg.sha512
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\microsoft.visualstudio.web.codegenerators.mvc.nuspec
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ControllerGenerator\ApiControllerWithActions.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ControllerGenerator\ApiControllerWithContext.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ControllerGenerator\ApiEmptyController.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ControllerGenerator\ControllerWithActions.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ControllerGenerator\EmptyController.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ControllerGenerator\MvcControllerWithContext.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\_LoginPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Data\ApplicationDbContext.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Data\ApplicationUser.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\IdentityHostingStartup.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\_Layout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\_ValidationScriptsPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\_ViewImports.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\_ViewStart.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account._ViewImports.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.AccessDenied.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.AccessDenied.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ConfirmEmail.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ConfirmEmail.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ExternalLogin.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ExternalLogin.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ForgotPassword.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ForgotPassword.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.Lockout.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.Lockout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.Login.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.Login.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.LoginWith2fa.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.LoginWith2fa.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.Logout.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.Logout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.Register.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.Register.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ResetPassword.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ResetPassword.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage._Layout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage._ManageNav.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage._StatusMessage.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage._ViewImports.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ManageNavPages.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Error.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Error.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\ScaffoldingReadme.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\SupportPages._CookieConsentPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\SupportPages._ViewImports.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\SupportPages._ViewStart.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\css\site.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\css\site.min.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\favicon.ico
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\images\banner1.svg
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\images\banner2.svg
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\images\banner3.svg
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\js\site.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\js\site.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\.bower.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.eot
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.svg
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.ttf
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff2
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\js\npm.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\LICENSE
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery\.bower.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery\dist\jquery.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery\LICENSE.txt
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation\.bower.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation\LICENSE.md
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\.bower.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\LICENSE.txt
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\MvcLayout\_Layout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\MvcLayout\Error.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\_ValidationScriptsPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\Create.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\CreatePageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\Delete.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\DeletePageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\Details.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\DetailsPageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\Edit.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\EditPageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\Empty.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\EmptyPageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\List.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\ListPageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Startup\ReadMe.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Startup\Startup.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ViewGenerator\_ValidationScriptsPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ViewGenerator\Create.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ViewGenerator\Delete.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ViewGenerator\Details.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ViewGenerator\Edit.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ViewGenerator\Empty.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ViewGenerator\List.cshtml
microsoft.win32.primitives\4.0.1\.nupkg.metadata
microsoft.win32.primitives\4.3.0\.nupkg.metadata
microsoft.win32.registry\4.3.0\.nupkg.metadata
microsoft.win32.registry\4.5.0\.nupkg.metadata
netstandard.library\1.6.0\.nupkg.metadata
netstandard.library\1.6.1\.nupkg.metadata
netstandard.library\2.0.3\.nupkg.metadata
newtonsoft.json.bson\1.0.1\.nupkg.metadata
newtonsoft.json.bson\1.0.1\.signature.p7s
newtonsoft.json\10.0.1\.nupkg.metadata
newtonsoft.json\10.0.1\.signature.p7s
newtonsoft.json\11.0.2\.nupkg.metadata
newtonsoft.json\11.0.2\.signature.p7s
newtonsoft.json\9.0.1\.nupkg.metadata
nuget.frameworks\4.7.0\.nupkg.metadata
remotion.linq\2.2.0\.nupkg.metadata
remotion.linq\2.2.0\.signature.p7s
runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
runtime.native.system.data.sqlclient.sni\4.4.0\.nupkg.metadata
runtime.native.system.io.compression\4.1.0\.nupkg.metadata
runtime.native.system.io.compression\4.3.0\.nupkg.metadata
runtime.native.system.net.http\4.0.1\.nupkg.metadata
runtime.native.system.net.http\4.3.0\.nupkg.metadata
runtime.native.system.net.security\4.3.0\.nupkg.metadata
runtime.native.system.security.cryptography.apple\4.3.0\.nupkg.metadata
runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
runtime.native.system.security.cryptography\4.0.0\.nupkg.metadata
runtime.native.system\4.0.0\.nupkg.metadata
runtime.native.system\4.3.0\.nupkg.metadata
runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\4.3.0\.nupkg.metadata
runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
runtime.win-arm64.runtime.native.system.data.sqlclient.sni\4.4.0\.nupkg.metadata
runtime.win-x64.runtime.native.system.data.sqlclient.sni\4.4.0\.nupkg.metadata
runtime.win-x86.runtime.native.system.data.sqlclient.sni\4.4.0\.nupkg.metadata
sqlitepclraw.bundle_green\1.1.11\.nupkg.metadata
sqlitepclraw.bundle_green\1.1.11\.signature.p7s
sqlitepclraw.core\1.1.11\.nupkg.metadata
sqlitepclraw.core\1.1.11\.signature.p7s
sqlitepclraw.lib.e_sqlite3.linux\1.1.11\.nupkg.metadata
sqlitepclraw.lib.e_sqlite3.linux\1.1.11\.signature.p7s
sqlitepclraw.lib.e_sqlite3.osx\1.1.11\.nupkg.metadata
sqlitepclraw.lib.e_sqlite3.osx\1.1.11\.signature.p7s
sqlitepclraw.lib.e_sqlite3.v110_xp\1.1.11\.nupkg.metadata
sqlitepclraw.lib.e_sqlite3.v110_xp\1.1.11\.signature.p7s
sqlitepclraw.provider.e_sqlite3.netstandard11\1.1.11\.nupkg.metadata
sqlitepclraw.provider.e_sqlite3.netstandard11\1.1.11\.signature.p7s
stackexchange.redis.strongname\1.2.4\.nupkg.metadata
stackexchange.redis.strongname\1.2.4\.signature.p7s
system.appcontext\4.1.0\.nupkg.metadata
system.appcontext\4.3.0\.nupkg.metadata
system.buffers\4.0.0\.nupkg.metadata
system.buffers\4.3.0\.nupkg.metadata
system.buffers\4.5.0\.nupkg.metadata
system.collections.concurrent\4.0.12\.nupkg.metadata
system.collections.concurrent\4.3.0\.nupkg.metadata
system.collections.immutable\1.3.0\.nupkg.metadata
system.collections.immutable\1.3.1\.nupkg.metadata
system.collections.immutable\1.5.0\.nupkg.metadata
system.collections.nongeneric\4.3.0\.nupkg.metadata
system.collections.specialized\4.3.0\.nupkg.metadata
system.collections\4.0.11\.nupkg.metadata
system.collections\4.3.0\.nupkg.metadata
system.componentmodel.annotations\4.5.0\.nupkg.metadata
system.componentmodel.primitives\4.3.0\.nupkg.metadata
system.componentmodel.typeconverter\4.3.0\.nupkg.metadata
system.componentmodel\4.3.0\.nupkg.metadata
system.composition.attributedmodel\1.0.31\.nupkg.metadata
system.composition.convention\1.0.31\.nupkg.metadata
system.composition.hosting\1.0.31\.nupkg.metadata
system.composition.runtime\1.0.31\.nupkg.metadata
system.composition.typedparts\1.0.31\.nupkg.metadata
system.composition\1.0.31\.nupkg.metadata
system.console\4.0.0\.nupkg.metadata
system.console\4.3.0\.nupkg.metadata
system.data.sqlclient\4.5.1\.nupkg.metadata
system.diagnostics.contracts\4.3.0\.nupkg.metadata
system.diagnostics.debug\4.0.11\.nupkg.metadata
system.diagnostics.debug\4.3.0\.nupkg.metadata
system.diagnostics.diagnosticsource\4.0.0\.nupkg.metadata
system.diagnostics.diagnosticsource\4.3.0\.nupkg.metadata
system.diagnostics.diagnosticsource\4.4.0\.nupkg.metadata
system.diagnostics.diagnosticsource\4.4.0\.signature.p7s
system.diagnostics.diagnosticsource\4.5.0\.nupkg.metadata
system.diagnostics.fileversioninfo\4.3.0\.nupkg.metadata
system.diagnostics.process\4.3.0\.nupkg.metadata
system.diagnostics.stacktrace\4.3.0\.nupkg.metadata
system.diagnostics.tools\4.0.1\.nupkg.metadata
system.diagnostics.tools\4.3.0\.nupkg.metadata
system.diagnostics.tracing\4.1.0\.nupkg.metadata
system.diagnostics.tracing\4.3.0\.nupkg.metadata
system.dynamic.runtime\4.0.11\.nupkg.metadata
system.dynamic.runtime\4.3.0\.nupkg.metadata
system.globalization.calendars\4.0.1\.nupkg.metadata
system.globalization.calendars\4.3.0\.nupkg.metadata
system.globalization.extensions\4.0.1\.nupkg.metadata
system.globalization.extensions\4.3.0\.nupkg.metadata
system.globalization\4.0.11\.nupkg.metadata
system.globalization\4.3.0\.nupkg.metadata
system.identitymodel.tokens.jwt\5.2.0\.nupkg.metadata
system.identitymodel.tokens.jwt\5.2.0\.signature.p7s
system.interactive.async\3.1.1\.nupkg.metadata
system.interactive.async\3.1.1\.signature.p7s
system.io.compression.zipfile\4.0.1\.nupkg.metadata
system.io.compression.zipfile\4.3.0\.nupkg.metadata
system.io.compression\4.1.0\.nupkg.metadata
system.io.compression\4.3.0\.nupkg.metadata
system.io.filesystem.primitives\4.0.1\.nupkg.metadata
system.io.filesystem.primitives\4.3.0\.nupkg.metadata
system.io.filesystem\4.0.1\.nupkg.metadata
system.io.filesystem\4.3.0\.nupkg.metadata
system.io.pipelines\4.5.0\.nupkg.metadata
system.io\4.1.0\.nupkg.metadata
system.io\4.3.0\.nupkg.metadata
system.linq.expressions\4.1.0\.nupkg.metadata
system.linq.expressions\4.3.0\.nupkg.metadata
system.linq.parallel\4.3.0\.nupkg.metadata
system.linq.queryable\4.0.1\.nupkg.metadata
system.linq\4.1.0\.nupkg.metadata
system.linq\4.3.0\.nupkg.metadata
system.memory\4.5.1\.nupkg.metadata
system.net.http\4.1.0\.nupkg.metadata
system.net.http\4.1.0\.signature.p7s
system.net.http\4.3.0\.nupkg.metadata
system.net.http\4.3.0\.signature.p7s
system.net.nameresolution\4.3.0\.nupkg.metadata
system.net.primitives\4.0.11\.nupkg.metadata
system.net.primitives\4.3.0\.nupkg.metadata
system.net.security\4.3.0\.nupkg.metadata
system.net.sockets\4.1.0\.nupkg.metadata
system.net.sockets\4.3.0\.nupkg.metadata
system.net.websockets.websocketprotocol\4.5.1\.nupkg.metadata
system.numerics.vectors\4.5.0\.nupkg.metadata
system.objectmodel\4.0.12\.nupkg.metadata
system.objectmodel\4.3.0\.nupkg.metadata
system.private.datacontractserialization\4.1.1\.nupkg.metadata
system.private.datacontractserialization\4.3.0\.nupkg.metadata
system.reflection.emit.ilgeneration\4.0.1\.nupkg.metadata
system.reflection.emit.ilgeneration\4.3.0\.nupkg.metadata
system.reflection.emit.lightweight\4.0.1\.nupkg.metadata
system.reflection.emit.lightweight\4.3.0\.nupkg.metadata
system.reflection.emit\4.0.1\.nupkg.metadata
system.reflection.emit\4.3.0\.nupkg.metadata
system.reflection.extensions\4.0.1\.nupkg.metadata
system.reflection.extensions\4.3.0\.nupkg.metadata
system.reflection.metadata\1.4.1\.nupkg.metadata
system.reflection.metadata\1.4.2\.nupkg.metadata
system.reflection.metadata\1.6.0\.nupkg.metadata
system.reflection.primitives\4.0.1\.nupkg.metadata
system.reflection.primitives\4.3.0\.nupkg.metadata
system.reflection.typeextensions\4.1.0\.nupkg.metadata
system.reflection.typeextensions\4.3.0\.nupkg.metadata
system.reflection\4.1.0\.nupkg.metadata
system.reflection\4.3.0\.nupkg.metadata
system.resources.resourcemanager\4.0.1\.nupkg.metadata
system.resources.resourcemanager\4.3.0\.nupkg.metadata
system.runtime.compilerservices.unsafe\4.5.0\.nupkg.metadata
system.runtime.compilerservices.unsafe\4.5.1\.nupkg.metadata
system.runtime.extensions\4.1.0\.nupkg.metadata
system.runtime.extensions\4.3.0\.nupkg.metadata
system.runtime.handles\4.0.1\.nupkg.metadata
system.runtime.handles\4.3.0\.nupkg.metadata
system.runtime.interopservices.runtimeinformation\4.0.0\.nupkg.metadata
system.runtime.interopservices.runtimeinformation\4.3.0\.nupkg.metadata
system.runtime.interopservices\4.1.0\.nupkg.metadata
system.runtime.interopservices\4.3.0\.nupkg.metadata
system.runtime.numerics\4.0.1\.nupkg.metadata
system.runtime.numerics\4.3.0\.nupkg.metadata
system.runtime.serialization.formatters\4.3.0\.nupkg.metadata
system.runtime.serialization.json\4.0.2\.nupkg.metadata
system.runtime.serialization.primitives\4.1.1\.nupkg.metadata
system.runtime.serialization.primitives\4.3.0\.nupkg.metadata
system.runtime.serialization.xml\4.3.0\.nupkg.metadata
system.runtime\4.1.0\.nupkg.metadata
system.runtime\4.3.0\.nupkg.metadata
system.security.accesscontrol\4.5.0\.nupkg.metadata
system.security.claims\4.3.0\.nupkg.metadata
system.security.cryptography.algorithms\4.2.0\.nupkg.metadata
system.security.cryptography.algorithms\4.3.0\.nupkg.metadata
system.security.cryptography.cng\4.2.0\.nupkg.metadata
system.security.cryptography.cng\4.3.0\.nupkg.metadata
system.security.cryptography.cng\4.5.0\.nupkg.metadata
system.security.cryptography.csp\4.0.0\.nupkg.metadata
system.security.cryptography.csp\4.3.0\.nupkg.metadata
system.security.cryptography.encoding\4.0.0\.nupkg.metadata
system.security.cryptography.encoding\4.3.0\.nupkg.metadata
system.security.cryptography.openssl\4.0.0\.nupkg.metadata
system.security.cryptography.openssl\4.3.0\.nupkg.metadata
system.security.cryptography.pkcs\4.5.0\.nupkg.metadata
system.security.cryptography.primitives\4.0.0\.nupkg.metadata
system.security.cryptography.primitives\4.3.0\.nupkg.metadata
system.security.cryptography.x509certificates\4.1.0\.nupkg.metadata
system.security.cryptography.x509certificates\4.3.0\.nupkg.metadata
system.security.cryptography.xml\4.5.0\.nupkg.metadata
system.security.permissions\4.5.0\.nupkg.metadata
system.security.principal.windows\4.3.0\.nupkg.metadata
system.security.principal.windows\4.5.0\.nupkg.metadata
system.security.principal\4.3.0\.nupkg.metadata
system.spatial\5.8.2\.nupkg.metadata
system.text.encoding.codepages\4.3.0\.nupkg.metadata
system.text.encoding.codepages\4.5.0\.nupkg.metadata
system.text.encoding.extensions\4.0.11\.nupkg.metadata
system.text.encoding.extensions\4.3.0\.nupkg.metadata
system.text.encoding\4.0.11\.nupkg.metadata
system.text.encoding\4.3.0\.nupkg.metadata
system.text.encodings.web\4.3.1\.nupkg.metadata
system.text.encodings.web\4.3.1\.signature.p7s
system.text.encodings.web\4.5.0\.nupkg.metadata
system.text.regularexpressions\4.1.0\.nupkg.metadata
system.text.regularexpressions\4.3.0\.nupkg.metadata
system.threading.channels\4.5.0\.nupkg.metadata
system.threading.tasks.extensions\4.0.0\.nupkg.metadata
system.threading.tasks.extensions\4.3.0\.nupkg.metadata
system.threading.tasks.extensions\4.5.1\.nupkg.metadata
system.threading.tasks.parallel\4.3.0\.nupkg.metadata
system.threading.tasks\4.0.11\.nupkg.metadata
system.threading.tasks\4.3.0\.nupkg.metadata
system.threading.thread\4.3.0\.nupkg.metadata
system.threading.threadpool\4.3.0\.nupkg.metadata
system.threading.timer\4.0.1\.nupkg.metadata
system.threading.timer\4.3.0\.nupkg.metadata
system.threading\4.0.11\.nupkg.metadata
system.threading\4.3.0\.nupkg.metadata
system.valuetuple\4.3.0\.nupkg.metadata
system.valuetuple\4.5.0\.nupkg.metadata
system.xml.readerwriter\4.0.11\.nupkg.metadata
system.xml.readerwriter\4.3.0\.nupkg.metadata
system.xml.xdocument\4.0.11\.nupkg.metadata
system.xml.xdocument\4.3.0\.nupkg.metadata
system.xml.xmldocument\4.0.1\.nupkg.metadata
system.xml.xmldocument\4.3.0\.nupkg.metadata
system.xml.xmlserializer\4.0.11\.nupkg.metadata
system.xml.xmlserializer\4.3.0\.nupkg.metadata
system.xml.xpath.xdocument\4.3.0\.nupkg.metadata
system.xml.xpath\4.3.0\.nupkg.metadata
windowsazure.storage\8.1.4\.nupkg.metadata
windowsazure.storage\8.1.4\.signature.p7s

View File

@ -1,13 +0,0 @@
<Project>
<Import Project="..\Archive.props" />
<!-- Same as Archive.CiServer, but in only includes files which have not previously been included in a stable release. -->
<PropertyGroup>
<TargetFileName>nuGetPackagesArchive-ci-server-$(PackageVersion).patch.zip</TargetFileName>
<IsIncremental>true</IsIncremental>
<IncludeXmlDocs>false</IncludeXmlDocs>
<IncludeNupkgFiles>false</IncludeNupkgFiles>
</PropertyGroup>
<Import Project="..\Archive.targets" />
</Project>

View File

@ -1,368 +0,0 @@
microsoft.netcore.app\2.1.0\.signature.p7s
microsoft.netcore.app\2.1.0\build\netcoreapp2.1\Microsoft.NETCore.App.PlatformManifest.txt
microsoft.netcore.app\2.1.0\build\netcoreapp2.1\Microsoft.NETCore.App.props
microsoft.netcore.app\2.1.0\build\netcoreapp2.1\Microsoft.NETCore.App.targets
microsoft.netcore.app\2.1.0\LICENSE.TXT
microsoft.netcore.app\2.1.0\microsoft.netcore.app.2.1.0.nupkg.sha512
microsoft.netcore.app\2.1.0\microsoft.netcore.app.nuspec
microsoft.netcore.app\2.1.0\Microsoft.NETCore.App.versions.txt
microsoft.netcore.app\2.1.0\ref\netcoreapp\_._
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\Microsoft.CSharp.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\Microsoft.VisualBasic.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\Microsoft.Win32.Primitives.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\mscorlib.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\netstandard.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.AppContext.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Buffers.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Collections.Concurrent.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Collections.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Collections.Immutable.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Collections.NonGeneric.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Collections.Specialized.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ComponentModel.Annotations.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ComponentModel.DataAnnotations.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ComponentModel.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ComponentModel.EventBasedAsync.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ComponentModel.Primitives.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ComponentModel.TypeConverter.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Configuration.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Console.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Core.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Data.Common.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Data.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.Contracts.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.Debug.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.DiagnosticSource.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.FileVersionInfo.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.Process.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.StackTrace.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.TextWriterTraceListener.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.Tools.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.TraceSource.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.Tracing.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Drawing.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Drawing.Primitives.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Dynamic.Runtime.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Globalization.Calendars.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Globalization.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Globalization.Extensions.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.Compression.Brotli.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.Compression.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.Compression.FileSystem.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.Compression.ZipFile.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.FileSystem.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.FileSystem.DriveInfo.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.FileSystem.Primitives.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.FileSystem.Watcher.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.IsolatedStorage.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.MemoryMappedFiles.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.Pipes.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.UnmanagedMemoryStream.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Linq.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Linq.Expressions.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Linq.Parallel.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Linq.Queryable.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Memory.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Http.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.HttpListener.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Mail.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.NameResolution.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.NetworkInformation.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Ping.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Primitives.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Requests.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Security.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.ServicePoint.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Sockets.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.WebClient.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.WebHeaderCollection.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.WebProxy.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.WebSockets.Client.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.WebSockets.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Numerics.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Numerics.Vectors.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ObjectModel.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.DispatchProxy.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.Emit.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.Emit.ILGeneration.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.Emit.Lightweight.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.Extensions.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.Metadata.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.Primitives.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.TypeExtensions.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Resources.Reader.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Resources.ResourceManager.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Resources.Writer.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.CompilerServices.VisualC.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Extensions.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Handles.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.InteropServices.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.InteropServices.RuntimeInformation.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.InteropServices.WindowsRuntime.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Loader.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Numerics.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Serialization.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Serialization.Formatters.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Serialization.Json.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Serialization.Primitives.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Serialization.Xml.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Claims.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Cryptography.Algorithms.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Cryptography.Csp.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Cryptography.Encoding.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Cryptography.Primitives.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Cryptography.X509Certificates.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Principal.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.SecureString.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ServiceModel.Web.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ServiceProcess.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Text.Encoding.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Text.Encoding.Extensions.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Text.RegularExpressions.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Overlapped.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Tasks.Dataflow.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Tasks.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Tasks.Extensions.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Tasks.Parallel.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Thread.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.ThreadPool.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Timer.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Transactions.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Transactions.Local.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ValueTuple.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Web.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Web.HttpUtility.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Windows.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.Linq.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.ReaderWriter.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.Serialization.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.XDocument.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.XmlDocument.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.XmlSerializer.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.XPath.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.XPath.XDocument.dll
microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\WindowsBase.dll
microsoft.netcore.app\2.1.0\runtime.json
microsoft.netcore.app\2.1.0\THIRD-PARTY-NOTICES.TXT
microsoft.netcore.dotnetapphost\2.1.0\.signature.p7s
microsoft.netcore.dotnetapphost\2.1.0\LICENSE.TXT
microsoft.netcore.dotnetapphost\2.1.0\microsoft.netcore.dotnetapphost.2.1.0.nupkg.sha512
microsoft.netcore.dotnetapphost\2.1.0\microsoft.netcore.dotnetapphost.nuspec
microsoft.netcore.dotnetapphost\2.1.0\runtime.json
microsoft.netcore.dotnetapphost\2.1.0\THIRD-PARTY-NOTICES.TXT
microsoft.netcore.dotnethostpolicy\2.1.0\.signature.p7s
microsoft.netcore.dotnethostpolicy\2.1.0\LICENSE.TXT
microsoft.netcore.dotnethostpolicy\2.1.0\microsoft.netcore.dotnethostpolicy.2.1.0.nupkg.sha512
microsoft.netcore.dotnethostpolicy\2.1.0\microsoft.netcore.dotnethostpolicy.nuspec
microsoft.netcore.dotnethostpolicy\2.1.0\runtime.json
microsoft.netcore.dotnethostpolicy\2.1.0\THIRD-PARTY-NOTICES.TXT
microsoft.netcore.dotnethostresolver\2.1.0\.signature.p7s
microsoft.netcore.dotnethostresolver\2.1.0\LICENSE.TXT
microsoft.netcore.dotnethostresolver\2.1.0\microsoft.netcore.dotnethostresolver.2.1.0.nupkg.sha512
microsoft.netcore.dotnethostresolver\2.1.0\microsoft.netcore.dotnethostresolver.nuspec
microsoft.netcore.dotnethostresolver\2.1.0\runtime.json
microsoft.netcore.dotnethostresolver\2.1.0\THIRD-PARTY-NOTICES.TXT
microsoft.netcore.targets\2.1.0\.signature.p7s
microsoft.netcore.targets\2.1.0\lib\netstandard1.0\_._
microsoft.netcore.targets\2.1.0\LICENSE.TXT
microsoft.netcore.targets\2.1.0\microsoft.netcore.targets.2.1.0.nupkg.sha512
microsoft.netcore.targets\2.1.0\microsoft.netcore.targets.nuspec
microsoft.netcore.targets\2.1.0\runtime.json
microsoft.netcore.targets\2.1.0\THIRD-PARTY-NOTICES.TXT
microsoft.netcore.targets\2.1.0\useSharedDesignerContext.txt
microsoft.netcore.targets\2.1.0\version.txt
microsoft.visualstudio.web.codegeneration.contracts\2.1.3\.signature.p7s
microsoft.visualstudio.web.codegeneration.contracts\2.1.3\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll
microsoft.visualstudio.web.codegeneration.contracts\2.1.3\microsoft.visualstudio.web.codegeneration.contracts.2.1.3.nupkg.sha512
microsoft.visualstudio.web.codegeneration.contracts\2.1.3\microsoft.visualstudio.web.codegeneration.contracts.nuspec
microsoft.visualstudio.web.codegeneration.core\2.1.3\.signature.p7s
microsoft.visualstudio.web.codegeneration.core\2.1.3\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll
microsoft.visualstudio.web.codegeneration.core\2.1.3\microsoft.visualstudio.web.codegeneration.core.2.1.3.nupkg.sha512
microsoft.visualstudio.web.codegeneration.core\2.1.3\microsoft.visualstudio.web.codegeneration.core.nuspec
microsoft.visualstudio.web.codegeneration.design\2.1.3\.signature.p7s
microsoft.visualstudio.web.codegeneration.design\2.1.3\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.design\2.1.3\lib\netstandard2.0\dotnet-aspnet-codegenerator-design.dll
microsoft.visualstudio.web.codegeneration.design\2.1.3\microsoft.visualstudio.web.codegeneration.design.2.1.3.nupkg.sha512
microsoft.visualstudio.web.codegeneration.design\2.1.3\microsoft.visualstudio.web.codegeneration.design.nuspec
microsoft.visualstudio.web.codegeneration.design\2.1.3\runtimes\win7-x64\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.design\2.1.3\runtimes\win7-x86\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.design\2.1.3\runtimes\win-arm\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.design\2.1.3\runtimes\win-arm64\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.3\.signature.p7s
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.3\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.3\microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.1.3.nupkg.sha512
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.3\microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.3\Templates\DbContext\NewLocalDbContext.cshtml
microsoft.visualstudio.web.codegeneration.templating\2.1.3\.signature.p7s
microsoft.visualstudio.web.codegeneration.templating\2.1.3\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll
microsoft.visualstudio.web.codegeneration.templating\2.1.3\microsoft.visualstudio.web.codegeneration.templating.2.1.3.nupkg.sha512
microsoft.visualstudio.web.codegeneration.templating\2.1.3\microsoft.visualstudio.web.codegeneration.templating.nuspec
microsoft.visualstudio.web.codegeneration.utils\2.1.3\.signature.p7s
microsoft.visualstudio.web.codegeneration.utils\2.1.3\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll
microsoft.visualstudio.web.codegeneration.utils\2.1.3\microsoft.visualstudio.web.codegeneration.utils.2.1.3.nupkg.sha512
microsoft.visualstudio.web.codegeneration.utils\2.1.3\microsoft.visualstudio.web.codegeneration.utils.nuspec
microsoft.visualstudio.web.codegeneration\2.1.3\.signature.p7s
microsoft.visualstudio.web.codegeneration\2.1.3\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.dll
microsoft.visualstudio.web.codegeneration\2.1.3\microsoft.visualstudio.web.codegeneration.2.1.3.nupkg.sha512
microsoft.visualstudio.web.codegeneration\2.1.3\microsoft.visualstudio.web.codegeneration.nuspec
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\.signature.p7s
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Generators\ParameterDefinitions\area.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Generators\ParameterDefinitions\controller.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Generators\ParameterDefinitions\identity.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Generators\ParameterDefinitions\razorpage.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Generators\ParameterDefinitions\view.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\lib\netstandard2.0\identitygeneratorfilesconfig.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\microsoft.visualstudio.web.codegenerators.mvc.2.1.3.nupkg.sha512
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\microsoft.visualstudio.web.codegenerators.mvc.nuspec
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ControllerGenerator\ApiControllerWithActions.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ControllerGenerator\ApiControllerWithContext.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ControllerGenerator\ApiEmptyController.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ControllerGenerator\ControllerWithActions.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ControllerGenerator\EmptyController.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ControllerGenerator\MvcControllerWithContext.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\_LoginPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Data\ApplicationDbContext.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Data\ApplicationUser.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\IdentityHostingStartup.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\_Layout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\_ValidationScriptsPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\_ViewImports.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\_ViewStart.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account._ViewImports.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.AccessDenied.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.AccessDenied.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ConfirmEmail.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ConfirmEmail.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ExternalLogin.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ExternalLogin.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ForgotPassword.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ForgotPassword.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.Lockout.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.Lockout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.Login.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.Login.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.LoginWith2fa.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.LoginWith2fa.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.Logout.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.Logout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.Register.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.Register.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ResetPassword.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ResetPassword.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage._Layout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage._ManageNav.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage._StatusMessage.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage._ViewImports.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ManageNavPages.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Error.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Error.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\ScaffoldingReadme.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\SupportPages._CookieConsentPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\SupportPages._ViewImports.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\SupportPages._ViewStart.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\css\site.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\css\site.min.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\favicon.ico
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\images\banner1.svg
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\images\banner2.svg
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\images\banner3.svg
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\js\site.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\js\site.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\.bower.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.eot
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.svg
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.ttf
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff2
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\js\npm.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\LICENSE
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery\.bower.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery\dist\jquery.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery\LICENSE.txt
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation\.bower.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation\LICENSE.md
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\.bower.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\LICENSE.txt
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\MvcLayout\_Layout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\MvcLayout\Error.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\_ValidationScriptsPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\Create.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\CreatePageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\Delete.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\DeletePageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\Details.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\DetailsPageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\Edit.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\EditPageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\Empty.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\EmptyPageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\List.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\ListPageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Startup\ReadMe.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Startup\Startup.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ViewGenerator\_ValidationScriptsPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ViewGenerator\Create.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ViewGenerator\Delete.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ViewGenerator\Details.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ViewGenerator\Edit.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ViewGenerator\Empty.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ViewGenerator\List.cshtml

View File

@ -1,187 +0,0 @@
microsoft.visualstudio.web.codegeneration.contracts\2.1.4\.signature.p7s
microsoft.visualstudio.web.codegeneration.contracts\2.1.4\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll
microsoft.visualstudio.web.codegeneration.contracts\2.1.4\microsoft.visualstudio.web.codegeneration.contracts.2.1.4.nupkg.sha512
microsoft.visualstudio.web.codegeneration.contracts\2.1.4\microsoft.visualstudio.web.codegeneration.contracts.nuspec
microsoft.visualstudio.web.codegeneration.core\2.1.4\.signature.p7s
microsoft.visualstudio.web.codegeneration.core\2.1.4\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll
microsoft.visualstudio.web.codegeneration.core\2.1.4\microsoft.visualstudio.web.codegeneration.core.2.1.4.nupkg.sha512
microsoft.visualstudio.web.codegeneration.core\2.1.4\microsoft.visualstudio.web.codegeneration.core.nuspec
microsoft.visualstudio.web.codegeneration.design\2.1.4\.signature.p7s
microsoft.visualstudio.web.codegeneration.design\2.1.4\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.design\2.1.4\lib\netstandard2.0\dotnet-aspnet-codegenerator-design.dll
microsoft.visualstudio.web.codegeneration.design\2.1.4\microsoft.visualstudio.web.codegeneration.design.2.1.4.nupkg.sha512
microsoft.visualstudio.web.codegeneration.design\2.1.4\microsoft.visualstudio.web.codegeneration.design.nuspec
microsoft.visualstudio.web.codegeneration.design\2.1.4\runtimes\win7-x64\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.design\2.1.4\runtimes\win7-x86\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.design\2.1.4\runtimes\win-arm\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.design\2.1.4\runtimes\win-arm64\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.4\.signature.p7s
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.4\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.4\microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.1.4.nupkg.sha512
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.4\microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.4\Templates\DbContext\NewLocalDbContext.cshtml
microsoft.visualstudio.web.codegeneration.templating\2.1.4\.signature.p7s
microsoft.visualstudio.web.codegeneration.templating\2.1.4\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll
microsoft.visualstudio.web.codegeneration.templating\2.1.4\microsoft.visualstudio.web.codegeneration.templating.2.1.4.nupkg.sha512
microsoft.visualstudio.web.codegeneration.templating\2.1.4\microsoft.visualstudio.web.codegeneration.templating.nuspec
microsoft.visualstudio.web.codegeneration.utils\2.1.4\.signature.p7s
microsoft.visualstudio.web.codegeneration.utils\2.1.4\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll
microsoft.visualstudio.web.codegeneration.utils\2.1.4\microsoft.visualstudio.web.codegeneration.utils.2.1.4.nupkg.sha512
microsoft.visualstudio.web.codegeneration.utils\2.1.4\microsoft.visualstudio.web.codegeneration.utils.nuspec
microsoft.visualstudio.web.codegeneration\2.1.4\.signature.p7s
microsoft.visualstudio.web.codegeneration\2.1.4\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.dll
microsoft.visualstudio.web.codegeneration\2.1.4\microsoft.visualstudio.web.codegeneration.2.1.4.nupkg.sha512
microsoft.visualstudio.web.codegeneration\2.1.4\microsoft.visualstudio.web.codegeneration.nuspec
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\.signature.p7s
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Generators\ParameterDefinitions\area.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Generators\ParameterDefinitions\controller.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Generators\ParameterDefinitions\identity.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Generators\ParameterDefinitions\razorpage.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Generators\ParameterDefinitions\view.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\lib\netstandard2.0\identitygeneratorfilesconfig.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\microsoft.visualstudio.web.codegenerators.mvc.2.1.4.nupkg.sha512
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\microsoft.visualstudio.web.codegenerators.mvc.nuspec
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ControllerGenerator\ApiControllerWithActions.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ControllerGenerator\ApiControllerWithContext.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ControllerGenerator\ApiEmptyController.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ControllerGenerator\ControllerWithActions.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ControllerGenerator\EmptyController.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ControllerGenerator\MvcControllerWithContext.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\_LoginPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Data\ApplicationDbContext.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Data\ApplicationUser.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\IdentityHostingStartup.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\_Layout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\_ValidationScriptsPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\_ViewImports.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\_ViewStart.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account._ViewImports.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.AccessDenied.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.AccessDenied.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ConfirmEmail.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ConfirmEmail.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ExternalLogin.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ExternalLogin.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ForgotPassword.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ForgotPassword.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.Lockout.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.Lockout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.Login.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.Login.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.LoginWith2fa.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.LoginWith2fa.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.Logout.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.Logout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.Register.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.Register.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ResetPassword.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ResetPassword.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage._Layout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage._ManageNav.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage._StatusMessage.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage._ViewImports.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ManageNavPages.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Error.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Error.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\ScaffoldingReadme.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\SupportPages._CookieConsentPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\SupportPages._ViewImports.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\SupportPages._ViewStart.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\css\site.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\css\site.min.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\favicon.ico
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\images\banner1.svg
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\images\banner2.svg
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\images\banner3.svg
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\js\site.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\js\site.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\.bower.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.eot
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.svg
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.ttf
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff2
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\js\npm.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\LICENSE
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery\.bower.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery\dist\jquery.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery\LICENSE.txt
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation\.bower.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation\LICENSE.md
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\.bower.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\LICENSE.txt
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\MvcLayout\_Layout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\MvcLayout\Error.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\_ValidationScriptsPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\Create.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\CreatePageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\Delete.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\DeletePageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\Details.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\DetailsPageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\Edit.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\EditPageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\Empty.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\EmptyPageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\List.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\ListPageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Startup\ReadMe.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Startup\Startup.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ViewGenerator\_ValidationScriptsPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ViewGenerator\Create.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ViewGenerator\Delete.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ViewGenerator\Details.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ViewGenerator\Edit.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ViewGenerator\Empty.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ViewGenerator\List.cshtml

View File

@ -1,205 +0,0 @@
microsoft.aspnetcore.razor.design\2.1.2\.signature.p7s
microsoft.aspnetcore.razor.design\2.1.2\build\netstandard2.0\Microsoft.AspNetCore.Razor.Design.CodeGeneration.targets
microsoft.aspnetcore.razor.design\2.1.2\build\netstandard2.0\Microsoft.AspNetCore.Razor.Design.props
microsoft.aspnetcore.razor.design\2.1.2\buildMultiTargeting\Microsoft.AspNetCore.Razor.Design.props
microsoft.aspnetcore.razor.design\2.1.2\microsoft.aspnetcore.razor.design.2.1.2.nupkg.sha512
microsoft.aspnetcore.razor.design\2.1.2\microsoft.aspnetcore.razor.design.nuspec
microsoft.aspnetcore.razor.design\2.1.2\tasks\net46\Microsoft.AspNetCore.Razor.Tasks.dll
microsoft.aspnetcore.razor.design\2.1.2\tasks\netstandard2.0\Microsoft.AspNetCore.Razor.Tasks.dll
microsoft.aspnetcore.razor.design\2.1.2\tools\Microsoft.AspNetCore.Razor.Language.dll
microsoft.aspnetcore.razor.design\2.1.2\tools\Microsoft.CodeAnalysis.CSharp.dll
microsoft.aspnetcore.razor.design\2.1.2\tools\Microsoft.CodeAnalysis.dll
microsoft.aspnetcore.razor.design\2.1.2\tools\Microsoft.CodeAnalysis.Razor.dll
microsoft.aspnetcore.razor.design\2.1.2\tools\Newtonsoft.Json.dll
microsoft.aspnetcore.razor.design\2.1.2\tools\runtimes\unix\lib\netstandard1.3\System.Text.Encoding.CodePages.dll
microsoft.aspnetcore.razor.design\2.1.2\tools\runtimes\win\lib\netstandard1.3\System.Text.Encoding.CodePages.dll
microsoft.aspnetcore.razor.design\2.1.2\tools\rzc.deps.json
microsoft.aspnetcore.razor.design\2.1.2\tools\rzc.dll
microsoft.aspnetcore.razor.design\2.1.2\tools\rzc.runtimeconfig.json
microsoft.visualstudio.web.codegeneration.contracts\2.1.5\.signature.p7s
microsoft.visualstudio.web.codegeneration.contracts\2.1.5\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll
microsoft.visualstudio.web.codegeneration.contracts\2.1.5\microsoft.visualstudio.web.codegeneration.contracts.2.1.5.nupkg.sha512
microsoft.visualstudio.web.codegeneration.contracts\2.1.5\microsoft.visualstudio.web.codegeneration.contracts.nuspec
microsoft.visualstudio.web.codegeneration.core\2.1.5\.signature.p7s
microsoft.visualstudio.web.codegeneration.core\2.1.5\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll
microsoft.visualstudio.web.codegeneration.core\2.1.5\microsoft.visualstudio.web.codegeneration.core.2.1.5.nupkg.sha512
microsoft.visualstudio.web.codegeneration.core\2.1.5\microsoft.visualstudio.web.codegeneration.core.nuspec
microsoft.visualstudio.web.codegeneration.design\2.1.5\.signature.p7s
microsoft.visualstudio.web.codegeneration.design\2.1.5\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.design\2.1.5\lib\netstandard2.0\dotnet-aspnet-codegenerator-design.dll
microsoft.visualstudio.web.codegeneration.design\2.1.5\microsoft.visualstudio.web.codegeneration.design.2.1.5.nupkg.sha512
microsoft.visualstudio.web.codegeneration.design\2.1.5\microsoft.visualstudio.web.codegeneration.design.nuspec
microsoft.visualstudio.web.codegeneration.design\2.1.5\runtimes\win-arm\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.design\2.1.5\runtimes\win-arm64\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.design\2.1.5\runtimes\win7-x64\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.design\2.1.5\runtimes\win7-x86\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.5\.signature.p7s
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.5\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.5\microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.1.5.nupkg.sha512
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.5\microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.5\Templates\DbContext\NewLocalDbContext.cshtml
microsoft.visualstudio.web.codegeneration.templating\2.1.5\.signature.p7s
microsoft.visualstudio.web.codegeneration.templating\2.1.5\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll
microsoft.visualstudio.web.codegeneration.templating\2.1.5\microsoft.visualstudio.web.codegeneration.templating.2.1.5.nupkg.sha512
microsoft.visualstudio.web.codegeneration.templating\2.1.5\microsoft.visualstudio.web.codegeneration.templating.nuspec
microsoft.visualstudio.web.codegeneration.utils\2.1.5\.signature.p7s
microsoft.visualstudio.web.codegeneration.utils\2.1.5\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll
microsoft.visualstudio.web.codegeneration.utils\2.1.5\microsoft.visualstudio.web.codegeneration.utils.2.1.5.nupkg.sha512
microsoft.visualstudio.web.codegeneration.utils\2.1.5\microsoft.visualstudio.web.codegeneration.utils.nuspec
microsoft.visualstudio.web.codegeneration\2.1.5\.signature.p7s
microsoft.visualstudio.web.codegeneration\2.1.5\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.dll
microsoft.visualstudio.web.codegeneration\2.1.5\microsoft.visualstudio.web.codegeneration.2.1.5.nupkg.sha512
microsoft.visualstudio.web.codegeneration\2.1.5\microsoft.visualstudio.web.codegeneration.nuspec
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\.signature.p7s
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Generators\ParameterDefinitions\area.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Generators\ParameterDefinitions\controller.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Generators\ParameterDefinitions\identity.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Generators\ParameterDefinitions\razorpage.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Generators\ParameterDefinitions\view.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\lib\netstandard2.0\identitygeneratorfilesconfig.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\microsoft.visualstudio.web.codegenerators.mvc.2.1.5.nupkg.sha512
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\microsoft.visualstudio.web.codegenerators.mvc.nuspec
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ControllerGenerator\ApiControllerWithActions.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ControllerGenerator\ApiControllerWithContext.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ControllerGenerator\ApiEmptyController.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ControllerGenerator\ControllerWithActions.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ControllerGenerator\EmptyController.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ControllerGenerator\MvcControllerWithContext.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\_LoginPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Data\ApplicationDbContext.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Data\ApplicationUser.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\IdentityHostingStartup.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\_Layout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\_ValidationScriptsPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\_ViewImports.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\_ViewStart.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account._ViewImports.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.AccessDenied.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.AccessDenied.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ConfirmEmail.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ConfirmEmail.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ExternalLogin.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ExternalLogin.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ForgotPassword.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ForgotPassword.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.Lockout.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.Lockout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.Login.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.Login.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.LoginWith2fa.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.LoginWith2fa.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.Logout.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.Logout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.Register.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.Register.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ResetPassword.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ResetPassword.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage._Layout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage._ManageNav.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage._StatusMessage.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage._ViewImports.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ManageNavPages.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Error.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Error.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\ScaffoldingReadme.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\SupportPages._CookieConsentPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\SupportPages._ViewImports.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\SupportPages._ViewStart.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\css\site.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\css\site.min.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\favicon.ico
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\images\banner1.svg
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\images\banner2.svg
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\images\banner3.svg
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\js\site.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\js\site.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\.bower.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.eot
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.svg
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.ttf
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff2
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\js\npm.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\LICENSE
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\.bower.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\LICENSE.txt
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation\.bower.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation\LICENSE.md
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery\.bower.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery\dist\jquery.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery\LICENSE.txt
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\MvcLayout\_Layout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\MvcLayout\Error.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\_ValidationScriptsPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\Create.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\CreatePageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\Delete.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\DeletePageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\Details.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\DetailsPageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\Edit.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\EditPageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\Empty.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\EmptyPageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\List.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\ListPageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Startup\ReadMe.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Startup\Startup.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ViewGenerator\_ValidationScriptsPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ViewGenerator\Create.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ViewGenerator\Delete.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ViewGenerator\Details.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ViewGenerator\Edit.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ViewGenerator\Empty.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ViewGenerator\List.cshtml

View File

@ -1,667 +0,0 @@
libuv\1.10.0\.nupkg.metadata
libuv\1.10.0\.signature.p7s
messagepack\1.7.3.4\.nupkg.metadata
messagepack\1.7.3.4\.signature.p7s
microsoft.applicationinsights.aspnetcore\2.1.1\.nupkg.metadata
microsoft.applicationinsights.aspnetcore\2.1.1\.signature.p7s
microsoft.applicationinsights.dependencycollector\2.4.1\.nupkg.metadata
microsoft.applicationinsights.dependencycollector\2.4.1\.signature.p7s
microsoft.applicationinsights\2.4.0\.nupkg.metadata
microsoft.applicationinsights\2.4.0\.signature.p7s
microsoft.aspnet.webapi.client\5.2.6\.nupkg.metadata
microsoft.aspnetcore.all\2.1.1\.nupkg.metadata
microsoft.aspnetcore.antiforgery\2.1.1\.nupkg.metadata
microsoft.aspnetcore.app\2.1.1\.nupkg.metadata
microsoft.aspnetcore.applicationinsights.hostingstartup\2.1.1\.nupkg.metadata
microsoft.aspnetcore.authentication.abstractions\2.1.1\.nupkg.metadata
microsoft.aspnetcore.authentication.azuread.ui\2.1.1\.nupkg.metadata
microsoft.aspnetcore.authentication.azureadb2c.ui\2.1.1\.nupkg.metadata
microsoft.aspnetcore.authentication.cookies\2.1.1\.nupkg.metadata
microsoft.aspnetcore.authentication.core\2.1.1\.nupkg.metadata
microsoft.aspnetcore.authentication.facebook\2.1.1\.nupkg.metadata
microsoft.aspnetcore.authentication.google\2.1.1\.nupkg.metadata
microsoft.aspnetcore.authentication.jwtbearer\2.1.1\.nupkg.metadata
microsoft.aspnetcore.authentication.microsoftaccount\2.1.1\.nupkg.metadata
microsoft.aspnetcore.authentication.oauth\2.1.1\.nupkg.metadata
microsoft.aspnetcore.authentication.openidconnect\2.1.1\.nupkg.metadata
microsoft.aspnetcore.authentication.twitter\2.1.1\.nupkg.metadata
microsoft.aspnetcore.authentication.wsfederation\2.1.1\.nupkg.metadata
microsoft.aspnetcore.authentication\2.1.1\.nupkg.metadata
microsoft.aspnetcore.authorization.policy\2.1.1\.nupkg.metadata
microsoft.aspnetcore.authorization\2.1.1\.nupkg.metadata
microsoft.aspnetcore.azureappservices.hostingstartup\2.1.1\.nupkg.metadata
microsoft.aspnetcore.azureappservicesintegration\2.1.1\.nupkg.metadata
microsoft.aspnetcore.connections.abstractions\2.1.1\.nupkg.metadata
microsoft.aspnetcore.cookiepolicy\2.1.1\.nupkg.metadata
microsoft.aspnetcore.cors\2.1.1\.nupkg.metadata
microsoft.aspnetcore.cryptography.internal\2.1.1\.nupkg.metadata
microsoft.aspnetcore.cryptography.keyderivation\2.1.1\.nupkg.metadata
microsoft.aspnetcore.dataprotection.abstractions\2.1.1\.nupkg.metadata
microsoft.aspnetcore.dataprotection.azurekeyvault\2.1.1\.nupkg.metadata
microsoft.aspnetcore.dataprotection.azurestorage\2.1.1\.nupkg.metadata
microsoft.aspnetcore.dataprotection.extensions\2.1.1\.nupkg.metadata
microsoft.aspnetcore.dataprotection\2.1.1\.nupkg.metadata
microsoft.aspnetcore.diagnostics.abstractions\2.1.1\.nupkg.metadata
microsoft.aspnetcore.diagnostics.entityframeworkcore\2.1.1\.nupkg.metadata
microsoft.aspnetcore.diagnostics\2.1.1\.nupkg.metadata
microsoft.aspnetcore.hostfiltering\2.1.1\.nupkg.metadata
microsoft.aspnetcore.hosting.abstractions\2.1.1\.nupkg.metadata
microsoft.aspnetcore.hosting.server.abstractions\2.1.1\.nupkg.metadata
microsoft.aspnetcore.hosting\2.1.1\.nupkg.metadata
microsoft.aspnetcore.html.abstractions\2.1.1\.nupkg.metadata
microsoft.aspnetcore.http.abstractions\2.1.1\.nupkg.metadata
microsoft.aspnetcore.http.connections.common\1.0.1\.nupkg.metadata
microsoft.aspnetcore.http.connections\1.0.1\.nupkg.metadata
microsoft.aspnetcore.http.extensions\2.1.1\.nupkg.metadata
microsoft.aspnetcore.http.features\2.1.1\.nupkg.metadata
microsoft.aspnetcore.http\2.1.1\.nupkg.metadata
microsoft.aspnetcore.httpoverrides\2.1.1\.nupkg.metadata
microsoft.aspnetcore.httpspolicy\2.1.1\.nupkg.metadata
microsoft.aspnetcore.identity.entityframeworkcore\2.1.1\.nupkg.metadata
microsoft.aspnetcore.identity.ui\2.1.1\.nupkg.metadata
microsoft.aspnetcore.identity\2.1.1\.nupkg.metadata
microsoft.aspnetcore.jsonpatch\2.1.1\.nupkg.metadata
microsoft.aspnetcore.localization.routing\2.1.1\.nupkg.metadata
microsoft.aspnetcore.localization\2.1.1\.nupkg.metadata
microsoft.aspnetcore.middlewareanalysis\2.1.1\.nupkg.metadata
microsoft.aspnetcore.mvc.abstractions\2.1.1\.nupkg.metadata
microsoft.aspnetcore.mvc.analyzers\2.1.1\.nupkg.metadata
microsoft.aspnetcore.mvc.apiexplorer\2.1.1\.nupkg.metadata
microsoft.aspnetcore.mvc.core\2.1.1\.nupkg.metadata
microsoft.aspnetcore.mvc.cors\2.1.1\.nupkg.metadata
microsoft.aspnetcore.mvc.dataannotations\2.1.1\.nupkg.metadata
microsoft.aspnetcore.mvc.formatters.json\2.1.1\.nupkg.metadata
microsoft.aspnetcore.mvc.formatters.xml\2.1.1\.nupkg.metadata
microsoft.aspnetcore.mvc.localization\2.1.1\.nupkg.metadata
microsoft.aspnetcore.mvc.razor.extensions\2.1.1\.nupkg.metadata
microsoft.aspnetcore.mvc.razor.viewcompilation\2.1.1\.nupkg.metadata
microsoft.aspnetcore.mvc.razor\2.1.1\.nupkg.metadata
microsoft.aspnetcore.mvc.razorpages\2.1.1\.nupkg.metadata
microsoft.aspnetcore.mvc.taghelpers\2.1.1\.nupkg.metadata
microsoft.aspnetcore.mvc.viewfeatures\2.1.1\.nupkg.metadata
microsoft.aspnetcore.mvc\2.1.1\.nupkg.metadata
microsoft.aspnetcore.nodeservices\2.1.1\.nupkg.metadata
microsoft.aspnetcore.owin\2.1.1\.nupkg.metadata
microsoft.aspnetcore.razor.design\2.1.2\.nupkg.metadata
microsoft.aspnetcore.razor.language\2.1.1\.nupkg.metadata
microsoft.aspnetcore.razor.runtime\2.1.1\.nupkg.metadata
microsoft.aspnetcore.razor\2.1.1\.nupkg.metadata
microsoft.aspnetcore.responsecaching.abstractions\2.1.1\.nupkg.metadata
microsoft.aspnetcore.responsecaching\2.1.1\.nupkg.metadata
microsoft.aspnetcore.responsecompression\2.1.1\.nupkg.metadata
microsoft.aspnetcore.rewrite\2.1.1\.nupkg.metadata
microsoft.aspnetcore.routing.abstractions\2.1.1\.nupkg.metadata
microsoft.aspnetcore.routing\2.1.1\.nupkg.metadata
microsoft.aspnetcore.server.httpsys\2.1.1\.nupkg.metadata
microsoft.aspnetcore.server.iisintegration\2.1.1\.nupkg.metadata
microsoft.aspnetcore.server.kestrel.core\2.1.1\.nupkg.metadata
microsoft.aspnetcore.server.kestrel.https\2.1.1\.nupkg.metadata
microsoft.aspnetcore.server.kestrel.transport.abstractions\2.1.1\.nupkg.metadata
microsoft.aspnetcore.server.kestrel.transport.libuv\2.1.1\.nupkg.metadata
microsoft.aspnetcore.server.kestrel.transport.sockets\2.1.1\.nupkg.metadata
microsoft.aspnetcore.server.kestrel\2.1.1\.nupkg.metadata
microsoft.aspnetcore.session\2.1.1\.nupkg.metadata
microsoft.aspnetcore.signalr.common\1.0.1\.nupkg.metadata
microsoft.aspnetcore.signalr.core\1.0.1\.nupkg.metadata
microsoft.aspnetcore.signalr.protocols.json\1.0.1\.nupkg.metadata
microsoft.aspnetcore.signalr.redis\1.0.1\.nupkg.metadata
microsoft.aspnetcore.signalr\1.0.1\.nupkg.metadata
microsoft.aspnetcore.spaservices.extensions\2.1.1\.nupkg.metadata
microsoft.aspnetcore.spaservices\2.1.1\.nupkg.metadata
microsoft.aspnetcore.staticfiles\2.1.1\.nupkg.metadata
microsoft.aspnetcore.websockets\2.1.1\.nupkg.metadata
microsoft.aspnetcore.webutilities\2.1.1\.nupkg.metadata
microsoft.aspnetcore\2.1.1\.nupkg.metadata
microsoft.azure.keyvault.webkey\2.0.7\.nupkg.metadata
microsoft.azure.keyvault.webkey\2.0.7\.signature.p7s
microsoft.azure.keyvault\2.3.2\.nupkg.metadata
microsoft.azure.keyvault\2.3.2\.signature.p7s
microsoft.azure.services.appauthentication\1.0.1\.nupkg.metadata
microsoft.azure.services.appauthentication\1.0.1\.signature.p7s
microsoft.codeanalysis.analyzers\1.1.0\.nupkg.metadata
microsoft.codeanalysis.common\2.8.0\.nupkg.metadata
microsoft.codeanalysis.csharp.workspaces\2.8.0\.nupkg.metadata
microsoft.codeanalysis.csharp\2.8.0\.nupkg.metadata
microsoft.codeanalysis.razor\2.1.1\.nupkg.metadata
microsoft.codeanalysis.workspaces.common\2.8.0\.nupkg.metadata
microsoft.csharp\4.0.1\.nupkg.metadata
microsoft.csharp\4.3.0\.nupkg.metadata
microsoft.csharp\4.5.0\.nupkg.metadata
microsoft.data.edm\5.8.2\.nupkg.metadata
microsoft.data.odata\5.8.2\.nupkg.metadata
microsoft.data.sqlite.core\2.1.0\.nupkg.metadata
microsoft.data.sqlite\2.1.0\.nupkg.metadata
microsoft.dotnet.platformabstractions\2.1.0\.nupkg.metadata
microsoft.entityframeworkcore.abstractions\2.1.1\.nupkg.metadata
microsoft.entityframeworkcore.analyzers\2.1.1\.nupkg.metadata
microsoft.entityframeworkcore.design\2.1.1\.nupkg.metadata
microsoft.entityframeworkcore.inmemory\2.1.1\.nupkg.metadata
microsoft.entityframeworkcore.relational\2.1.1\.nupkg.metadata
microsoft.entityframeworkcore.sqlite.core\2.1.1\.nupkg.metadata
microsoft.entityframeworkcore.sqlite\2.1.1\.nupkg.metadata
microsoft.entityframeworkcore.sqlserver\2.1.1\.nupkg.metadata
microsoft.entityframeworkcore.tools\2.1.1\.nupkg.metadata
microsoft.entityframeworkcore\2.1.1\.nupkg.metadata
microsoft.extensions.caching.abstractions\2.1.1\.nupkg.metadata
microsoft.extensions.caching.memory\2.1.1\.nupkg.metadata
microsoft.extensions.caching.redis\2.1.1\.nupkg.metadata
microsoft.extensions.caching.sqlserver\2.1.1\.nupkg.metadata
microsoft.extensions.configuration.abstractions\2.1.1\.nupkg.metadata
microsoft.extensions.configuration.azurekeyvault\2.1.1\.nupkg.metadata
microsoft.extensions.configuration.binder\2.1.1\.nupkg.metadata
microsoft.extensions.configuration.commandline\2.1.1\.nupkg.metadata
microsoft.extensions.configuration.environmentvariables\2.1.1\.nupkg.metadata
microsoft.extensions.configuration.fileextensions\2.1.1\.nupkg.metadata
microsoft.extensions.configuration.ini\2.1.1\.nupkg.metadata
microsoft.extensions.configuration.json\2.1.1\.nupkg.metadata
microsoft.extensions.configuration.keyperfile\2.1.1\.nupkg.metadata
microsoft.extensions.configuration.usersecrets\2.1.1\.nupkg.metadata
microsoft.extensions.configuration.xml\2.1.1\.nupkg.metadata
microsoft.extensions.configuration\2.1.1\.nupkg.metadata
microsoft.extensions.dependencyinjection.abstractions\2.1.1\.nupkg.metadata
microsoft.extensions.dependencyinjection\2.1.1\.nupkg.metadata
microsoft.extensions.dependencymodel\2.1.0\.nupkg.metadata
microsoft.extensions.diagnosticadapter\2.1.0\.nupkg.metadata
microsoft.extensions.fileproviders.abstractions\2.1.1\.nupkg.metadata
microsoft.extensions.fileproviders.composite\2.1.1\.nupkg.metadata
microsoft.extensions.fileproviders.embedded\2.1.1\.nupkg.metadata
microsoft.extensions.fileproviders.physical\2.1.1\.nupkg.metadata
microsoft.extensions.filesystemglobbing\2.1.1\.nupkg.metadata
microsoft.extensions.hosting.abstractions\2.1.1\.nupkg.metadata
microsoft.extensions.hosting\2.1.1\.nupkg.metadata
microsoft.extensions.http\2.1.1\.nupkg.metadata
microsoft.extensions.identity.core\2.1.1\.nupkg.metadata
microsoft.extensions.identity.stores\2.1.1\.nupkg.metadata
microsoft.extensions.localization.abstractions\2.1.1\.nupkg.metadata
microsoft.extensions.localization\2.1.1\.nupkg.metadata
microsoft.extensions.logging.abstractions\2.1.1\.nupkg.metadata
microsoft.extensions.logging.azureappservices\2.1.1\.nupkg.metadata
microsoft.extensions.logging.configuration\2.1.1\.nupkg.metadata
microsoft.extensions.logging.console\2.1.1\.nupkg.metadata
microsoft.extensions.logging.debug\2.1.1\.nupkg.metadata
microsoft.extensions.logging.eventsource\2.1.1\.nupkg.metadata
microsoft.extensions.logging.tracesource\2.1.1\.nupkg.metadata
microsoft.extensions.logging\2.1.1\.nupkg.metadata
microsoft.extensions.objectpool\2.1.1\.nupkg.metadata
microsoft.extensions.options.configurationextensions\2.1.1\.nupkg.metadata
microsoft.extensions.options\2.1.1\.nupkg.metadata
microsoft.extensions.platformabstractions\1.1.0\.nupkg.metadata
microsoft.extensions.primitives\2.1.1\.nupkg.metadata
microsoft.extensions.webencoders\2.1.1\.nupkg.metadata
microsoft.identitymodel.clients.activedirectory\3.14.2\.nupkg.metadata
microsoft.identitymodel.clients.activedirectory\3.14.2\.signature.p7s
microsoft.identitymodel.logging\5.2.0\.nupkg.metadata
microsoft.identitymodel.logging\5.2.0\.signature.p7s
microsoft.identitymodel.protocols.openidconnect\5.2.0\.nupkg.metadata
microsoft.identitymodel.protocols.openidconnect\5.2.0\.signature.p7s
microsoft.identitymodel.protocols.wsfederation\5.2.0\.nupkg.metadata
microsoft.identitymodel.protocols.wsfederation\5.2.0\.signature.p7s
microsoft.identitymodel.protocols\5.2.0\.nupkg.metadata
microsoft.identitymodel.protocols\5.2.0\.signature.p7s
microsoft.identitymodel.tokens.saml\5.2.0\.nupkg.metadata
microsoft.identitymodel.tokens.saml\5.2.0\.signature.p7s
microsoft.identitymodel.tokens\5.2.0\.nupkg.metadata
microsoft.identitymodel.tokens\5.2.0\.signature.p7s
microsoft.identitymodel.xml\5.2.0\.nupkg.metadata
microsoft.identitymodel.xml\5.2.0\.signature.p7s
microsoft.net.http.headers\2.1.1\.nupkg.metadata
microsoft.netcore.app\2.1.0\.nupkg.metadata
microsoft.netcore.dotnetapphost\2.1.0\.nupkg.metadata
microsoft.netcore.dotnethostpolicy\2.1.0\.nupkg.metadata
microsoft.netcore.dotnethostresolver\2.1.0\.nupkg.metadata
microsoft.netcore.platforms\1.0.1\.nupkg.metadata
microsoft.netcore.platforms\1.0.1\.signature.p7s
microsoft.netcore.platforms\1.0.2\.nupkg.metadata
microsoft.netcore.platforms\1.0.2\.signature.p7s
microsoft.netcore.platforms\1.1.0\.nupkg.metadata
microsoft.netcore.platforms\1.1.0\.signature.p7s
microsoft.netcore.platforms\2.0.0\.nupkg.metadata
microsoft.netcore.platforms\2.0.0\.signature.p7s
microsoft.netcore.platforms\2.1.0\.nupkg.metadata
microsoft.netcore.targets\1.0.1\.nupkg.metadata
microsoft.netcore.targets\1.1.0\.nupkg.metadata
microsoft.netcore.targets\2.1.0\.nupkg.metadata
microsoft.rest.clientruntime.azure\3.3.7\.nupkg.metadata
microsoft.rest.clientruntime.azure\3.3.7\.signature.p7s
microsoft.rest.clientruntime\2.3.8\.nupkg.metadata
microsoft.rest.clientruntime\2.3.8\.signature.p7s
microsoft.visualstudio.web.browserlink\2.1.1\.nupkg.metadata
microsoft.visualstudio.web.codegeneration.contracts\2.1.6\.nupkg.metadata
microsoft.visualstudio.web.codegeneration.contracts\2.1.6\.signature.p7s
microsoft.visualstudio.web.codegeneration.contracts\2.1.6\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll
microsoft.visualstudio.web.codegeneration.contracts\2.1.6\microsoft.visualstudio.web.codegeneration.contracts.2.1.6.nupkg.sha512
microsoft.visualstudio.web.codegeneration.contracts\2.1.6\microsoft.visualstudio.web.codegeneration.contracts.nuspec
microsoft.visualstudio.web.codegeneration.core\2.1.6\.nupkg.metadata
microsoft.visualstudio.web.codegeneration.core\2.1.6\.signature.p7s
microsoft.visualstudio.web.codegeneration.core\2.1.6\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll
microsoft.visualstudio.web.codegeneration.core\2.1.6\microsoft.visualstudio.web.codegeneration.core.2.1.6.nupkg.sha512
microsoft.visualstudio.web.codegeneration.core\2.1.6\microsoft.visualstudio.web.codegeneration.core.nuspec
microsoft.visualstudio.web.codegeneration.design\2.1.6\.nupkg.metadata
microsoft.visualstudio.web.codegeneration.design\2.1.6\.signature.p7s
microsoft.visualstudio.web.codegeneration.design\2.1.6\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.design\2.1.6\lib\netstandard2.0\dotnet-aspnet-codegenerator-design.dll
microsoft.visualstudio.web.codegeneration.design\2.1.6\microsoft.visualstudio.web.codegeneration.design.2.1.6.nupkg.sha512
microsoft.visualstudio.web.codegeneration.design\2.1.6\microsoft.visualstudio.web.codegeneration.design.nuspec
microsoft.visualstudio.web.codegeneration.design\2.1.6\runtimes\win7-x64\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.design\2.1.6\runtimes\win7-x86\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.design\2.1.6\runtimes\win-arm\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.design\2.1.6\runtimes\win-arm64\lib\net461\dotnet-aspnet-codegenerator-design.exe
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.6\.nupkg.metadata
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.6\.signature.p7s
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.6\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.6\microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.1.6.nupkg.sha512
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.6\microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec
microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.6\Templates\DbContext\NewLocalDbContext.cshtml
microsoft.visualstudio.web.codegeneration.templating\2.1.6\.nupkg.metadata
microsoft.visualstudio.web.codegeneration.templating\2.1.6\.signature.p7s
microsoft.visualstudio.web.codegeneration.templating\2.1.6\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll
microsoft.visualstudio.web.codegeneration.templating\2.1.6\microsoft.visualstudio.web.codegeneration.templating.2.1.6.nupkg.sha512
microsoft.visualstudio.web.codegeneration.templating\2.1.6\microsoft.visualstudio.web.codegeneration.templating.nuspec
microsoft.visualstudio.web.codegeneration.utils\2.1.6\.nupkg.metadata
microsoft.visualstudio.web.codegeneration.utils\2.1.6\.signature.p7s
microsoft.visualstudio.web.codegeneration.utils\2.1.6\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll
microsoft.visualstudio.web.codegeneration.utils\2.1.6\microsoft.visualstudio.web.codegeneration.utils.2.1.6.nupkg.sha512
microsoft.visualstudio.web.codegeneration.utils\2.1.6\microsoft.visualstudio.web.codegeneration.utils.nuspec
microsoft.visualstudio.web.codegeneration\2.1.6\.nupkg.metadata
microsoft.visualstudio.web.codegeneration\2.1.6\.signature.p7s
microsoft.visualstudio.web.codegeneration\2.1.6\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.dll
microsoft.visualstudio.web.codegeneration\2.1.6\microsoft.visualstudio.web.codegeneration.2.1.6.nupkg.sha512
microsoft.visualstudio.web.codegeneration\2.1.6\microsoft.visualstudio.web.codegeneration.nuspec
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\.nupkg.metadata
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\.signature.p7s
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Generators\ParameterDefinitions\area.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Generators\ParameterDefinitions\controller.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Generators\ParameterDefinitions\identity.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Generators\ParameterDefinitions\razorpage.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Generators\ParameterDefinitions\view.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\lib\netstandard2.0\identitygeneratorfilesconfig.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\microsoft.visualstudio.web.codegenerators.mvc.2.1.6.nupkg.sha512
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\microsoft.visualstudio.web.codegenerators.mvc.nuspec
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ControllerGenerator\ApiControllerWithActions.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ControllerGenerator\ApiControllerWithContext.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ControllerGenerator\ApiEmptyController.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ControllerGenerator\ControllerWithActions.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ControllerGenerator\EmptyController.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ControllerGenerator\MvcControllerWithContext.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\_LoginPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Data\ApplicationDbContext.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Data\ApplicationUser.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\IdentityHostingStartup.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\_Layout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\_ValidationScriptsPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\_ViewImports.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\_ViewStart.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account._ViewImports.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.AccessDenied.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.AccessDenied.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ConfirmEmail.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ConfirmEmail.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ExternalLogin.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ExternalLogin.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ForgotPassword.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ForgotPassword.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.Lockout.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.Lockout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.Login.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.Login.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.LoginWith2fa.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.LoginWith2fa.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.Logout.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.Logout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.Register.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.Register.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ResetPassword.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ResetPassword.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage._Layout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage._ManageNav.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage._StatusMessage.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage._ViewImports.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ManageNavPages.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Error.cs.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Error.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\ScaffoldingReadme.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\SupportPages._CookieConsentPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\SupportPages._ViewImports.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\SupportPages._ViewStart.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\css\site.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\css\site.min.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\favicon.ico
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\images\banner1.svg
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\images\banner2.svg
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\images\banner3.svg
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\js\site.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\js\site.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\.bower.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.eot
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.svg
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.ttf
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff2
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\js\npm.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\LICENSE
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery\.bower.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery\dist\jquery.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.map
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery\LICENSE.txt
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation\.bower.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation\LICENSE.md
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\.bower.json
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.min.js
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\LICENSE.txt
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\MvcLayout\_Layout.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\MvcLayout\Error.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\_ValidationScriptsPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\Create.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\CreatePageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\Delete.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\DeletePageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\Details.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\DetailsPageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\Edit.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\EditPageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\Empty.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\EmptyPageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\List.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\ListPageModel.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Startup\ReadMe.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Startup\Startup.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ViewGenerator\_ValidationScriptsPartial.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ViewGenerator\Create.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ViewGenerator\Delete.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ViewGenerator\Details.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ViewGenerator\Edit.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ViewGenerator\Empty.cshtml
microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ViewGenerator\List.cshtml
microsoft.win32.primitives\4.0.1\.nupkg.metadata
microsoft.win32.primitives\4.3.0\.nupkg.metadata
microsoft.win32.registry\4.3.0\.nupkg.metadata
microsoft.win32.registry\4.5.0\.nupkg.metadata
netstandard.library\1.6.0\.nupkg.metadata
netstandard.library\1.6.1\.nupkg.metadata
netstandard.library\2.0.3\.nupkg.metadata
newtonsoft.json.bson\1.0.1\.nupkg.metadata
newtonsoft.json.bson\1.0.1\.signature.p7s
newtonsoft.json\10.0.1\.nupkg.metadata
newtonsoft.json\10.0.1\.signature.p7s
newtonsoft.json\11.0.2\.nupkg.metadata
newtonsoft.json\11.0.2\.signature.p7s
newtonsoft.json\9.0.1\.nupkg.metadata
nuget.frameworks\4.7.0\.nupkg.metadata
remotion.linq\2.2.0\.nupkg.metadata
remotion.linq\2.2.0\.signature.p7s
runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
runtime.native.system.data.sqlclient.sni\4.4.0\.nupkg.metadata
runtime.native.system.io.compression\4.1.0\.nupkg.metadata
runtime.native.system.io.compression\4.3.0\.nupkg.metadata
runtime.native.system.net.http\4.0.1\.nupkg.metadata
runtime.native.system.net.http\4.3.0\.nupkg.metadata
runtime.native.system.net.security\4.3.0\.nupkg.metadata
runtime.native.system.security.cryptography.apple\4.3.0\.nupkg.metadata
runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
runtime.native.system.security.cryptography\4.0.0\.nupkg.metadata
runtime.native.system\4.0.0\.nupkg.metadata
runtime.native.system\4.3.0\.nupkg.metadata
runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\4.3.0\.nupkg.metadata
runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
runtime.win-arm64.runtime.native.system.data.sqlclient.sni\4.4.0\.nupkg.metadata
runtime.win-x64.runtime.native.system.data.sqlclient.sni\4.4.0\.nupkg.metadata
runtime.win-x86.runtime.native.system.data.sqlclient.sni\4.4.0\.nupkg.metadata
sqlitepclraw.bundle_green\1.1.11\.nupkg.metadata
sqlitepclraw.bundle_green\1.1.11\.signature.p7s
sqlitepclraw.core\1.1.11\.nupkg.metadata
sqlitepclraw.core\1.1.11\.signature.p7s
sqlitepclraw.lib.e_sqlite3.linux\1.1.11\.nupkg.metadata
sqlitepclraw.lib.e_sqlite3.linux\1.1.11\.signature.p7s
sqlitepclraw.lib.e_sqlite3.osx\1.1.11\.nupkg.metadata
sqlitepclraw.lib.e_sqlite3.osx\1.1.11\.signature.p7s
sqlitepclraw.lib.e_sqlite3.v110_xp\1.1.11\.nupkg.metadata
sqlitepclraw.lib.e_sqlite3.v110_xp\1.1.11\.signature.p7s
sqlitepclraw.provider.e_sqlite3.netstandard11\1.1.11\.nupkg.metadata
sqlitepclraw.provider.e_sqlite3.netstandard11\1.1.11\.signature.p7s
stackexchange.redis.strongname\1.2.4\.nupkg.metadata
stackexchange.redis.strongname\1.2.4\.signature.p7s
system.appcontext\4.1.0\.nupkg.metadata
system.appcontext\4.3.0\.nupkg.metadata
system.buffers\4.0.0\.nupkg.metadata
system.buffers\4.3.0\.nupkg.metadata
system.buffers\4.5.0\.nupkg.metadata
system.collections.concurrent\4.0.12\.nupkg.metadata
system.collections.concurrent\4.3.0\.nupkg.metadata
system.collections.immutable\1.3.0\.nupkg.metadata
system.collections.immutable\1.3.1\.nupkg.metadata
system.collections.immutable\1.5.0\.nupkg.metadata
system.collections.nongeneric\4.3.0\.nupkg.metadata
system.collections.specialized\4.3.0\.nupkg.metadata
system.collections\4.0.11\.nupkg.metadata
system.collections\4.3.0\.nupkg.metadata
system.componentmodel.annotations\4.5.0\.nupkg.metadata
system.componentmodel.primitives\4.3.0\.nupkg.metadata
system.componentmodel.typeconverter\4.3.0\.nupkg.metadata
system.componentmodel\4.3.0\.nupkg.metadata
system.composition.attributedmodel\1.0.31\.nupkg.metadata
system.composition.convention\1.0.31\.nupkg.metadata
system.composition.hosting\1.0.31\.nupkg.metadata
system.composition.runtime\1.0.31\.nupkg.metadata
system.composition.typedparts\1.0.31\.nupkg.metadata
system.composition\1.0.31\.nupkg.metadata
system.console\4.0.0\.nupkg.metadata
system.console\4.3.0\.nupkg.metadata
system.data.sqlclient\4.5.1\.nupkg.metadata
system.diagnostics.contracts\4.3.0\.nupkg.metadata
system.diagnostics.debug\4.0.11\.nupkg.metadata
system.diagnostics.debug\4.3.0\.nupkg.metadata
system.diagnostics.diagnosticsource\4.0.0\.nupkg.metadata
system.diagnostics.diagnosticsource\4.3.0\.nupkg.metadata
system.diagnostics.diagnosticsource\4.4.0\.nupkg.metadata
system.diagnostics.diagnosticsource\4.4.0\.signature.p7s
system.diagnostics.diagnosticsource\4.5.0\.nupkg.metadata
system.diagnostics.fileversioninfo\4.3.0\.nupkg.metadata
system.diagnostics.process\4.3.0\.nupkg.metadata
system.diagnostics.stacktrace\4.3.0\.nupkg.metadata
system.diagnostics.tools\4.0.1\.nupkg.metadata
system.diagnostics.tools\4.3.0\.nupkg.metadata
system.diagnostics.tracing\4.1.0\.nupkg.metadata
system.diagnostics.tracing\4.3.0\.nupkg.metadata
system.dynamic.runtime\4.0.11\.nupkg.metadata
system.dynamic.runtime\4.3.0\.nupkg.metadata
system.globalization.calendars\4.0.1\.nupkg.metadata
system.globalization.calendars\4.3.0\.nupkg.metadata
system.globalization.extensions\4.0.1\.nupkg.metadata
system.globalization.extensions\4.3.0\.nupkg.metadata
system.globalization\4.0.11\.nupkg.metadata
system.globalization\4.3.0\.nupkg.metadata
system.identitymodel.tokens.jwt\5.2.0\.nupkg.metadata
system.identitymodel.tokens.jwt\5.2.0\.signature.p7s
system.interactive.async\3.1.1\.nupkg.metadata
system.interactive.async\3.1.1\.signature.p7s
system.io.compression.zipfile\4.0.1\.nupkg.metadata
system.io.compression.zipfile\4.3.0\.nupkg.metadata
system.io.compression\4.1.0\.nupkg.metadata
system.io.compression\4.3.0\.nupkg.metadata
system.io.filesystem.primitives\4.0.1\.nupkg.metadata
system.io.filesystem.primitives\4.3.0\.nupkg.metadata
system.io.filesystem\4.0.1\.nupkg.metadata
system.io.filesystem\4.3.0\.nupkg.metadata
system.io.pipelines\4.5.0\.nupkg.metadata
system.io\4.1.0\.nupkg.metadata
system.io\4.3.0\.nupkg.metadata
system.linq.expressions\4.1.0\.nupkg.metadata
system.linq.expressions\4.3.0\.nupkg.metadata
system.linq.parallel\4.3.0\.nupkg.metadata
system.linq.queryable\4.0.1\.nupkg.metadata
system.linq\4.1.0\.nupkg.metadata
system.linq\4.3.0\.nupkg.metadata
system.memory\4.5.1\.nupkg.metadata
system.net.http\4.1.0\.nupkg.metadata
system.net.http\4.1.0\.signature.p7s
system.net.http\4.3.0\.nupkg.metadata
system.net.http\4.3.0\.signature.p7s
system.net.nameresolution\4.3.0\.nupkg.metadata
system.net.primitives\4.0.11\.nupkg.metadata
system.net.primitives\4.3.0\.nupkg.metadata
system.net.security\4.3.0\.nupkg.metadata
system.net.sockets\4.1.0\.nupkg.metadata
system.net.sockets\4.3.0\.nupkg.metadata
system.net.websockets.websocketprotocol\4.5.1\.nupkg.metadata
system.numerics.vectors\4.5.0\.nupkg.metadata
system.objectmodel\4.0.12\.nupkg.metadata
system.objectmodel\4.3.0\.nupkg.metadata
system.private.datacontractserialization\4.1.1\.nupkg.metadata
system.private.datacontractserialization\4.3.0\.nupkg.metadata
system.reflection.emit.ilgeneration\4.0.1\.nupkg.metadata
system.reflection.emit.ilgeneration\4.3.0\.nupkg.metadata
system.reflection.emit.lightweight\4.0.1\.nupkg.metadata
system.reflection.emit.lightweight\4.3.0\.nupkg.metadata
system.reflection.emit\4.0.1\.nupkg.metadata
system.reflection.emit\4.3.0\.nupkg.metadata
system.reflection.extensions\4.0.1\.nupkg.metadata
system.reflection.extensions\4.3.0\.nupkg.metadata
system.reflection.metadata\1.4.1\.nupkg.metadata
system.reflection.metadata\1.4.2\.nupkg.metadata
system.reflection.metadata\1.6.0\.nupkg.metadata
system.reflection.primitives\4.0.1\.nupkg.metadata
system.reflection.primitives\4.3.0\.nupkg.metadata
system.reflection.typeextensions\4.1.0\.nupkg.metadata
system.reflection.typeextensions\4.3.0\.nupkg.metadata
system.reflection\4.1.0\.nupkg.metadata
system.reflection\4.3.0\.nupkg.metadata
system.resources.resourcemanager\4.0.1\.nupkg.metadata
system.resources.resourcemanager\4.3.0\.nupkg.metadata
system.runtime.compilerservices.unsafe\4.5.0\.nupkg.metadata
system.runtime.compilerservices.unsafe\4.5.1\.nupkg.metadata
system.runtime.extensions\4.1.0\.nupkg.metadata
system.runtime.extensions\4.3.0\.nupkg.metadata
system.runtime.handles\4.0.1\.nupkg.metadata
system.runtime.handles\4.3.0\.nupkg.metadata
system.runtime.interopservices.runtimeinformation\4.0.0\.nupkg.metadata
system.runtime.interopservices.runtimeinformation\4.3.0\.nupkg.metadata
system.runtime.interopservices\4.1.0\.nupkg.metadata
system.runtime.interopservices\4.3.0\.nupkg.metadata
system.runtime.numerics\4.0.1\.nupkg.metadata
system.runtime.numerics\4.3.0\.nupkg.metadata
system.runtime.serialization.formatters\4.3.0\.nupkg.metadata
system.runtime.serialization.json\4.0.2\.nupkg.metadata
system.runtime.serialization.primitives\4.1.1\.nupkg.metadata
system.runtime.serialization.primitives\4.3.0\.nupkg.metadata
system.runtime.serialization.xml\4.3.0\.nupkg.metadata
system.runtime\4.1.0\.nupkg.metadata
system.runtime\4.3.0\.nupkg.metadata
system.security.accesscontrol\4.5.0\.nupkg.metadata
system.security.claims\4.3.0\.nupkg.metadata
system.security.cryptography.algorithms\4.2.0\.nupkg.metadata
system.security.cryptography.algorithms\4.3.0\.nupkg.metadata
system.security.cryptography.cng\4.2.0\.nupkg.metadata
system.security.cryptography.cng\4.3.0\.nupkg.metadata
system.security.cryptography.cng\4.5.0\.nupkg.metadata
system.security.cryptography.csp\4.0.0\.nupkg.metadata
system.security.cryptography.csp\4.3.0\.nupkg.metadata
system.security.cryptography.encoding\4.0.0\.nupkg.metadata
system.security.cryptography.encoding\4.3.0\.nupkg.metadata
system.security.cryptography.openssl\4.0.0\.nupkg.metadata
system.security.cryptography.openssl\4.3.0\.nupkg.metadata
system.security.cryptography.pkcs\4.5.0\.nupkg.metadata
system.security.cryptography.primitives\4.0.0\.nupkg.metadata
system.security.cryptography.primitives\4.3.0\.nupkg.metadata
system.security.cryptography.x509certificates\4.1.0\.nupkg.metadata
system.security.cryptography.x509certificates\4.3.0\.nupkg.metadata
system.security.cryptography.xml\4.5.0\.nupkg.metadata
system.security.permissions\4.5.0\.nupkg.metadata
system.security.principal.windows\4.3.0\.nupkg.metadata
system.security.principal.windows\4.5.0\.nupkg.metadata
system.security.principal\4.3.0\.nupkg.metadata
system.spatial\5.8.2\.nupkg.metadata
system.text.encoding.codepages\4.3.0\.nupkg.metadata
system.text.encoding.codepages\4.5.0\.nupkg.metadata
system.text.encoding.extensions\4.0.11\.nupkg.metadata
system.text.encoding.extensions\4.3.0\.nupkg.metadata
system.text.encoding\4.0.11\.nupkg.metadata
system.text.encoding\4.3.0\.nupkg.metadata
system.text.encodings.web\4.3.1\.nupkg.metadata
system.text.encodings.web\4.3.1\.signature.p7s
system.text.encodings.web\4.5.0\.nupkg.metadata
system.text.regularexpressions\4.1.0\.nupkg.metadata
system.text.regularexpressions\4.3.0\.nupkg.metadata
system.threading.channels\4.5.0\.nupkg.metadata
system.threading.tasks.extensions\4.0.0\.nupkg.metadata
system.threading.tasks.extensions\4.3.0\.nupkg.metadata
system.threading.tasks.extensions\4.5.1\.nupkg.metadata
system.threading.tasks.parallel\4.3.0\.nupkg.metadata
system.threading.tasks\4.0.11\.nupkg.metadata
system.threading.tasks\4.3.0\.nupkg.metadata
system.threading.thread\4.3.0\.nupkg.metadata
system.threading.threadpool\4.3.0\.nupkg.metadata
system.threading.timer\4.0.1\.nupkg.metadata
system.threading.timer\4.3.0\.nupkg.metadata
system.threading\4.0.11\.nupkg.metadata
system.threading\4.3.0\.nupkg.metadata
system.valuetuple\4.3.0\.nupkg.metadata
system.valuetuple\4.5.0\.nupkg.metadata
system.xml.readerwriter\4.0.11\.nupkg.metadata
system.xml.readerwriter\4.3.0\.nupkg.metadata
system.xml.xdocument\4.0.11\.nupkg.metadata
system.xml.xdocument\4.3.0\.nupkg.metadata
system.xml.xmldocument\4.0.1\.nupkg.metadata
system.xml.xmldocument\4.3.0\.nupkg.metadata
system.xml.xmlserializer\4.0.11\.nupkg.metadata
system.xml.xmlserializer\4.3.0\.nupkg.metadata
system.xml.xpath.xdocument\4.3.0\.nupkg.metadata
system.xml.xpath\4.3.0\.nupkg.metadata
windowsazure.storage\8.1.4\.nupkg.metadata
windowsazure.storage\8.1.4\.signature.p7s

View File

@ -1,14 +0,0 @@
<Project>
<Import Project="..\Archive.props" />
<!-- This archive is optimized for CI server environments which do not need .nupkg files or xml docs, such as Docker. -->
<PropertyGroup>
<TargetFileName>nuGetPackagesArchive-ci-server-$(PackageVersion).zip</TargetFileName>
<IsIncremental>false</IsIncremental>
<IncludeXmlDocs>false</IncludeXmlDocs>
<IncludeNupkgFiles>false</IncludeNupkgFiles>
</PropertyGroup>
<Import Project="..\Archive.targets" />
</Project>

View File

@ -1,14 +0,0 @@
<Project>
<Import Project="..\Archive.props" />
<!-- This archive is passed along to dotnet/cli for use with the .NET Core CLI first run experience. -->
<PropertyGroup>
<TargetFileName>nuGetPackagesArchive-$(PackageVersion).lzma</TargetFileName>
<IsIncremental>false</IsIncremental>
<IncludeXmlDocs>true</IncludeXmlDocs>
<IncludeNupkgFiles>true</IncludeNupkgFiles>
</PropertyGroup>
<Import Project="..\Archive.targets" />
</Project>

View File

@ -1,13 +0,0 @@
<Project>
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />
<Import Project="..\..\build\tasks\RepoTasks.tasks" />
<UsingTask TaskName="Microsoft.AspNetCore.BuildTools.ZipArchive" AssemblyFile="$(_BuildToolsAssembly)" Condition=" '$(_BuildToolsAssembly)' != '' "/>
<PropertyGroup>
<!-- Required to make /t:Restore happy, but not really used for anything else. -->
<TargetFramework>netcoreapp3.0</TargetFramework>
<OutputPath>$(InstallersOutputPath)</OutputPath>
</PropertyGroup>
</Project>

View File

@ -1,97 +0,0 @@
<Project>
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
<!-- Default items -->
<ItemGroup>
<ProjectReference Include="$(MSBuildThisFileDirectory)Scenario.*\Scenario.*.*proj" ReferenceOutputAssembly="false" />
<ArchiveBaseline Include="$(MSBuildProjectDirectory)\ArchiveBaseline.*.txt" />
</ItemGroup>
<!-- Targets items -->
<Target Name="PrepareOutputPaths">
<MakeDir Directories="$(TargetDir)" />
<Delete Files="$(TargetPath)" />
</Target>
<PropertyGroup>
<CollectInputsDependsOn Condition=" '$(IncludeNupkgFiles)' == 'false' ">$(CollectInputsDependsOn);CollectNupkgExclusions</CollectInputsDependsOn>
<CollectInputsDependsOn Condition=" '$(IncludeXmlDocs)' == 'false' ">$(CollectInputsDependsOn);CollectXmlExclusions</CollectInputsDependsOn>
<CollectInputsDependsOn Condition=" '$(IsIncremental)' == 'true' ">$(CollectInputsDependsOn);CollectBaselineExclusions</CollectInputsDependsOn>
</PropertyGroup>
<Target Name="CollectNupkgExclusions">
<ItemGroup>
<ArchiveExclusions Include="$(RestorePackagesPath)**\*.nupkg" />
</ItemGroup>
</Target>
<Target Name="CollectXmlExclusions">
<ItemGroup>
<_ArchiveItemXml Include="$(RestorePackagesPath)**\*.xml" />
</ItemGroup>
<Message Text="Found @(_ArchiveItemXml->Count()) xml files that might be docxml" />
<RepoTasks.GetDocXmlFiles Files="@(_ArchiveItemXml)">
<Output TaskParameter="XmlDocFiles" ItemName="ArchiveExclusions" />
</RepoTasks.GetDocXmlFiles>
</Target>
<Target Name="CollectBaselineExclusions">
<ReadLinesFromFile File="%(ArchiveBaseline.Identity)" Condition="'%(ArchiveBaseline.Identity)' != ''">
<Output TaskParameter="Lines" ItemName="PreviousArchiveItem" />
</ReadLinesFromFile>
<ItemGroup>
<ArchiveExclusions Include="$(RestorePackagesPath)%(PreviousArchiveItem.Identity)" Condition=" '%(PreviousArchiveItem.Identity)' != '' " />
</ItemGroup>
</Target>
<Target Name="CollectInputs" DependsOnTargets="$(CollectInputsDependsOn)">
<ItemGroup>
<ArchiveItem Include="$(RestorePackagesPath)**\*" Exclude="@(ArchiveExclusions)" />
</ItemGroup>
<Message Text="Found @(ArchiveItem->Count()) files to put in the CI package archive" />
</Target>
<Target Name="CreateArchive" Outputs="$(TargetPath)">
<Warning Text="No files were found to put into $(TargetPath)"
Condition="@(ArchiveItem->Count()) == 0 AND '$(IsIncremental)' == 'true' " />
<Error Text="No files were found to put into $(TargetPath)"
Condition="@(ArchiveItem->Count()) == 0 AND '$(IsIncremental)' != 'true' " />
<ZipArchive
File="$(TargetPath)"
SourceFiles="@(ArchiveItem)"
WorkingDirectory="$(RestorePackagesPath)"
Overwrite="true"
Condition="@(ArchiveItem->Count()) != 0 AND '$(MSBuildProjectExtension)' == '.zipproj'" />
<RepoTasks.CreateLzma
OutputPath="$(TargetPath)"
Sources="$(RestorePackagesPath)"
Condition="@(ArchiveItem->Count()) != 0 AND '$(MSBuildProjectExtension)' == '.lzmaproj'" />
</Target>
<Target Name="CheckForInvalidConfig">
<Error Text=".lzmaproj currently only supports zipping an entire directory with everything in it."
Condition="'$(MSBuildProjectExtension)' == '.lzmaproj' AND ( '$(IsIncremental)' == 'true' OR '$(IncludeNupkgFiles)' == 'false' OR '$(IncludeXmlDocs)' == 'false' ) "/>
</Target>
<Target Name="CheckForPreviousReleaseArchiveBaseline" Condition=" '$(AspNetCorePatchVersion)' != '0' AND '$(IsIncremental)' == 'true' ">
<PropertyGroup>
<PreviousStableVersion>$(AspNetCoreMajorVersion).$(AspNetCoreMinorVersion).$([MSBuild]::Subtract($(AspNetCorePatchVersion), 1))</PreviousStableVersion>
</PropertyGroup>
<Error Text="The ArchiveBaseline for previous release (v$(PreviousStableVersion)) could not be found. This is required to build the incremental archives. See instructions in $(MSBuildThisFileDirectory)ZipManifestGenerator/README.md"
Condition="! Exists('$(MSBuildProjectDirectory)\ArchiveBaseline.$(PreviousStableVersion).txt')" />
</Target>
<Target Name="Build"
DependsOnTargets="PrepareOutputPaths;CheckForInvalidConfig;CheckForPreviousReleaseArchiveBaseline;CollectInputs;CreateArchive"
Outputs="$(TargetPath)" />
</Project>

View File

@ -1,18 +0,0 @@
<Project>
<Import Project="..\..\Directory.Build.props" />
<ItemGroup>
<!-- Ensure we are only putting packages in the package cache that are explicitly listed -->
<PackageReference Remove="@(PackageReference)" />
</ItemGroup>
<PropertyGroup>
<!-- Don't restore from any fallback folder -->
<DisableImplicitNuGetFallbackFolder>true</DisableImplicitNuGetFallbackFolder>
<!-- Projects in this folder should be explicit about the packages they reference -->
<DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
<RestorePackagesPath>$([MSBuild]::NormalizePath('$(RepositoryRoot)obj\pkgs\'))</RestorePackagesPath>
</PropertyGroup>
</Project>

View File

@ -1 +0,0 @@
<Project />

View File

@ -1,6 +0,0 @@
PackageArchive
==============
See [docs/PackageArchives.md](/docs/PackageArchives.md) for details.
See [ZipManifestGenerator](/src/PackageArchive/ZipManifestGenerator) for instructions on updating the build for new releases.

View File

@ -1,11 +0,0 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NETStandard.Library" Version="$(NETStandardLibrary20PackageVersion)" />
</ItemGroup>
</Project>

View File

@ -1,15 +0,0 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<MaxImplicitVersion>3.0.0</MaxImplicitVersion>
<!-- Use pre-release versions up until 3.0.0, then don't lift higher than "3.0.0" -->
<NETCoreImplicitVersion Condition="$(MicrosoftNETCoreApp30PackageVersion.StartsWith('$(MaxImplicitVersion)-'))">$(MicrosoftNETCoreApp30PackageVersion)</NETCoreImplicitVersion>
<NETCoreImplicitVersion>$([MSbuild]::ValueOrDefault('$(NETCoreImplicitVersion)','$(MaxImplicitVersion)'))</NETCoreImplicitVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NETCore.App" Version="$(NETCoreImplicitVersion)" />
</ItemGroup>
</Project>

View File

@ -1,15 +0,0 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<MaxImplicitVersion>3.0.0</MaxImplicitVersion>
<!-- Use pre-release versions up until 3.0.0, then don't lift higher -->
<AspNetCoreImplicitVersion Condition="$(MicrosoftAspNetCoreAppPackageVersion.StartsWith('$(MaxImplicitVersion)-'))">$(MicrosoftAspNetCoreAppPackageVersion)</AspNetCoreImplicitVersion>
<AspNetCoreImplicitVersion>$([MSBuild]::ValueOrDefault('$(AspNetCoreImplicitVersion)','$(MaxImplicitVersion)'))</AspNetCoreImplicitVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App" Version="$(AspNetCoreImplicitVersion)" />
</ItemGroup>
</Project>

View File

@ -1,80 +0,0 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.IO;
using System.IO.Compression;
using System.Linq;
using System.Net.Http;
using System.Threading.Tasks;
namespace ZipManifestGenerator
{
class Program
{
private static void PrintUsage()
{
Console.WriteLine(@"
Usage: <ZIP> <OUTPUT>
<ZIP> A file path or URL to the ZIP file.
<OUTPUT> The output file path for the ZIP manifest file.");
}
public static async Task<int> Main(string[] args)
{
if (args.Length != 2)
{
Console.Error.WriteLine("Invalid arguments");
PrintUsage();
return 1;
}
var zipPath = args[0];
var manifestOutputPath = args[1];
var shouldCleanupZip = false;
if (zipPath.StartsWith("http", StringComparison.OrdinalIgnoreCase))
{
shouldCleanupZip = true;
var url = zipPath;
Console.WriteLine($"log: Downloading {url}");
zipPath = Path.Combine(Path.GetTempPath(), Path.GetRandomFileName() + ".zip");
var response = await new HttpClient().GetAsync(url);
response.EnsureSuccessStatusCode();
using (var outStream = File.Create(zipPath))
{
var responseStream = await response.Content.ReadAsStreamAsync();
await responseStream.CopyToAsync(outStream);
}
}
try
{
Console.WriteLine($"log: Generating manifest in {manifestOutputPath}");
using (var zipStream = File.OpenRead(zipPath))
using (var zip = new ZipArchive(zipStream, ZipArchiveMode.Read))
using (var manifest = File.Create(manifestOutputPath))
using (var writer = new StreamWriter(manifest))
{
foreach (var file in zip.Entries.OrderBy(_ => _.FullName))
{
writer.WriteLine(file.FullName.Replace("/", "\\"));
}
}
}
finally
{
if (shouldCleanupZip)
{
File.Delete(zipPath);
}
}
return 0;
}
}
}

View File

@ -1,33 +0,0 @@
ZipManifestGenerator
--------------------
This console app is used to generate the list of files in a zip archive.
Usage:
```
Usage: <ZIP> <OUTPUT>
<ZIP> A file path or URL to the ZIP file.
<OUTPUT> The output file path for the ZIP manifest file.
Example: dotnet run ./archive.zip files.txt
```
## Example for servicing updates
To generate a new manifest for the incremental CI server package caches, you would run
```ps1
$ProdConBuild='20180919-01'
$Version='2.1.5'
$patchUrl = "https://dotnetfeed.blob.core.windows.net/orchestrated-release-2-1/${ProdconBuild}/final/assets/aspnetcore/Runtime/${Version}/nuGetPackagesArchive-ci-server-${Version}.patch.zip"
dotnet run $patchUrl "../Archive.CiServer.Patch/ArchiveBaseline.${Version}.txt"
$compatPatchUrl = "https://dotnetfeed.blob.core.windows.net/orchestrated-release-2-1/${ProdconBuild}/final/assets/aspnetcore/Runtime/${Version}/nuGetPackagesArchive-ci-server-compat-${Version}.patch.zip"
dotnet run $compatPatchUrl "../Archive.CiServer.Patch.Compat/ArchiveBaseline.${Version}.txt"
```
For convenience, this folder contains [./UpdateBaselines.ps1](./UpdateBaselines.ps1) to run these steps.

View File

@ -1,15 +0,0 @@
param(
[Parameter(Mandatory = $true)]
$ProdConBuildId,
[Parameter(Mandatory = $true)]
$ProductVersion,
$FeedContainer = 'orchestrated-release-2-2'
)
$patchUrl = "https://dotnetfeed.blob.core.windows.net/${FeedContainer}/${ProdconBuildId}/final/assets/aspnetcore/Runtime/${ProductVersion}/nuGetPackagesArchive-ci-server-${ProductVersion}.patch.zip"
dotnet run $patchUrl "../Archive.CiServer.Patch/ArchiveBaseline.${ProductVersion}.txt"
$compatPatchUrl = "https://dotnetfeed.blob.core.windows.net/${FeedContainer}/${ProdconBuildId}/final/assets/aspnetcore/Runtime/${ProductVersion}/nuGetPackagesArchive-ci-server-compat-${ProductVersion}.patch.zip"
dotnet run $compatPatchUrl "../Archive.CiServer.Patch.Compat/ArchiveBaseline.${ProductVersion}.txt"

View File

@ -1,11 +0,0 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>exe</OutputType>
<TargetFramework>netcoreapp3.0</TargetFramework>
<SignAssembly>false</SignAssembly>
<LangVersion>7.1</LangVersion>
<DisableImplicitFrameworkReferences>false</DisableImplicitFrameworkReferences>
</PropertyGroup>
</Project>

View File

@ -1,34 +0,0 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26124.0
MinimumVisualStudioVersion = 15.0.26124.0
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ZipManifestGenerator", "ZipManifestGenerator.csproj", "{4706B37C-3B37-4331-84FC-107657BDEC4E}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{4706B37C-3B37-4331-84FC-107657BDEC4E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4706B37C-3B37-4331-84FC-107657BDEC4E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4706B37C-3B37-4331-84FC-107657BDEC4E}.Debug|x64.ActiveCfg = Debug|Any CPU
{4706B37C-3B37-4331-84FC-107657BDEC4E}.Debug|x64.Build.0 = Debug|Any CPU
{4706B37C-3B37-4331-84FC-107657BDEC4E}.Debug|x86.ActiveCfg = Debug|Any CPU
{4706B37C-3B37-4331-84FC-107657BDEC4E}.Debug|x86.Build.0 = Debug|Any CPU
{4706B37C-3B37-4331-84FC-107657BDEC4E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4706B37C-3B37-4331-84FC-107657BDEC4E}.Release|Any CPU.Build.0 = Release|Any CPU
{4706B37C-3B37-4331-84FC-107657BDEC4E}.Release|x64.ActiveCfg = Release|Any CPU
{4706B37C-3B37-4331-84FC-107657BDEC4E}.Release|x64.Build.0 = Release|Any CPU
{4706B37C-3B37-4331-84FC-107657BDEC4E}.Release|x86.ActiveCfg = Release|Any CPU
{4706B37C-3B37-4331-84FC-107657BDEC4E}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal