forked from LemonKaiser/WH14K
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
24 lines (21 loc) · 1.32 KB
/
Copy pathDirectory.Build.props
File metadata and controls
24 lines (21 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project>
<PropertyGroup>
<!--
Guardrail: never compile temporary build outputs created via custom BaseIntermediateOutputPath/BaseOutputPath.
These generated .cs files can otherwise be picked up as sources and cause duplicate assembly attributes.
-->
<DefaultItemExcludes>$(DefaultItemExcludes);**/artifacts/tmpobj/**;**/artifacts/tmpbuild/**;**/artifacts/verify-server/**;**/artifacts/verify-client/**</DefaultItemExcludes>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug' or '$(Configuration)' == 'DebugOpt' or '$(Configuration)' == 'Tools'">
<!--
Set these early so engine project ItemGroup conditions can see them during project evaluation.
RobustToolbox later normalizes some of these values again inside imported targets.
-->
<RobustToolsBuild Condition="'$(RobustToolsBuild)' == ''">True</RobustToolsBuild>
<DefineConstants>$(DefineConstants);TOOLS</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="('$(Configuration)' == 'Debug' or '$(Configuration)' == 'DebugOpt' or '$(Configuration)' == 'Tools') and '$(MSBuildProjectName)' == 'Robust.Client'">
<EnableClientScripting Condition="'$(EnableClientScripting)' == ''">True</EnableClientScripting>
<DefineConstants>$(DefineConstants);CLIENT_SCRIPTING</DefineConstants>
</PropertyGroup>
</Project>