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