EVOLUTION-MANAGER
Edit File: Microsoft.Common.Mono.Before.targets
<!-- *********************************************************************************************** Microsoft.Common.Mono.targets WARNING: DO NOT MODIFY this file unless you are knowledgeable about MSBuild and have created a backup copy. Incorrect changes to this file will make it impossible to load or build your projects from the command-line or the IDE. This file defines the steps in the standard build process specific for C# .NET projects. For example, it contains the step that actually calls the C# compiler. The remainder of the build process is defined in Microsoft.Common.targets, which is imported by this file. Copyright (C) Microsoft Corporation. All rights reserved. *********************************************************************************************** --> <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> <!-- Mono's resgen doesn't support all the command line args, like /r: So, don't use the tool --> <ExecuteAsTool Condition="'$(ExecuteAsTool)' == '' and '$(MSBuildRuntimeType)' == 'Mono'">false</ExecuteAsTool> <!-- Disable generation of serialization assemblies for now. workaround for bxc #55697 --> <GenerateSerializationAssemblies Condition="'$(GenerateSerializationAssemblies)' == ''">Off</GenerateSerializationAssemblies> <TargetFrameworkFallbackSearchPaths Condition="$([MSBuild]::IsOSPlatform('osx'))">$(TargetFrameworkFallbackSearchPaths);/Library/Frameworks/Mono.framework/External/xbuild-frameworks</TargetFrameworkFallbackSearchPaths> </PropertyGroup> </Project>