Merge branch release/2.1 into 2.1.4

This commit is contained in:
Nate McMaster 2018-08-10 09:33:40 -07:00
commit 6dd5a7bcf8
No known key found for this signature in database
GPG Key ID: A778D9601BD78810
7 changed files with 807 additions and 11 deletions

View File

@ -0,0 +1,17 @@
trigger:
- master
- release/*
# See https://github.com/aspnet/BuildTools
resources:
repositories:
- repository: buildtools
type: github
endpoint: DotNet-Bot GitHub Connection
name: aspnet/BuildTools
ref: refs/heads/release/2.1
phases:
- template: .vsts-pipelines/templates/project-ci.yml@buildtools
parameters:
buildArgs: "/t:CheckUniverse"

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>

14
run.ps1
View File

@ -32,6 +32,9 @@ Re-installs KoreBuild
.PARAMETER ConfigFile
The path to the configuration file that stores values. Defaults to korebuild.json.
.PARAMETER CI
Sets up CI specific settings and variables.
.PARAMETER PackageVersionPropsUrl
(optional) the url of the package versions props path containing dependency versions.
@ -61,8 +64,8 @@ in the file are overridden by command line parameters.
Example config file:
```json
{
"$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/dev/tools/korebuild.schema.json",
"channel": "dev",
"$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/master/tools/korebuild.schema.json",
"channel": "master",
"toolsSource": "https://aspnetcore.blob.core.windows.net/buildtools"
}
```
@ -81,7 +84,8 @@ param(
[Alias('u')]
[switch]$Update,
[switch]$Reinstall,
[string]$ConfigFile,
[string]$ConfigFile = $null,
[switch]$CI,
[string]$PackageVersionPropsUrl = $null,
[string]$AccessTokenSuffix = $null,
[string]$RestoreSources = $null,
@ -202,7 +206,7 @@ if (!$DotNetHome) {
else { Join-Path $PSScriptRoot '.dotnet'}
}
if (!$Channel) { $Channel = 'dev' }
if (!$Channel) { $Channel = 'master' }
if (!$ToolsSource) { $ToolsSource = 'https://aspnetcore.blob.core.windows.net/buildtools' }
if ($PackageVersionPropsUrl) {
@ -235,7 +239,7 @@ $korebuildPath = Get-KoreBuild
Import-Module -Force -Scope Local (Join-Path $korebuildPath 'KoreBuild.psd1')
try {
Set-KoreBuildSettings -ToolsSource $ToolsSource -DotNetHome $DotNetHome -RepoPath $Path -ConfigFile $ConfigFile
Set-KoreBuildSettings -ToolsSource $ToolsSource -DotNetHome $DotNetHome -RepoPath $Path -ConfigFile $ConfigFile -CI:$CI
Invoke-KoreBuildCommand $Command @MSBuildArguments
}
finally {

9
run.sh
View File

@ -18,6 +18,7 @@ reinstall=false
repo_path="$DIR"
channel=''
tools_source=''
ci=false
package_version_props_url=''
asset_root_url=''
access_token_suffix=''
@ -48,6 +49,7 @@ __usage() {
echo " --product-build-id <ID> The product build ID for correlation with orchestrated builds."
echo " -u|--update Update to the latest KoreBuild even if the lock file is present."
echo " --reinstall Reinstall KoreBuild."
echo " --ci Apply CI specific settings and environment variables."
echo ""
echo "Description:"
echo " This function will create a file \$DIR/korebuild-lock.txt. This lock file can be committed to source, but does not have to be."
@ -216,6 +218,9 @@ while [[ $# -gt 0 ]]; do
--reinstall|-Reinstall)
reinstall=true
;;
--ci|-[Cc][Ii])
ci=true
;;
--verbose|-Verbose)
verbose=true
;;
@ -284,11 +289,11 @@ if [ ! -z "$product_build_id" ]; then
msbuild_args[${#msbuild_args[*]}]="-p:DotNetProductBuildId=$product_build_id"
fi
[ -z "$channel" ] && channel='dev'
[ -z "$channel" ] && channel='master'
[ -z "$tools_source" ] && tools_source='https://aspnetcore.blob.core.windows.net/buildtools'
get_korebuild
set_korebuildsettings "$tools_source" "$DOTNET_HOME" "$repo_path" "$config_file"
set_korebuildsettings "$tools_source" "$DOTNET_HOME" "$repo_path" "$config_file" "$ci"
# This incantation avoids unbound variable issues if msbuild_args is empty
# https://stackoverflow.com/questions/7577052/bash-empty-array-expansion-with-set-u

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"
```