diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e8bb75d9de9a..d379aa4cf03d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -10,8 +10,8 @@ Articles are stored in the repository as Markdown files. Simple changes to the c You need a basic understanding of [Git and GitHub.com](https://guides.github.com/activities/hello-world/). -* Open an [issue](https://github.com/aspnet/Docs/issues/new) describing what you want to do, such as changing an existing article or creating a new one. We often request an outline for a new topic suggestion. Wait for approval from the team before you invest much time. -* Fork the [aspnet/Docs](https://github.com/aspnet/Docs/) repo and create a branch for your changes. +* Open an [issue](https://github.com/dotnet/AspNetCore.Docs/issues/new) describing what you want to do, such as changing an existing article or creating a new one. We often request an outline for a new topic suggestion. Wait for approval from the team before you invest much time. +* Fork the [aspnet/Docs](https://github.com/dotnet/AspNetCore.Docs/) repo and create a branch for your changes. * Submit a PR to master with your changes. * If your PR has the label 'cla-required' assigned, [complete the Contribution License Agreement (CLA)](https://cla.dotnetfoundation.org/). * Respond to PR feedback. @@ -28,7 +28,7 @@ Articles are written in [DocFx-flavored Markdown](https://dotnet.github.io/docfx ## Folder structure conventions -For each Markdown file, a folder for images and a folder for sample code may exist. If the article is [fundamentals/configuration/index.md](https://github.com/aspnet/Docs/blob/master/aspnetcore/fundamentals/configuration/index.md), the images are in [fundamentals/configuration/index/\_static](https://github.com/aspnet/Docs/tree/master/aspnetcore/fundamentals/configuration/index/_static) and the sample app project files are in [fundamentals/configuration/index/sample](https://github.com/aspnet/Docs/tree/master/aspnetcore/fundamentals/configuration/index/sample). An image in the *fundamentals/configuration/index.md* file is rendered by the following Markdown: +For each Markdown file, a folder for images and a folder for sample code may exist. If the article is [fundamentals/configuration/index.md](https://github.com/dotnet/AspNetCore.Docs/blob/master/aspnetcore/fundamentals/configuration/index.md), the images are in [fundamentals/configuration/index/\_static](https://github.com/dotnet/AspNetCore.Docs/tree/master/aspnetcore/fundamentals/configuration/index/_static) and the sample app project files are in [fundamentals/configuration/index/sample](https://github.com/dotnet/AspNetCore.Docs/tree/master/aspnetcore/fundamentals/configuration/index/sample). An image in the *fundamentals/configuration/index.md* file is rendered by the following Markdown: ```md ![description of image for alt attribute](configuration/index/_static/imagename.png) @@ -157,4 +157,4 @@ The [Microsoft Writing Style Guide](https://docs.microsoft.com/style-guide/welco ## Redirects -If you delete an article, change its file name, or move it to a different folder, create a redirect so that people who bookmarked the article don't receive a *404 Not Found* error. Add redirects to the [master redirect file](https://github.com/aspnet/Docs/blob/master/.openpublishing.redirection.json). +If you delete an article, change its file name, or move it to a different folder, create a redirect so that people who bookmarked the article don't receive a *404 Not Found* error. Add redirects to the [master redirect file](https://github.com/dotnet/AspNetCore.Docs/blob/master/.openpublishing.redirection.json). diff --git a/README.md b/README.md index 23b720e63314..0449dd8609f8 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ This repository contains the conceptual ASP.NET Core documentation hosted at [docs.microsoft.com/aspnet/core](https://docs.microsoft.com/aspnet/core). See the [Contributing Guide](CONTRIBUTING.md) and the [issues list](https://github.com/dotnet/AspNetCore.Docs/issues) if you would like to help. -API documentation changes are made in the [ApiDocs repository](https://github.com/aspnet/ApiDocs) against the triple slash `///` comments. +API documentation changes are made in the [AspNetApiDocs repository](https://github.com/dotnet/AspNetApiDocs) against the triple slash `///` comments. ASP.NET 4.x documentation changes are made in the [dotnet/AspNetDocs repository](https://github.com/dotnet/AspNetDocs). diff --git a/aspnetcore/blazor/call-dotnet-from-javascript.md b/aspnetcore/blazor/call-dotnet-from-javascript.md index d8f38ca07390..aee3987ac187 100644 --- a/aspnetcore/blazor/call-dotnet-from-javascript.md +++ b/aspnetcore/blazor/call-dotnet-from-javascript.md @@ -19,7 +19,7 @@ A Blazor app can invoke JavaScript functions from .NET methods and .NET methods This article covers invoking .NET methods from JavaScript. For information on how to call JavaScript functions from .NET, see . -[View or download sample code](https://github.com/aspnet/AspNetCore.Docs/tree/master/aspnetcore/blazor/common/samples/) ([how to download](xref:index#how-to-download-a-sample)) +[View or download sample code](https://github.com/dotnet/AspNetCore.Docs/tree/master/aspnetcore/blazor/common/samples/) ([how to download](xref:index#how-to-download-a-sample)) ## Static .NET method call diff --git a/aspnetcore/blazor/call-javascript-from-dotnet.md b/aspnetcore/blazor/call-javascript-from-dotnet.md index e25ecf9d8cad..a7b552db1858 100644 --- a/aspnetcore/blazor/call-javascript-from-dotnet.md +++ b/aspnetcore/blazor/call-javascript-from-dotnet.md @@ -19,7 +19,7 @@ A Blazor app can invoke JavaScript functions from .NET methods and .NET methods This article covers invoking JavaScript functions from .NET. For information on how to call .NET methods from JavaScript, see . -[View or download sample code](https://github.com/aspnet/AspNetCore.Docs/tree/master/aspnetcore/blazor/common/samples/) ([how to download](xref:index#how-to-download-a-sample)) +[View or download sample code](https://github.com/dotnet/AspNetCore.Docs/tree/master/aspnetcore/blazor/common/samples/) ([how to download](xref:index#how-to-download-a-sample)) To call into JavaScript from .NET, use the `IJSRuntime` abstraction. To issue JS interop calls, inject the `IJSRuntime` abstraction in your component. The `InvokeAsync` method takes an identifier for the JavaScript function that you wish to invoke along with any number of JSON-serializable arguments. The function identifier is relative to the global scope (`window`). If you wish to call `window.someScope.someFunction`, the identifier is `someScope.someFunction`. There's no need to register the function before it's called. The return type `T` must also be JSON serializable. `T` should match the .NET type that best maps to the JSON type returned. diff --git a/aspnetcore/blazor/call-web-api.md b/aspnetcore/blazor/call-web-api.md index 9308947625a8..18bf3f92256a 100644 --- a/aspnetcore/blazor/call-web-api.md +++ b/aspnetcore/blazor/call-web-api.md @@ -19,7 +19,7 @@ By [Luke Latham](https://github.com/guardrex), [Daniel Roth](https://github.com/ [Blazor Server](xref:blazor/hosting-models#blazor-server) apps call web APIs using instances, typically created using . The guidance in this topic doesn't pertain to Blazor Server apps. When developing Blazor Server apps, follow the guidance in . -[View or download sample code](https://github.com/aspnet/AspNetCore.Docs/tree/master/aspnetcore/blazor/common/samples/) ([how to download](xref:index#how-to-download-a-sample)) – Select the *BlazorWebAssemblySample* app. +[View or download sample code](https://github.com/dotnet/AspNetCore.Docs/tree/master/aspnetcore/blazor/common/samples/) ([how to download](xref:index#how-to-download-a-sample)) – Select the *BlazorWebAssemblySample* app. See the following components in the *BlazorWebAssemblySample* sample app: @@ -152,7 +152,7 @@ In the following code, the Delete `