Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Hutchinson <mhutch@xamarin.com>2014-01-17 12:35:25 +0400
committerMichael Hutchinson <mhutch@xamarin.com>2014-01-17 12:39:51 +0400
commit44410f920de746f464e624d5079525e01b2341e4 (patch)
tree654000e9708e256e2dec6c96f84e1e6640e0dfaf /main/src/core/MonoDevelop.Projects.Formats.MSBuild
parenteb58ad3df7d32dbd7c27c870540aca1b2ebec027 (diff)
[MSBuild] Builder interface library doesn't need to be an x86 exe
Make it an AnyCPU library to fix warnings and prevent executing it. Assembly identity is still the same.
Diffstat (limited to 'main/src/core/MonoDevelop.Projects.Formats.MSBuild')
-rw-r--r--main/src/core/MonoDevelop.Projects.Formats.MSBuild/MonoDevelop.Projects.Formats.MSBuild.csproj14
1 files changed, 4 insertions, 10 deletions
diff --git a/main/src/core/MonoDevelop.Projects.Formats.MSBuild/MonoDevelop.Projects.Formats.MSBuild.csproj b/main/src/core/MonoDevelop.Projects.Formats.MSBuild/MonoDevelop.Projects.Formats.MSBuild.csproj
index d6b34aecfd..8d7d8fb781 100644
--- a/main/src/core/MonoDevelop.Projects.Formats.MSBuild/MonoDevelop.Projects.Formats.MSBuild.csproj
+++ b/main/src/core/MonoDevelop.Projects.Formats.MSBuild/MonoDevelop.Projects.Formats.MSBuild.csproj
@@ -2,15 +2,15 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.21022</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{A437F1A3-78DF-4F00-8053-D32A8B1EB679}</ProjectGuid>
- <OutputType>WinExe</OutputType>
+ <OutputType>Library</OutputType>
<AssemblyName>MonoDevelop.Projects.Formats.MSBuild</AssemblyName>
<RootNamespace>MonoDevelop.Projects.Formats.MSBuild</RootNamespace>
</PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>True</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>False</Optimize>
@@ -18,17 +18,15 @@
<DefineConstants>DEBUG,NET_3_5,NET_4_0</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
- <PlatformTarget>x86</PlatformTarget>
<NoWarn>1591;1573</NoWarn>
<DocumentationFile>..\..\..\build\bin\MonoDevelop.Projects.Formats.MSBuild.xml</DocumentationFile>
</PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\build\bin</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
- <PlatformTarget>x86</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<NoWarn>1591;1573</NoWarn>
<DocumentationFile>..\..\..\build\bin\MonoDevelop.Projects.Formats.MSBuild.xml</DocumentationFile>
@@ -42,7 +40,6 @@
<Reference Include="Microsoft.Build.Utilities.v4.0" />
</ItemGroup>
<ItemGroup>
- <Compile Include="Main.cs" />
<Compile Include="AssemblyInfo.cs" />
<Compile Include="MonoDevelop.Projects.Formats.MSBuild\ProjectBuilder.cs" />
<Compile Include="MonoDevelop.Projects.Formats.MSBuild\MSBuildResult.cs" />
@@ -58,7 +55,4 @@
<ItemGroup>
<Folder Include="MonoDevelop.Projects.Formats.MSBuild\" />
</ItemGroup>
- <ItemGroup>
- <None Include="app.config" />
- </ItemGroup>
</Project>