15 lines
638 B
XML
15 lines
638 B
XML
<Project>
|
|
<PropertyGroup>
|
|
<NpmTestArgs>test</NpmTestArgs>
|
|
<Configuration Condition="'$(Configuration)' == '' AND '$(ContinuousIntegrationBuild)' == 'true'">Release</Configuration>
|
|
<Configuration Condition="'$(Configuration)' == ''">Debug</Configuration>
|
|
<PackOnBuild>false</PackOnBuild>
|
|
</PropertyGroup>
|
|
|
|
<!-- Properties to control how we handle warnings when using the tasks provided by the Yarn MSBuild SDK -->
|
|
<PropertyGroup>
|
|
<IgnoreYarnWarnings>false</IgnoreYarnWarnings>
|
|
<IgnoreYarnWarnings Condition="'$(ContinuousIntegrationBuild)' == 'true'">true</IgnoreYarnWarnings>
|
|
</PropertyGroup>
|
|
</Project>
|