Add VS project files for test project
[mono-project.git] / msvc / scripts / csproj.tmpl
blobde2f4cca5de05a79e14e2d0cab5fb630ce0ee690
1 <?xml version="1.0" encoding="utf-8"?>
2 <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 <PropertyGroup>
4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6 <ProductVersion>9.0.30729</ProductVersion>
7 <SchemaVersion>2.0</SchemaVersion>
8 <ProjectGuid>{155AEF28-C81F-405D-9072-9D52780E3E70}</ProjectGuid>
9 <OutputType>Library</OutputType>
10 <NoWarn>@DISABLEDWARNINGS@</NoWarn>
11 <OutputPath>@OUTPUTDIR@</OutputPath>
12 @NOSTDLIB@
13 @ALLOWUNSAFE@
14 <AppDesignerFolder>Properties</AppDesignerFolder>
15 <RootNamespace></RootNamespace>
16 <AssemblyName>@ASSEMBLYNAME@</AssemblyName>
17 <TargetFrameworkVersion>v@FX_VERSION</TargetFrameworkVersion>
18 <FileAlignment>512</FileAlignment>
19 </PropertyGroup>
20 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
21 <DebugSymbols>true</DebugSymbols>
22 <DebugType>full</DebugType>
23 <NoWarn>@DISABLEDWARNINGS@</NoWarn>
24 <Optimize>false</Optimize>
25 <DefineConstants>DEBUG;TRACE;@DEFINECONSTANTS@</DefineConstants>
26 <ErrorReport>prompt</ErrorReport>
27 <WarningLevel>4</WarningLevel>
28 @ADDITIONALLIBPATHS@
29 </PropertyGroup>
30 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
31 <DebugType>pdbonly</DebugType>
32 <NoWarn>@DISABLEDWARNINGS@</NoWarn>
33 <Optimize>true</Optimize>
34 <DefineConstants>@DEFINECONSTANTS@</DefineConstants>
35 <ErrorReport>prompt</ErrorReport>
36 <WarningLevel>4</WarningLevel>
37 @ADDITIONALLIBPATHS@
38 </PropertyGroup>
39 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
40 <ItemGroup>
41 @SOURCES@
42 </ItemGroup>
43 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
44 Other similar extension points exist, see Microsoft.Common.targets.
45 <Target Name="BeforeBuild">
46 </Target>
47 <Target Name="AfterBuild">
48 </Target>
49 -->
50 <PropertyGroup>
51 <PreBuildEvent>@PREBUILD@</PreBuildEvent>
52 </PropertyGroup>
53 <ItemGroup>
54 @REFERENCES@
55 </ItemGroup>
56 <ItemGroup>
57 <Folder Include="Properties\" />
58 </ItemGroup>
59 @RESOURCES@
60 </Project>