Skip to content

Commit 9174ead

Browse files
authored
Update aspnet org. links to reference the dotnet org. (#17077)
* Update aspnet org. links to reference the dotnet org. * Update API ref links
1 parent 227633c commit 9174ead

File tree

180 files changed

+381
-381
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

180 files changed

+381
-381
lines changed

CONTRIBUTING.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ Articles are stored in the repository as Markdown files. Simple changes to the c
1010

1111
You need a basic understanding of [Git and GitHub.com](https://guides.github.com/activities/hello-world/).
1212

13-
* 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.
14-
* Fork the [aspnet/Docs](https://github.com/aspnet/Docs/) repo and create a branch for your changes.
13+
* 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.
14+
* Fork the [aspnet/Docs](https://github.com/dotnet/AspNetCore.Docs/) repo and create a branch for your changes.
1515
* Submit a PR to master with your changes.
1616
* If your PR has the label 'cla-required' assigned, [complete the Contribution License Agreement (CLA)](https://cla.dotnetfoundation.org/).
1717
* Respond to PR feedback.
@@ -28,7 +28,7 @@ Articles are written in [DocFx-flavored Markdown](https://dotnet.github.io/docfx
2828

2929
## Folder structure conventions
3030

31-
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:
31+
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:
3232

3333
```md
3434
![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
157157

158158
## Redirects
159159

160-
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).
160+
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).

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
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.
44

5-
API documentation changes are made in the [ApiDocs repository](https://github.com/aspnet/ApiDocs) against the triple slash `///` comments.
5+
API documentation changes are made in the [AspNetApiDocs repository](https://github.com/dotnet/AspNetApiDocs) against the triple slash `///` comments.
66

77
ASP.NET 4.x documentation changes are made in the [dotnet/AspNetDocs repository](https://github.com/dotnet/AspNetDocs).
88

aspnetcore/blazor/call-dotnet-from-javascript.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ A Blazor app can invoke JavaScript functions from .NET methods and .NET methods
1919

2020
This article covers invoking .NET methods from JavaScript. For information on how to call JavaScript functions from .NET, see <xref:blazor/call-javascript-from-dotnet>.
2121

22-
[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))
22+
[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))
2323

2424
## Static .NET method call
2525

aspnetcore/blazor/call-javascript-from-dotnet.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ A Blazor app can invoke JavaScript functions from .NET methods and .NET methods
1919

2020
This article covers invoking JavaScript functions from .NET. For information on how to call .NET methods from JavaScript, see <xref:blazor/call-dotnet-from-javascript>.
2121

22-
[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))
22+
[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))
2323

2424
To call into JavaScript from .NET, use the `IJSRuntime` abstraction. To issue JS interop calls, inject the `IJSRuntime` abstraction in your component. The `InvokeAsync<T>` 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.
2525

aspnetcore/blazor/call-web-api.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ By [Luke Latham](https://github.com/guardrex), [Daniel Roth](https://github.com/
1919

2020
[Blazor Server](xref:blazor/hosting-models#blazor-server) apps call web APIs using <xref:System.Net.Http.HttpClient> instances, typically created using <xref:System.Net.Http.IHttpClientFactory>. The guidance in this topic doesn't pertain to Blazor Server apps. When developing Blazor Server apps, follow the guidance in <xref:fundamentals/http-requests>.
2121

22-
[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)) &ndash; Select the *BlazorWebAssemblySample* app.
22+
[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)) &ndash; Select the *BlazorWebAssemblySample* app.
2323

2424
See the following components in the *BlazorWebAssemblySample* sample app:
2525

@@ -152,7 +152,7 @@ In the following code, the Delete `<button>` element calls the `DeleteItem` meth
152152

153153
Browser security prevents a webpage from making requests to a different domain than the one that served the webpage. This restriction is called the *same-origin policy*. The same-origin policy prevents a malicious site from reading sensitive data from another site. To make requests from the browser to an endpoint with a different origin, the *endpoint* must enable [cross-origin resource sharing (CORS)](https://www.w3.org/TR/cors/).
154154

155-
The [Blazor WebAssembly sample app (BlazorWebAssemblySample)](https://github.com/aspnet/AspNetCore.Docs/tree/master/aspnetcore/blazor/common/samples/) demonstrates the use of CORS in the Call Web API component (*Pages/CallWebAPI.razor*).
155+
The [Blazor WebAssembly sample app (BlazorWebAssemblySample)](https://github.com/dotnet/AspNetCore.Docs/tree/master/aspnetcore/blazor/common/samples/) demonstrates the use of CORS in the Call Web API component (*Pages/CallWebAPI.razor*).
156156

157157
To allow other sites to make cross-origin resource sharing (CORS) requests to your app, see <xref:security/cors>.
158158

aspnetcore/blazor/components.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ uid: blazor/components
1313

1414
By [Luke Latham](https://github.com/guardrex) and [Daniel Roth](https://github.com/danroth27)
1515

16-
[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))
16+
[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))
1717

1818
Blazor apps are built using *components*. A component is a self-contained chunk of user interface (UI), such as a page, dialog, or form. A component includes HTML markup and the processing logic required to inject data or respond to UI events. Components are flexible and lightweight. They can be nested, reused, and shared among projects.
1919

aspnetcore/client-side/libman/libman-vs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Visual Studio has built-in support for [LibMan](xref:client-side/libman/index) i
1818
* Search dialog for finding libraries and adding the files to a project.
1919
* Editing support for *libman.json*&mdash;the LibMan manifest file.
2020

21-
[View or download sample code](https://github.com/aspnet/AspNetCore.Docs/tree/master/aspnetcore/client-side/libman/samples/) [(how to download)](xref:index#how-to-download-a-sample)
21+
[View or download sample code](https://github.com/dotnet/AspNetCore.Docs/tree/master/aspnetcore/client-side/libman/samples/) [(how to download)](xref:index#how-to-download-a-sample)
2222

2323
## Prerequisites
2424

aspnetcore/client-side/spa-services.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ The script launches the Karma test runner, which reads the settings defined in t
284284

285285
## Publish the app
286286

287-
See [this GitHub issue](https://github.com/aspnet/AspNetCore.Docs/issues/12474) for more information on publishing to Azure.
287+
See [this GitHub issue](https://github.com/dotnet/AspNetCore.Docs/issues/12474) for more information on publishing to Azure.
288288

289289
Combining the generated client-side assets and the published ASP.NET Core artifacts into a ready-to-deploy package can be cumbersome. Thankfully, SpaServices orchestrates that entire publication process with a custom MSBuild target named `RunWebpack`:
290290

aspnetcore/data/ef-mvc/advanced.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ Check the connection string. If you have manually deleted the database file, cha
246246

247247
## Get the code
248248

249-
[Download or view the completed application.](https://github.com/aspnet/AspNetCore.Docs/tree/master/aspnetcore/data/ef-mvc/intro/samples/cu-final)
249+
[Download or view the completed application.](https://github.com/dotnet/AspNetCore.Docs/tree/master/aspnetcore/data/ef-mvc/intro/samples/cu-final)
250250

251251
## Additional resources
252252

aspnetcore/data/ef-mvc/complex-data-model.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ Right-click the **CourseAssignment** table and select **View Data** to verify th
505505

506506
## Get the code
507507

508-
[Download or view the completed application.](https://github.com/aspnet/AspNetCore.Docs/tree/master/aspnetcore/data/ef-mvc/intro/samples/cu-final)
508+
[Download or view the completed application.](https://github.com/dotnet/AspNetCore.Docs/tree/master/aspnetcore/data/ef-mvc/intro/samples/cu-final)
509509

510510
## Next steps
511511

aspnetcore/data/ef-mvc/concurrency.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ Replace the code in *Views/Departments/Create.cshtml* to add a Select option to
283283

284284
## Get the code
285285

286-
[Download or view the completed application.](https://github.com/aspnet/AspNetCore.Docs/tree/master/aspnetcore/data/ef-mvc/intro/samples/cu-final)
286+
[Download or view the completed application.](https://github.com/dotnet/AspNetCore.Docs/tree/master/aspnetcore/data/ef-mvc/intro/samples/cu-final)
287287

288288
## Additional resources
289289

aspnetcore/data/ef-mvc/crud.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ For more information, see [Tracking vs. No-Tracking](/ef/core/querying/tracking)
288288

289289
## Get the code
290290

291-
[Download or view the completed application.](https://github.com/aspnet/AspNetCore.Docs/tree/master/aspnetcore/data/ef-mvc/intro/samples/cu-final)
291+
[Download or view the completed application.](https://github.com/dotnet/AspNetCore.Docs/tree/master/aspnetcore/data/ef-mvc/intro/samples/cu-final)
292292

293293
## Next steps
294294

aspnetcore/data/ef-mvc/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ uid: data/ef-mvc/index
1010

1111
::: moniker range=">= aspnetcore-3.0"
1212

13-
This tutorial has **not** been updated to ASP.NET Core 3.0. The [Razor Pages version](xref:data/ef-rp/intro) has been updated. For information on when this might be updated, see [this GitHub issue](https://github.com/aspnet/AspNetCore.Docs/issues/13920).
13+
This tutorial has **not** been updated to ASP.NET Core 3.0. The [Razor Pages version](xref:data/ef-rp/intro) has been updated. For information on when this might be updated, see [this GitHub issue](https://github.com/dotnet/AspNetCore.Docs/issues/13920).
1414

1515
::: moniker-end
1616

aspnetcore/data/ef-mvc/inheritance.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ Right-click the Person table, and then click **Show Table Data** to see the disc
145145

146146
## Get the code
147147

148-
[Download or view the completed application.](https://github.com/aspnet/AspNetCore.Docs/tree/master/aspnetcore/data/ef-mvc/intro/samples/cu-final)
148+
[Download or view the completed application.](https://github.com/dotnet/AspNetCore.Docs/tree/master/aspnetcore/data/ef-mvc/intro/samples/cu-final)
149149

150150
## Additional resources
151151

aspnetcore/data/ef-mvc/intro.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This tutorial has **not** been updated to ASP.NET Core 3.0. The [Razor Pages ver
1515
* Are in the *Startup.cs* and *Program.cs* files.
1616
* Can be found in the [Razor Pages version](xref:data/ef-rp/intro).
1717

18-
For information on when this might be updated, see [this GitHub issue](https://github.com/aspnet/AspNetCore.Docs/issues/13920).
18+
For information on when this might be updated, see [this GitHub issue](https://github.com/dotnet/AspNetCore.Docs/issues/13920).
1919

2020
[!INCLUDE [RP better than MVC](~/includes/RP-EF/rp-over-mvc.md)]
2121

@@ -45,7 +45,7 @@ In this tutorial, you:
4545

4646
## Troubleshooting
4747

48-
If you run into a problem you can't resolve, you can generally find the solution by comparing your code to the [completed project](https://github.com/aspnet/AspNetCore.Docs/tree/master/aspnetcore/data/ef-mvc/intro/samples/cu-final). For a list of common errors and how to solve them, see [the Troubleshooting section of the last tutorial in the series](advanced.md#common-errors). If you don't find what you need there, you can post a question to StackOverflow.com for [ASP.NET Core](https://stackoverflow.com/questions/tagged/asp.net-core) or [EF Core](https://stackoverflow.com/questions/tagged/entity-framework-core).
48+
If you run into a problem you can't resolve, you can generally find the solution by comparing your code to the [completed project](https://github.com/dotnet/AspNetCore.Docs/tree/master/aspnetcore/data/ef-mvc/intro/samples/cu-final). For a list of common errors and how to solve them, see [the Troubleshooting section of the last tutorial in the series](advanced.md#common-errors). If you don't find what you need there, you can post a question to StackOverflow.com for [ASP.NET Core](https://stackoverflow.com/questions/tagged/asp.net-core) or [EF Core](https://stackoverflow.com/questions/tagged/entity-framework-core).
4949

5050
> [!TIP]
5151
> This is a series of 10 tutorials, each of which builds on what is done in earlier tutorials. Consider saving a copy of the project after each successful tutorial completion. Then if you run into problems, you can start over from the previous tutorial instead of going back to the beginning of the whole series.
@@ -356,7 +356,7 @@ For more information about asynchronous programming in .NET, see [Async Overview
356356

357357
## Get the code
358358

359-
[Download or view the completed application.](https://github.com/aspnet/AspNetCore.Docs/tree/master/aspnetcore/data/ef-mvc/intro/samples/cu-final)
359+
[Download or view the completed application.](https://github.com/dotnet/AspNetCore.Docs/tree/master/aspnetcore/data/ef-mvc/intro/samples/cu-final)
360360

361361
## Next steps
362362

aspnetcore/data/ef-mvc/intro/samples/cu-final/Views/Home/Index.cshtml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@
2222
<div class="col-md-4">
2323
<h2>Download it</h2>
2424
<p>You can download the completed project from GitHub.</p>
25-
<p><a class="btn btn-default" href="https://github.com/aspnet/AspNetCore.Docs/tree/master/aspnetcore/data/ef-mvc/intro/samples/cu-final">See project source code &raquo;</a></p>
25+
<p><a class="btn btn-default" href="https://github.com/dotnet/AspNetCore.Docs/tree/master/aspnetcore/data/ef-mvc/intro/samples/cu-final">See project source code &raquo;</a></p>
2626
</div>
2727
</div>

aspnetcore/data/ef-mvc/intro/samples/cu/Views/Home/Index.cshtml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@
2222
<div class="col-md-4">
2323
<h2>Download it</h2>
2424
<p>You can download the completed project from GitHub.</p>
25-
<p><a class="btn btn-default" href="https://github.com/aspnet/AspNetCore.Docs/tree/master/aspnetcore/data/ef-mvc/intro/samples/cu-final">See project source code &raquo;</a></p>
25+
<p><a class="btn btn-default" href="https://github.com/dotnet/AspNetCore.Docs/tree/master/aspnetcore/data/ef-mvc/intro/samples/cu-final">See project source code &raquo;</a></p>
2626
</div>
2727
</div>
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
This project is used for providing snippets to [the EF MVC Core tutorial series](https://docs.microsoft.com/aspnet/core/data/ef-mvc/intro). The sample project that's built by following the tutorials is at https://github.com/aspnet/AspNetCore.Docs/tree/master/aspnetcore/data/ef-mvc/intro/samples/cu-final.
1+
This project is used for providing snippets to [the EF MVC Core tutorial series](https://docs.microsoft.com/aspnet/core/data/ef-mvc/intro). The sample project that's built by following the tutorials is at https://github.com/dotnet/AspNetCore.Docs/tree/master/aspnetcore/data/ef-mvc/intro/samples/cu-final.

aspnetcore/data/ef-mvc/migrations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ For more information about the PMC commands, see [Package Manager Console (Visua
164164

165165
## Get the code
166166

167-
[Download or view the completed application.](https://github.com/aspnet/AspNetCore.Docs/tree/master/aspnetcore/data/ef-mvc/intro/samples/cu-final)
167+
[Download or view the completed application.](https://github.com/dotnet/AspNetCore.Docs/tree/master/aspnetcore/data/ef-mvc/intro/samples/cu-final)
168168

169169
## Next step
170170

aspnetcore/data/ef-mvc/read-related-data.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ Run the app, go to the Instructors Index page now and you'll see no difference i
240240

241241
## Get the code
242242

243-
[Download or view the completed application.](https://github.com/aspnet/AspNetCore.Docs/tree/master/aspnetcore/data/ef-mvc/intro/samples/cu-final)
243+
[Download or view the completed application.](https://github.com/dotnet/AspNetCore.Docs/tree/master/aspnetcore/data/ef-mvc/intro/samples/cu-final)
244244

245245
## Next steps
246246

aspnetcore/data/ef-mvc/sort-filter-page.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ Run the app and go to the About page. The count of students for each enrollment
243243

244244
## Get the code
245245

246-
[Download or view the completed application.](https://github.com/aspnet/AspNetCore.Docs/tree/master/aspnetcore/data/ef-mvc/intro/samples/cu-final)
246+
[Download or view the completed application.](https://github.com/dotnet/AspNetCore.Docs/tree/master/aspnetcore/data/ef-mvc/intro/samples/cu-final)
247247

248248
## Next steps
249249

aspnetcore/data/ef-mvc/update-related-data.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ As explained in the [CRUD tutorial](crud.md), the Entity Framework implicitly im
296296

297297
## Get the code
298298

299-
[Download or view the completed application.](https://github.com/aspnet/AspNetCore.Docs/tree/master/aspnetcore/data/ef-mvc/intro/samples/cu-final)
299+
[Download or view the completed application.](https://github.com/dotnet/AspNetCore.Docs/tree/master/aspnetcore/data/ef-mvc/intro/samples/cu-final)
300300

301301
## Next steps
302302

aspnetcore/data/ef-rp/complex-data-model.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,7 @@ The entity classes for the completed data model are shown in the following illus
730730
![Entity diagram](complex-data-model/_static/diagram.png)
731731

732732
If you run into problems you can't solve, download the [completed app](
733-
https://github.com/aspnet/AspNetCore.Docs/tree/master/aspnetcore/data/ef-rp/intro/samples).
733+
https://github.com/dotnet/AspNetCore.Docs/tree/master/aspnetcore/data/ef-rp/intro/samples).
734734

735735
## Customize the data model with attributes
736736

0 commit comments

Comments
 (0)