Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BULK] DocuTune - Fix build validation issues: docs-link-absolute #4015

Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ To highlight selected lines in a rendered snippet (usually renders as yellow bac

## Test your changes with DocFX

Test your changes with the [DocFX command-line tool](https://dotnet.github.io/docfx/tutorial/docfx_getting_started.html#2-use-docfx-as-a-command-line-tool), which creates a locally hosted version of the site. DocFX doesn't render style and site extensions created for docs.microsoft.com.
Test your changes with the [DocFX command-line tool](https://dotnet.github.io/docfx/tutorial/docfx_getting_started.html#2-use-docfx-as-a-command-line-tool), which creates a locally hosted version of the site. DocFX doesn't render style and site extensions created for Microsoft Docs.

DocFX requires the .NET Framework on Windows, or Mono for Linux or macOS.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Entity Framework Docs

This project contains the source for EF Core and EF6 documentation located at [docs.microsoft.com/ef](https://docs.microsoft.com/ef/).
This project contains the source for EF Core and EF6 documentation published at [Entity Framework documentation](https://docs.microsoft.com/ef/).

Documentation issues for both EF Core and EF6 should be filed in this repo. Product issues (bugs) should be filed in the [EF Core repo](https://github.com/dotnet/efcore) or the [EF6 repo](https://github.com/dotnet/ef6) as appropriate.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Your feedback is valuable! [File an issue](https://github.com/dotnet/EntityFrame

## Introducing Planetary Docs

You may (or may not) know that Microsoft's [official documentation](https://docs.microsoft.com) runs entirely on open source. It uses markdown with some metadata enhancements to build the interactive documentation that .NET developers use daily. The hypothetical scenario for Planetary Docs is to provide a web-based tool for authoring the docs. It allows setting up the title, description, the alias of the author, assigning tags, editing markdown and previewing the HTML output.
You may (or may not) know that Microsoft's [official documentation](/) runs entirely on open source. It uses markdown with some metadata enhancements to build the interactive documentation that .NET developers use daily. The hypothetical scenario for Planetary Docs is to provide a web-based tool for authoring the docs. It allows setting up the title, description, the alias of the author, assigning tags, editing markdown and previewing the HTML output.
alexbuckgit marked this conversation as resolved.
Show resolved Hide resolved

It's planetary because Azure Cosmos DB is "planetary scale". The app provides the ability to search documents. Documents are stored under aliases and tags for fast lookup, but full text search is available as well. The app automatically audits the documents (it takes snapshots of the document anytime it is edited and provides a view of the history).

Expand Down
2 changes: 1 addition & 1 deletion entity-framework/dotnet-data/index.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ additionalContent:
# Card
- title: Relational databases
links:
- url: https://docs.microsoft.com/dotnet/standard/data/sqlite/
- url: /dotnet/standard/data/sqlite/
text: "Microsoft.Data.Sqlite overview"
- url: /sql/
text: "Microsoft SQL documentation"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1221,8 +1221,7 @@ In the example query above, the performance difference was less than 2% in a mic

Entity Framework 6 introduced support of async operations when running on .NET 4.5 or later. For the most part, applications that have IO related contention will benefit the most from using asynchronous query and save operations. If your application does not suffer from IO contention, the use of async will, in the best cases, run synchronously and return the result in the same amount of time as a synchronous call, or in the worst case, simply defer execution to an asynchronous task and add extra time to the completion of your scenario.

For information on how asynchronous programming work that will help you deciding if async will improve the performance of your application visit [http://msdn.microsoft.com/library/hh191443.aspx](https://msdn.microsoft.com/library/hh191443.aspx). For more information on the use of async operations on Entity Framework, see [Async Query and Save](xref:ef6/fundamentals/async
).
For information on how asynchronous programming work that will help you deciding if async will improve the performance of your application, see [Asynchronous Programming with Async and Await](https://msdn.microsoft.com/library/hh191443.aspx). For more information on the use of async operations on Entity Framework, see [Async Query and Save](xref:ef6/fundamentals/async).

### 9.6      NGEN

Expand Down
6 changes: 3 additions & 3 deletions samples/end2end/PlanetaryDocs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ git clone https://github.com/dotnet/EntityFramework.Docs

### Create an Azure Cosmos DB instance

To run this demo, you will need to either run the [Azure Cosmos DB emulator](https://docs.microsoft.com/azure/cosmos-db/local-emulator)
To run this demo, you will need to either run the [Azure Cosmos DB emulator](/azure/cosmos-db/local-emulator)
alexbuckgit marked this conversation as resolved.
Show resolved Hide resolved
or create an Azure Cosmos DB account. You can read
[Create an Azure Cosmos DB account](https://docs.microsoft.com/azure/cosmos-db/create-cosmosdb-resources-portal#create-an-azure-cosmos-db-account) to learn how. Be sure to check out the option
for a [free account](https://docs.microsoft.com/azure/cosmos-db/optimize-dev-test#azure-cosmos-db-free-tier)!
[Create an Azure Cosmos DB account](/azure/cosmos-db/create-cosmosdb-resources-portal#create-an-azure-cosmos-db-account) to learn how. Be sure to check out the option
for a [free account](/azure/cosmos-db/optimize-dev-test#azure-cosmos-db-free-tier)!

Choose the SQL API.

Expand Down