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>2009-05-01 02:05:30 +0400
committerMiguel de Icaza <miguel@gnome.org>2009-05-01 02:05:30 +0400
commitd3b503d6fe802c6e664b55f9070493a6e670a724 (patch)
treee0103f810ca63e418a3296564f0cc70c8f03f444 /msvc/scripts/csproj.tmpl
parent40f1241212dcec6e3f095e81bf54dd11678192c4 (diff)
Move the scripts to a new location
svn path=/trunk/mono/; revision=133229
Diffstat (limited to 'msvc/scripts/csproj.tmpl')
-rw-r--r--msvc/scripts/csproj.tmpl56
1 files changed, 56 insertions, 0 deletions
diff --git a/msvc/scripts/csproj.tmpl b/msvc/scripts/csproj.tmpl
new file mode 100644
index 00000000000..0631c7607c4
--- /dev/null
+++ b/msvc/scripts/csproj.tmpl
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup>
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+ <ProductVersion>9.0.30729</ProductVersion>
+ <SchemaVersion>2.0</SchemaVersion>
+ <ProjectGuid>{155AEF28-C81F-405D-9072-9D52780E3E70}</ProjectGuid>
+ <OutputType>Library</OutputType>
+ <OutputPath>@OUTPUTDIR@</OutputPath>
+ <DefineConstants>@DEFINECONSTANTS@</DefineConstants>
+ <CscToolPath>@CSCTOOLPATH@</CscToolPath>
+ @NOSTDLIB@
+ @ALLOWUNSAFE@
+ <AppDesignerFolder>Properties</AppDesignerFolder>
+ <RootNamespace>mscorlib</RootNamespace>
+ <AssemblyName>@ASSEMBLYNAME@</AssemblyName>
+ <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
+ <FileAlignment>512</FileAlignment>
+ <StartupObject>
+ </StartupObject>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugSymbols>@DEBUG@</DebugSymbols>
+ <DebugType>full</DebugType>
+ <Optimize>false</Optimize>
+ <DefineConstants>@DEFINECONSTANTS@</DefineConstants>
+ <ErrorReport>prompt</ErrorReport>
+ <WarningLevel>4</WarningLevel>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>pdbonly</DebugType>
+ <Optimize>true</Optimize>
+ <DefineConstants>@DEFINECONSTANTS@</DefineConstants>
+ <ErrorReport>prompt</ErrorReport>
+ <WarningLevel>4</WarningLevel>
+ </PropertyGroup>
+ <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
+ <ItemGroup>
+@SOURCES@
+ </ItemGroup>
+ <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
+ Other similar extension points exist, see Microsoft.Common.targets.
+ <Target Name="BeforeBuild">
+ </Target>
+ <Target Name="AfterBuild">
+ </Target>
+ -->
+ <PropertyGroup>
+ <PreBuildEvent></PreBuildEvent>
+ </PropertyGroup>
+ @REFERENCES@
+ <ItemGroup>
+ <Folder Include="Properties\" />
+ </ItemGroup>
+</Project>