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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2011-02-13 06:07:05 +0300
committerMiguel de Icaza <miguel@gnome.org>2011-02-13 06:07:05 +0300
commit97e585b5ec47a2c61c9290a361218c2edf935b1b (patch)
tree60a0b861393cad8660748c6ad450122257432489 /msvc/scripts/csproj.tmpl
parent7bcc94629da492cc51c94fd319296768ce0ec7ee (diff)
Various updates
Diffstat (limited to 'msvc/scripts/csproj.tmpl')
-rw-r--r--msvc/scripts/csproj.tmpl7
1 files changed, 5 insertions, 2 deletions
diff --git a/msvc/scripts/csproj.tmpl b/msvc/scripts/csproj.tmpl
index e10ce052a0f..613c9024bd3 100644
--- a/msvc/scripts/csproj.tmpl
+++ b/msvc/scripts/csproj.tmpl
@@ -24,18 +24,20 @@
<DebugSymbols>@DEBUG@</DebugSymbols>
<DebugType>@DEBUGTYPE@</DebugType>
<NoWarn>@DISABLEDWARNINGS@</NoWarn>
- <Optimize>false</Optimize>
+ <Optimize>@OPTIMIZE@</Optimize>
<DefineConstants>@DEFINECONSTANTS@</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
+ @ADDITIONALLIBPATHS@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<NoWarn>@DISABLEDWARNINGS@</NoWarn>
- <Optimize>true</Optimize>
+ <Optimize>@OPTIMIZE@</Optimize>
<DefineConstants>@DEFINECONSTANTS@</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
+ @ADDITIONALLIBPATHS@
</PropertyGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<ItemGroup>
@@ -55,4 +57,5 @@
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
+ @RESOURCES@
</Project>