Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I answer on my one question. So after a lot of googling and 2 days of investigation it finally works.</p> <p>Brief how to: </p> <ol> <li><p>I created Configuration = QA (based on Debug configuration) for Solution via Configuration Manager.</p></li> <li><p>Important: <strong>I removed 'Platform' parameter for QA Configuration. I couldn't build package until I did it.</strong> (My dev computer is Win7-x64, and I'm not not sure would be this step necessary for x86. But my build server Win2008-x86 forks fine with this modification.) This is QA Configuration section from my .wdproj </p> <pre><code>&lt;PropertyGroup Condition=" '$(Configuration)' == 'QA' "&gt; &lt;DebugSymbols&gt;True&lt;/DebugSymbols&gt; &lt;OutputPath&gt;QA\&lt;/OutputPath&gt; &lt;EnableUpdateable&gt;true&lt;/EnableUpdateable&gt; &lt;UseMerge&gt;true&lt;/UseMerge&gt; &lt;SingleAssemblyName&gt; &lt;/SingleAssemblyName&gt; &lt;UseWebConfigReplacement&gt;false&lt;/UseWebConfigReplacement&gt; &lt;DeleteAppDataFolder&gt;true&lt;/DeleteAppDataFolder&gt; &lt;TargetFrameworkVersion&gt;v3.5&lt;/TargetFrameworkVersion&gt; &lt;ExcludeApp_Data&gt;true&lt;/ExcludeApp_Data&gt; &lt;/PropertyGroup&gt; </code></pre></li> <li><p>I build and package .wbproj file with the following command:</p> <pre><code>msbuild WebSite.Deploy.wdproj /t:Build;Package /p:Configuration=QA </code></pre></li> </ol> <p><strong>For information</strong>: If you need you can use standard Web Publishing parameters (e.g. ExcludeApp_Data, DeployIisAppPath etc.) in the QA configuration section. </p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload