Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,8 @@ Several technologies available to .NET Framework libraries aren't available for

The [Windows Compatibility Pack](../../core/porting/windows-compat-pack.md) provides access to APIs that were previously available only for .NET Framework. It can be used on .NET Core and .NET Standard projects.

For more information on API compatibility, the CoreFX team maintains a list of behavioral changes/compat breaks and deprecated/legacy APIs at GitHub.
<https://github.com/dotnet/corefx/wiki/ApiCompat>)
For more information on API compatibility, you can find documentation about breaking changes and deprecated/legacy APIs at
<https://docs.microsoft.com/dotnet/core/compatibility/fx-core>.

### AppDomains

Expand Down
2 changes: 1 addition & 1 deletion docs/architecture/modernize-desktop/windows-migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ them to interact with other apps the same way classic desktop applications do.

##### Installation

App packages are installed under *C:\\Program Files\\WindowsApps\\package_name*, with the executable titled `app_name.exe`. Each package folder contains a manifest (named `AppxManifest.xml`) that contains a special XML namespace for
App packages are installed under *%ProgramFiles%\\WindowsApps\\package_name*, with the executable titled `app_name.exe`. Each package folder contains a manifest (named `AppxManifest.xml`) that contains a special XML namespace for
packaged apps. Inside that manifest file is an `<EntryPoint>` element, which references the full-trust app. When that application is launched, it doesn't run inside an app container, but instead it runs as the user as it normally
would.

Expand Down