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

github.com/mono/cecil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjbevain <jbevain@gmail.com>2010-12-17 18:07:13 +0300
committerjbevain <jbevain@gmail.com>2010-12-17 18:07:13 +0300
commit210d74424966d38863e2d754aacd4eb71c818e8e (patch)
tree1d87a4c4ef101a6c2a48519027388cd90d99f9bb /Mono.Cecil.csproj
parent7cd183c000fb5219a804b2144dd28c9694c3221b (diff)
Add silverlight build configuration
Diffstat (limited to 'Mono.Cecil.csproj')
-rw-r--r--Mono.Cecil.csproj21
1 files changed, 21 insertions, 0 deletions
diff --git a/Mono.Cecil.csproj b/Mono.Cecil.csproj
index 90d3554..3008176 100644
--- a/Mono.Cecil.csproj
+++ b/Mono.Cecil.csproj
@@ -71,6 +71,27 @@
<WarningLevel>4</WarningLevel>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
</PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'silverlight_Debug|AnyCPU' ">
+ <DebugSymbols>true</DebugSymbols>
+ <DebugType>full</DebugType>
+ <Optimize>false</Optimize>
+ <OutputPath>bin\silverlight_Debug\</OutputPath>
+ <DefineConstants>DEBUG;TRACE;NET_3_5;NET_4_0;SILVERLIGHT</DefineConstants>
+ <ErrorReport>prompt</ErrorReport>
+ <WarningLevel>4</WarningLevel>
+ <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier>
+ <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'silverlight_Release|AnyCPU' ">
+ <DebugType>pdbonly</DebugType>
+ <Optimize>true</Optimize>
+ <OutputPath>bin\silverlight_Release\</OutputPath>
+ <DefineConstants>TRACE;NET_3_5;NET_4_0;SILVERLIGHT</DefineConstants>
+ <ErrorReport>prompt</ErrorReport>
+ <WarningLevel>4</WarningLevel>
+ <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier>
+ <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
+ </PropertyGroup>
<ItemGroup Condition=" '$(TargetFrameworkVersion)' != 'v2.0' ">
<Reference Include="System.Core" />
</ItemGroup>