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

github.com/mono/mono-addins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mautil
diff options
context:
space:
mode:
authorLluis Sanchez <lluis@novell.com>2010-05-25 18:20:44 +0400
committerLluis Sanchez <lluis@novell.com>2010-05-25 18:20:44 +0400
commite888cb2d660bba9d05774fba2f0f54de6df1d5cf (patch)
tree06fd8c1a4ed422e3f2b0a98035922bcdfe6b6d07 /mautil
parentcd1df7b2a4cb170c95f2ea5b1e9cd0f7d89ba14f (diff)
* Mono.Addins.sln:
* mautil/mautil.csproj: * Mono.Addins/Mono.Addins.csproj: * Mono.Addins.Gui/Mono.Addins.Gui.csproj: Add Debug and Release configurations. * Mono.Addins.CecilReflector/Mono.Addins.CecilReflector/Reflector.cs: When resolving custom attribute properties and fields look it base classes. * Mono.Addins/Mono.Addins.Database/AddinScanner.cs: Fixed node type parsing issue with TypeExtensionPointAttribute. svn path=/trunk/mono-addins/; revision=157853
Diffstat (limited to 'mautil')
-rw-r--r--mautil/ChangeLog4
-rw-r--r--mautil/mautil.csproj12
2 files changed, 14 insertions, 2 deletions
diff --git a/mautil/ChangeLog b/mautil/ChangeLog
index 6340b06..348ce5b 100644
--- a/mautil/ChangeLog
+++ b/mautil/ChangeLog
@@ -1,3 +1,7 @@
+2010-05-25 Lluis Sanchez Gual <lluis@novell.com>
+
+ * mautil.csproj: Add Debug and Release configurations.
+
2010-03-26 Lluis Sanchez Gual <lluis@novell.com>
* mautil.csproj: Flush.
diff --git a/mautil/mautil.csproj b/mautil/mautil.csproj
index d7f2ba4..3b1cb91 100644
--- a/mautil/mautil.csproj
+++ b/mautil/mautil.csproj
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Default</Configuration>
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.50727</ProductVersion>
<ProjectGuid>{EA2F08DC-8289-4A89-A405-1A70D8B4C569}</ProjectGuid>
@@ -10,7 +10,7 @@
<SchemaVersion>2.0</SchemaVersion>
<RootNamespace>mautil</RootNamespace>
</PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Default|AnyCPU' ">
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>true</Optimize>
@@ -19,6 +19,14 @@
<WarningLevel>4</WarningLevel>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
</PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>none</DebugType>
+ <Optimize>true</Optimize>
+ <OutputPath>..\bin</OutputPath>
+ <ErrorReport>prompt</ErrorReport>
+ <WarningLevel>4</WarningLevel>
+ <CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
+ </PropertyGroup>
<ItemGroup>
<Reference Include="System" />
</ItemGroup>