Skip BundleMinify if in Debug mode

This commit is contained in:
nicolas.dorier 2019-08-30 19:18:56 +09:00
parent 3c51bd3b23
commit 0229b560e7
No known key found for this signature in database
GPG key ID: 6618763EF09186FE

View file

@ -2,7 +2,10 @@
<Import Project="../Build/Version.csproj" Condition="Exists('../Build/Version.csproj')" />
<Import Project="../Build/Common.csproj" />
<PropertyGroup>
<OutputType>Exe</OutputType>
<OutputType>Exe</OutputType> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<!--BundleMinify add 5s to the build process, making the debug/feedback loop slower-->
<RunBundleMinify>False</RunBundleMinify>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Build\dockerfiles\**" />