mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
510 B
13 lines
510 B
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
|
|
<DefineConstants>$(DefineConstants);INCLUDE_MAGICK;INCLUDE_KAFKA</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(DefineConstants.Contains(INCLUDE_MAGICK))'">
|
|
<IncludeMagick>true</IncludeMagick>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(DefineConstants.Contains(INCLUDE_KAFKA))'">
|
|
<IncludeKafka>true</IncludeKafka>
|
|
</PropertyGroup>
|
|
</Project>
|
|
|