1<!--
2***********************************************************************************************
3Microsoft.Common.Mono.targets
4
5WARNING:  DO NOT MODIFY this file unless you are knowledgeable about MSBuild and have
6          created a backup copy.  Incorrect changes to this file will make it
7          impossible to load or build your projects from the command-line or the IDE.
8
9This file defines the steps in the standard build process specific for C# .NET projects.
10For example, it contains the step that actually calls the C# compiler.  The remainder
11of the build process is defined in Microsoft.Common.targets, which is imported by
12this file.
13
14Copyright (C) Microsoft Corporation. All rights reserved.
15***********************************************************************************************
16-->
17
18<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
19
20    <PropertyGroup>
21        <!-- Mono's resgen doesn't support all the command line args, like /r:
22             So, don't use the tool -->
23	    <ExecuteAsTool Condition="'$(ExecuteAsTool)' == '' and '$(MSBuildRuntimeType)' == 'Mono'">false</ExecuteAsTool>
24
25        <!-- Disable generation of serialization assemblies for now. workaround for bxc #55697 -->
26        <GenerateSerializationAssemblies Condition="'$(GenerateSerializationAssemblies)' == ''">Off</GenerateSerializationAssemblies>
27    </PropertyGroup>
28
29</Project>
30