Fixing code style

This commit is contained in:
LizRoss
2017-02-14 12:50:12 -08:00
parent db9164fee6
commit 2056ec61fe

View File

@ -16,7 +16,6 @@ ms.prod: w10
The following are known issues and workarounds for Application Virtualization (App-V) running on Windows 10, version 1703. The following are known issues and workarounds for Application Virtualization (App-V) running on Windows 10, version 1703.
<table border="1"> <table border="1">
<thead> <thead>
<th>Problem</th> <th>Problem</th>
@ -38,8 +37,8 @@ The following are known issues and workarounds for Application Virtualization (A
<tr> <tr>
<td>Filetype and protocol handlers aren't registering properly with the Google Chrome browser, causing you to not see App-V packages as an option for default apps from the <strong>Settings > Apps> Default Apps</strong> area.</td> <td>Filetype and protocol handlers aren't registering properly with the Google Chrome browser, causing you to not see App-V packages as an option for default apps from the <strong>Settings > Apps> Default Apps</strong> area.</td>
<td>The recommended workaround is to add the following code to the AppXManifest.xml file, underneath the <strong>&lt;appv:Extensions&gt;</strong> tag: <td>The recommended workaround is to add the following code to the AppXManifest.xml file, underneath the <strong>&lt;appv:Extensions&gt;</strong> tag:
<pre><code> <pre><code>
&lt;appv:Extension Category="AppV.URLProtocol"&gt; &lt;appv:Extension Category="AppV.URLProtocol"&gt;
&lt;appv:URLProtocol&gt; &lt;appv:URLProtocol&gt;
&lt;appv:Name&gt;ftp&lt;/appv:Name&gt; &lt;appv:Name&gt;ftp&lt;/appv:Name&gt;
&lt;appv:ApplicationURLProtocol&gt; &lt;appv:ApplicationURLProtocol&gt;
@ -57,8 +56,8 @@ The following are known issues and workarounds for Application Virtualization (A
&lt;/appv:ShellCommands&gt; &lt;/appv:ShellCommands&gt;
&lt;/appv:ApplicationURLProtocol&gt; &lt;/appv:ApplicationURLProtocol&gt;
&lt;/appv:URLProtocol&gt; &lt;/appv:URLProtocol&gt;
&lt;/appv:Extension&gt; &lt;/appv:Extension&gt;
&lt;appv:Extension Category="AppV.URLProtocol"&gt; &lt;appv:Extension Category="AppV.URLProtocol"&gt;
&lt;appv:URLProtocol&gt; &lt;appv:URLProtocol&gt;
&lt;appv:Name&gt;http&lt;/appv:Name&gt; &lt;appv:Name&gt;http&lt;/appv:Name&gt;
&lt;appv:ApplicationURLProtocol&gt; &lt;appv:ApplicationURLProtocol&gt;
@ -76,8 +75,8 @@ The following are known issues and workarounds for Application Virtualization (A
&lt;/appv:ShellCommands&gt; &lt;/appv:ShellCommands&gt;
&lt;/appv:ApplicationURLProtocol&gt; &lt;/appv:ApplicationURLProtocol&gt;
&lt;/appv:URLProtocol&gt; &lt;/appv:URLProtocol&gt;
&lt;/appv:Extension&gt; &lt;/appv:Extension&gt;
&lt;appv:Extension Category="AppV.URLProtocol"&gt; &lt;appv:Extension Category="AppV.URLProtocol"&gt;
&lt;appv:URLProtocol&gt; &lt;appv:URLProtocol&gt;
&lt;appv:Name&gt;https&lt;/appv:Name&gt; &lt;appv:Name&gt;https&lt;/appv:Name&gt;
&lt;appv:ApplicationURLProtocol&gt; &lt;appv:ApplicationURLProtocol&gt;
@ -95,8 +94,8 @@ The following are known issues and workarounds for Application Virtualization (A
&lt;/appv:ShellCommands&gt; &lt;/appv:ShellCommands&gt;
&lt;/appv:ApplicationURLProtocol&gt; &lt;/appv:ApplicationURLProtocol&gt;
&lt;/appv:URLProtocol&gt; &lt;/appv:URLProtocol&gt;
&lt;/appv:Extension&gt; &lt;/appv:Extension&gt;
</code></pre> </code></pre>
</td> </td>
</tr> </tr>
</tbody> </tbody>