csproj.tmpl 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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>@PROJECTGUID@</ProjectGuid>
  9. <OutputType>@OUTPUTTYPE@</OutputType>
  10. <NoWarn>@DISABLEDWARNINGS@</NoWarn>
  11. <OutputPath>@OUTPUTDIR@</OutputPath>
  12. <IntermediateOutputPath>obj-@OUTPUTSUFFIX@</IntermediateOutputPath>
  13. <GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
  14. @NOSTDLIB@
  15. @STARTUPOBJECT@
  16. @NOCONFIG@
  17. @ALLOWUNSAFE@
  18. <AppDesignerFolder>Properties</AppDesignerFolder>
  19. <RootNamespace>
  20. </RootNamespace>
  21. <AssemblyName>@ASSEMBLYNAME@</AssemblyName>
  22. <TargetFrameworkVersion>v@FX_VERSION</TargetFrameworkVersion>
  23. <FileAlignment>512</FileAlignment>
  24. </PropertyGroup>
  25. @SIGNATURE@
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  27. <DebugSymbols>true</DebugSymbols>
  28. <DebugType>full</DebugType>
  29. <NoWarn>@DISABLEDWARNINGS@</NoWarn>
  30. <Optimize>false</Optimize>
  31. <DefineConstants>TRACE;@DEFINECONSTANTS@</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. </PropertyGroup>
  35. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  36. <DebugType>pdbonly</DebugType>
  37. <NoWarn>@DISABLEDWARNINGS@</NoWarn>
  38. <Optimize>true</Optimize>
  39. <DefineConstants>@DEFINECONSTANTS@</DefineConstants>
  40. <ErrorReport>prompt</ErrorReport>
  41. <WarningLevel>4</WarningLevel>
  42. </PropertyGroup>
  43. <!-- Set AddAdditionalExplicitAssemblyReferences to false, otherwise if targetting .NET4.0,
  44. Microsoft.NETFramework.props will force a dependency on the assembly System.Core. This
  45. is a problem to compile the Mono mscorlib.dll -->
  46. <PropertyGroup>
  47. <AddAdditionalExplicitAssemblyReferences>false</AddAdditionalExplicitAssemblyReferences>
  48. </PropertyGroup>
  49. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  50. <ItemGroup>
  51. @SOURCES@ </ItemGroup>
  52. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  53. Other similar extension points exist, see Microsoft.Common.targets.
  54. <Target Name="BeforeBuild">
  55. </Target>
  56. <Target Name="AfterBuild">
  57. </Target>
  58. -->
  59. <PropertyGroup>
  60. @PREBUILD@
  61. @POSTBUILD@
  62. </PropertyGroup>
  63. <ItemGroup>
  64. @REFERENCES@ </ItemGroup>
  65. <ItemGroup>
  66. <Folder Include="Properties\" />
  67. </ItemGroup>
  68. @RESOURCES@</Project>