From a8b91de6e3ebdc042f1199b1f1f0cc6c9365b58d Mon Sep 17 00:00:00 2001 From: Maira Wenzel Date: Sun, 26 Apr 2020 12:56:00 -0700 Subject: [PATCH 1/2] update outdated paragraph --- .../modernize-desktop/migrate-modern-applications.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/architecture/modernize-desktop/migrate-modern-applications.md b/docs/architecture/modernize-desktop/migrate-modern-applications.md index d4b71ac3a86fd..2da6f4ef8c9e3 100644 --- a/docs/architecture/modernize-desktop/migrate-modern-applications.md +++ b/docs/architecture/modernize-desktop/migrate-modern-applications.md @@ -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. -) +For more information on API compatibility, you can find documentation about breaking changes and deprecated/legacy APIs at +. ### AppDomains From 5af8c83be5345fc19f6fe2c8a7e87a34f44f927f Mon Sep 17 00:00:00 2001 From: Maira Wenzel Date: Sun, 26 Apr 2020 16:43:17 -0700 Subject: [PATCH 2/2] use non-fixed path --- docs/architecture/modernize-desktop/windows-migration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/architecture/modernize-desktop/windows-migration.md b/docs/architecture/modernize-desktop/windows-migration.md index 108f9751f4199..2bd8813dcc83e 100644 --- a/docs/architecture/modernize-desktop/windows-migration.md +++ b/docs/architecture/modernize-desktop/windows-migration.md @@ -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 `` 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.