Commit 202ac8ae authored by Jason Williams's avatar Jason Williams
Browse files

Update some comments.

parent 5600fc90
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -22,13 +22,16 @@ namespace XboxWdpDriver
        private const string AppUsageMessage = "Usage:\n" +
            "  /subop:list\n" +
            "        Lists all installed packages on the console.\n" +
    // Suspend and resume are currently not supported. The endpoints are not very
    // reliable yet on Xbox One and are completely unavailable on other platforms.
    // We'll revisit these two operations in the future.
            //"  /subop:suspend /pfn:<packageFullName>\n" +
            //"        Suspends the requested application.\n" +
            //"  /subop:resume /pfn:<packageFullName>\n" +
            //"        Resumes the requested application.\n" +
            "  /subop:launch /pfn:<packageFullName> /aumid:<appId>\n" +
            "        Starts the requested application.\n" +
            "  /subop:terminate pfn:<packageFullName.\n" +
            "  /subop:terminate /pfn:<packageFullName>\n" +
            "        Stops the requested application.\n" +
            "  /subop:uninstall /pfn:<packageFullName>\n" +
            "        Removes or unregisters the given application from the console.\n";
+3 −3
Original line number Diff line number Diff line
@@ -36,7 +36,7 @@ Supported operations (in alphabetical order) are the following:
<a name="app"/>
### The app operation

Allows gettings the list of applications on the console and performing some basic lifetime management (launch, terminate, etc). Suspend and resume aren't currently supported but will be in the future.
Allows getting the list of applications on the console and performing some basic lifetime management (launch, terminate, etc). Suspend and resume aren't currently supported but will be in the future.

Usage:
```shell
@@ -44,7 +44,7 @@ Usage:
        Lists all installed packages on the console.
  /subop:launch /pfn:<packageFullName> /aumid:<appId>
        Starts the requested application.
  /subop:terminate pfn:<packageFullName.
  /subop:terminate /pfn:<packageFullName>
        Stops the requested application.
  /subop:uninstall /pfn:<packageFullName>
        Removes or unregisters the given application from the console.