aspnet/AspNetCore-Tooling -> dotnet/aspnetcore-tooling

This commit is contained in:
Kevin Pilch 2020-01-08 09:10:02 -08:00
parent b15d4eb51b
commit f3215fd881
5 changed files with 7 additions and 7 deletions

View File

@ -166,7 +166,7 @@
<MicrosoftEntityFrameworkCoreSqlServerPackageVersion>5.0.0-alpha.1.19602.5</MicrosoftEntityFrameworkCoreSqlServerPackageVersion> <MicrosoftEntityFrameworkCoreSqlServerPackageVersion>5.0.0-alpha.1.19602.5</MicrosoftEntityFrameworkCoreSqlServerPackageVersion>
<MicrosoftEntityFrameworkCoreToolsPackageVersion>5.0.0-alpha.1.19602.5</MicrosoftEntityFrameworkCoreToolsPackageVersion> <MicrosoftEntityFrameworkCoreToolsPackageVersion>5.0.0-alpha.1.19602.5</MicrosoftEntityFrameworkCoreToolsPackageVersion>
<MicrosoftEntityFrameworkCorePackageVersion>5.0.0-alpha.1.19602.5</MicrosoftEntityFrameworkCorePackageVersion> <MicrosoftEntityFrameworkCorePackageVersion>5.0.0-alpha.1.19602.5</MicrosoftEntityFrameworkCorePackageVersion>
<!-- Packages from aspnet/AspNetCore-Tooling --> <!-- Packages from dotnet/aspnetcore-tooling -->
<MicrosoftAspNetCoreMvcRazorExtensionsPackageVersion>5.0.0-alpha.1.20056.3</MicrosoftAspNetCoreMvcRazorExtensionsPackageVersion> <MicrosoftAspNetCoreMvcRazorExtensionsPackageVersion>5.0.0-alpha.1.20056.3</MicrosoftAspNetCoreMvcRazorExtensionsPackageVersion>
<MicrosoftAspNetCoreRazorLanguagePackageVersion>5.0.0-alpha.1.20056.3</MicrosoftAspNetCoreRazorLanguagePackageVersion> <MicrosoftAspNetCoreRazorLanguagePackageVersion>5.0.0-alpha.1.20056.3</MicrosoftAspNetCoreRazorLanguagePackageVersion>
<MicrosoftCodeAnalysisRazorPackageVersion>5.0.0-alpha.1.20056.3</MicrosoftCodeAnalysisRazorPackageVersion> <MicrosoftCodeAnalysisRazorPackageVersion>5.0.0-alpha.1.20056.3</MicrosoftCodeAnalysisRazorPackageVersion>

View File

@ -12,7 +12,7 @@ namespace Microsoft.AspNetCore.Components.Rendering
// IMPORTANT // IMPORTANT
// //
// Many of these names are used in code generation. Keep these in sync with the code generation code // Many of these names are used in code generation. Keep these in sync with the code generation code
// See: aspnet/AspNetCore-Tooling // See: dotnet/aspnetcore-tooling
/// <summary> /// <summary>
/// Provides methods for building a collection of <see cref="RenderTreeFrame"/> entries. /// Provides methods for building a collection of <see cref="RenderTreeFrame"/> entries.

View File

@ -3,7 +3,7 @@ ASP.NET Core Diagnostics
## Development ## Development
Diagnostics middleware like `DeveloperExceptionPage` uses compiled Razor views. After updating the `*.cshtml` file you must run the [RazorPageGenerator](https://github.com/aspnet/AspNetCore-Tooling/tree/master/src/Razor/src/RazorPageGenerator) tool to generate an updated compiled Razor view. Diagnostics middleware like `DeveloperExceptionPage` uses compiled Razor views. After updating the `*.cshtml` file you must run the [RazorPageGenerator](https://github.com/dotnet/aspnetcore-tooling/tree/master/src/Razor/src/RazorPageGenerator) tool to generate an updated compiled Razor view.
Run the following command in `AspNetCore-Tooling\src\Razor\src\RazorPageGenerator`: Run the following command in `AspNetCore-Tooling\src\Razor\src\RazorPageGenerator`:

View File

@ -1,13 +1,13 @@
# Error Page # Error Page
This folder is shared among multiple projects. The `ErrorPage.Designer.cs` and `ErrorPageModel.cs` files are used to render this view. The `ErrorPage.Designer.cs` file is generated by rendering `src/Views/ErrorPage.cshtml` using the [RazorPageGenerator](https://github.com/aspnet/AspNetCore-Tooling/tree/master/src/Razor/src/RazorPageGenerator) tool. This folder is shared among multiple projects. The `ErrorPage.Designer.cs` and `ErrorPageModel.cs` files are used to render this view. The `ErrorPage.Designer.cs` file is generated by rendering `src/Views/ErrorPage.cshtml` using the [RazorPageGenerator](https://github.com/dotnet/aspnetcore-tooling/tree/master/src/Razor/src/RazorPageGenerator) tool.
## Making changes to ErrorPage.cshtml ## Making changes to ErrorPage.cshtml
1. Clone aspnet/AspNetCore-Tooling 1. Clone dotnet/aspnetcore-tooling
1. Run `./build.cmd` in **that repo** 1. Run `./build.cmd` in **that repo**
1. Edit the file 1. Edit the file
1. Run the `GeneratePage` script, passing in the path to the `aspnet/AspNetCore-Tooling` repo root. 1. Run the `GeneratePage` script, passing in the path to the `dotnet/aspnetcore-tooling` repo root.
``` ```
.\GeneratePage -ToolingRepoPath C:\Code\aspnet\AspNetCore-Tooling .\GeneratePage -ToolingRepoPath C:\Code\aspnet\AspNetCore-Tooling

View File

@ -5,7 +5,7 @@ using System.Globalization;
using System.Text; using System.Text;
// Copied from // Copied from
// https://github.com/aspnet/AspNetCore-Tooling/blob/master/src/Razor/src/Microsoft.AspNetCore.Razor.Language/CSharpIdentifier.cs // https://github.com/dotnet/aspnetcore-tooling/blob/master/src/Razor/src/Microsoft.AspNetCore.Razor.Language/CSharpIdentifier.cs
namespace Microsoft.Extensions.ApiDescription.Client namespace Microsoft.Extensions.ApiDescription.Client
{ {
internal static class CSharpIdentifier internal static class CSharpIdentifier