Skip to content
Merged
Show file tree
Hide file tree
Changes from 30 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
f77e429
Temp
adegeo Jul 2, 2025
611c8cb
Temp
adegeo Jul 2, 2025
4d2f6d6
final updates
adegeo Jul 3, 2025
1e98667
Minor
adegeo Jul 3, 2025
3c469bf
Rename and rewrite
adegeo Aug 8, 2025
62c36ba
Redirect, TOC, links
adegeo Aug 8, 2025
533a5c6
Temp
adegeo Aug 11, 2025
4c0928b
Almost final draft of rewriting the publishing intro article.
adegeo Aug 11, 2025
b666968
Merge branch 'main' of github.adegeo:dotnet/docs into adegeo/41489/de…
adegeo Aug 11, 2025
393b2cd
Reset copilot
adegeo Aug 11, 2025
556fd9a
Extra descriptions
adegeo Aug 12, 2025
7ca336d
Move cli parameters to include
adegeo Aug 12, 2025
6fe7a63
move table
adegeo Aug 12, 2025
f69d032
Change header to bold
adegeo Aug 12, 2025
25dc695
Fix bugs
adegeo Aug 12, 2025
23801e6
Add info about FDD lookups
adegeo Aug 12, 2025
51b410c
Remove my temp code
adegeo Aug 12, 2025
323789c
Fix indentation
adegeo Aug 12, 2025
79fb619
Add container
adegeo Aug 12, 2025
569fc6b
Handle what acro I can...
adegeo Aug 12, 2025
921c79b
Fix cross links to publishing
adegeo Aug 12, 2025
8ac00e8
Redirect deploy/publish articles
adegeo Aug 12, 2025
1beeb09
Fix other links
adegeo Aug 13, 2025
125f652
Remove sample code no longer unsed
adegeo Aug 13, 2025
290e1d8
More bookmark changes
adegeo Aug 13, 2025
71cb721
fix redirect
adegeo Aug 13, 2025
6d9e32a
Fix links; link to tutorials
adegeo Aug 13, 2025
b7b1f14
Fix that link that snuck through!
adegeo Aug 13, 2025
d61f316
ugh
adegeo Aug 13, 2025
8709f5c
Merge branch 'main' into adegeo/41489/deploy
adegeo Aug 14, 2025
6bd3f8b
Apply suggestions from code review
adegeo Aug 21, 2025
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
8 changes: 8 additions & 0 deletions .openpublishing.redirection.core.json
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,14 @@
"source_path_from_root": "/docs/core/deploying/applications.md",
"redirect_url": "/dotnet/core/deploying/index"
},
{
"source_path_from_root": "/docs/core/deploying/deploy-with-cli.md",
"redirect_url": "/dotnet/core/deploying/index"
},
{
"source_path_from_root": "/docs/core/deploying/deploy-with-vs.md",
"redirect_url": "/dotnet/core/deploying/index"
},
{
"source_path_from_root": "/docs/core/deploying/fixing-warnings.md",
"redirect_url": "/dotnet/core/deploying/trimming/fixing-warnings",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ The .NET team provides some basic variants in [dotnet/](https://hub.docker.com/r
- **sdk**: for development and build scenarios
- **aspnet**: for ASP.NET production scenarios
- **runtime**: for .NET production scenarios
- **runtime-deps**: for production scenarios of [self-contained applications](../../../core/deploying/index.md#publish-self-contained)
- **runtime-deps**: for production scenarios of [self-contained applications](../../../core/deploying/index.md#self-contained-deployment)

For faster startup, runtime images also automatically set aspnetcore\_urls to port 80 and use Ngen to create a native image cache of assemblies.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ms.date: 07/13/2021
---
# Generate apphost for macOS

When building on macOS, the .NET SDK now [produces an executable](../../../deploying/index.md#produce-an-executable) for app projects.
When building on macOS, the .NET SDK now produces an executable for app projects.

Since .NET Core 3.0, the .NET SDK has created an executable for app projects when building on non-macOS operating systems. However, it did not create an executable on macOS since we weren't signing this binary. That resulted in an app that was recognized as dangerous by the OS, which made it hard for the user to run it. The .NET 6 SDK can sign the app executable, so it now produces the executable by default.

Expand Down
2 changes: 1 addition & 1 deletion docs/core/compatibility/sdk/8.0/arch-option.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ms.date: 10/05/2023
---
# --arch option doesn't imply self-contained

Up until now, the `--arch` option for `dotnet` CLI commands such as [dotnet publish](../../../tools/dotnet-publish.md) implied that the app was [self-contained](../../../deploying/index.md#publish-self-contained). The behavior of the `--arch` option has now been changed to match that of the `--runtime` option, and it no longer implies that an app is self-contained.
Up until now, the `--arch` option for `dotnet` CLI commands such as [dotnet publish](../../../tools/dotnet-publish.md) implied that the app was [self-contained](../../../deploying/index.md#self-contained-deployment). The behavior of the `--arch` option has now been changed to match that of the `--runtime` option, and it no longer implies that an app is self-contained.

## Previous behavior

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ms.date: 06/05/2023
---
# Runtime-specific apps no longer self-contained

Runtime-specific apps, or .NET apps with a `RuntimeIdentifier`, are no longer [self-contained](../../../deploying/index.md#publish-self-contained) by default. Instead, they are [framework-dependent](../../../deploying/index.md#publish-framework-dependent) by default.
Runtime-specific apps, or .NET apps with a `RuntimeIdentifier`, are no longer [self-contained](../../../deploying/index.md#self-contained-deployment) by default. Instead, they are [framework-dependent](../../../deploying/index.md#framework-dependent-deployment) by default.

This is a breaking change in the following situations:

Expand Down
175 changes: 0 additions & 175 deletions docs/core/deploying/deploy-with-cli.md

This file was deleted.

Loading