Merge branch 'release/2.2'

This commit is contained in:
Nate McMaster 2018-08-10 10:13:35 -07:00
commit ae3cdb304e
No known key found for this signature in database
GPG Key ID: A778D9601BD78810
7 changed files with 776 additions and 34 deletions

View File

@ -1,9 +1,15 @@
<Project>
<Target Name="CheckForPreviousReleaseArchiveBaseline" BeforeTargets="CheckUniverse">
<MSBuild Projects="@(ArchiveProjects)"
Targets="CheckForPreviousReleaseArchiveBaseline" />
</Target>
<ItemGroup>
<ArchiveProjects Include="$(RepositoryRoot)src\PackageArchive\Archive.*\*.*proj" />
</ItemGroup>
<Target Name="BuildFallbackArchive" DependsOnTargets="ResolveRepoInfo;GeneratePropsFiles">
<ItemGroup>
<ArchiveProjects Include="$(RepositoryRoot)src\PackageArchive\Archive.*\*.*proj" />
</ItemGroup>
<PropertyGroup>
<ArchiveBuildProps>

View File

@ -240,7 +240,6 @@
Artifacts="@(ArtifactInfo);@(ShippedArtifactInfo)"
Repositories="@(Repository);@(ShippedRepository)"
Dependencies="@(ExternalDependency)"
StartGraphAt="$(BuildGraphOf)"
Properties="Configuration=$(Configuration);BuildNumber=$(BuildNumber);DotNetPackageVersionPropsPath=$(GeneratedPackageVersionPropsPath);DotNetRestoreSourcePropsPath=$(GeneratedRestoreSourcesPropsPath)">
<Output TaskParameter="RepositoryBuildOrder" ItemName="RepositoryBuildOrder" />
</RepoTasks.AnalyzeBuildGraph>

View File

@ -38,8 +38,6 @@ namespace RepoTasks
[Required]
public string Properties { get; set; }
public string StartGraphAt { get; set; }
/// <summary>
/// The order in which to build repositories
/// </summary>
@ -270,14 +268,13 @@ namespace RepoTasks
return repo;
}).ToList();
var graph = GraphBuilder.Generate(repositories, StartGraphAt, Log);
var graph = GraphBuilder.Generate(repositories, Log);
var repositoriesWithOrder = new List<(ITaskItem repository, int order)>();
foreach (var repository in repositories)
{
var graphNodeRepository = graph.FirstOrDefault(g => g.Repository.Name == repository.Name);
if (graphNodeRepository == null)
{
// StartGraphAt was specified so the graph is incomplete.
continue;
}

View File

@ -11,7 +11,7 @@ namespace RepoTools.BuildGraph
{
public static class GraphBuilder
{
public static IList<GraphNode> Generate(IList<Repository> repositories, string root, TaskLoggingHelper log)
public static IList<GraphNode> Generate(IList<Repository> repositories, TaskLoggingHelper log)
{
// Build global list of primary projects
var primaryProjects = repositories.SelectMany(c => c.Projects)
@ -19,15 +19,9 @@ namespace RepoTools.BuildGraph
var graphNodes = repositories.Select(r => new GraphNode { Repository = r })
.ToDictionary(r => r.Repository);
GraphNode searchRoot = null;
foreach (var project in repositories.SelectMany(r => r.AllProjects))
{
var thisProjectRepositoryNode = graphNodes[project.Repository];
if (!string.IsNullOrEmpty(root) && string.Equals(root, project.Repository.Name, StringComparison.OrdinalIgnoreCase))
{
searchRoot = thisProjectRepositoryNode;
}
foreach (var packageDependency in project.PackageReferences)
{
@ -50,25 +44,7 @@ namespace RepoTools.BuildGraph
}
}
var results = new HashSet<GraphNode>();
if (searchRoot != null)
{
Visit(results, searchRoot);
return results.ToList();
}
return graphNodes.Values.ToList();
}
private static void Visit(HashSet<GraphNode> results, GraphNode searchRoot)
{
if (results.Add(searchRoot))
{
foreach (var node in searchRoot.Outgoing)
{
Visit(results, node);
}
}
}
}
}

View File

@ -0,0 +1,381 @@
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

@ -0,0 +1,368 @@
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

@ -5,5 +5,20 @@ This console app is used to generate the list of files in a zip archive.
Usage:
```
dotnet run ./archive.zip files.txt
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
$url = "https://dotnetfeed.blob.core.windows.net/orchestrated-release-2-1/${ProdconBuild}/final/assets/aspnetcore/Runtime/${Version}/nuGetPackagesArchive-ci-server-${Version}.patch.zip"
dotnet run $url "../Archive.CiServer.Patch/ArchiveBaseline.${Version}.txt"
```