/src/manostool/manostool.csproj

http://github.com/jacksonh/manos · MSBuild · 69 lines · 69 code · 0 blank · 0 comment · 4 complexity · 935fc53adb77a871570335d44624a5d6 MD5 · raw file

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="4.0" 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.21022</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{482384E3-EB97-4A8E-9ED9-EACC31350B5E}</ProjectGuid>
  9. <OutputType>Exe</OutputType>
  10. <RootNamespace>manostool</RootNamespace>
  11. <AssemblyName>manostool</AssemblyName>
  12. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  13. </PropertyGroup>
  14. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  15. <DebugSymbols>true</DebugSymbols>
  16. <DebugType>full</DebugType>
  17. <Optimize>false</Optimize>
  18. <OutputPath>..\..\build\</OutputPath>
  19. <DefineConstants>DEBUG</DefineConstants>
  20. <ErrorReport>prompt</ErrorReport>
  21. <WarningLevel>4</WarningLevel>
  22. <Commandlineparameters>-data-dir=../../../../../data/</Commandlineparameters>
  23. <GenerateDocumentation>true</GenerateDocumentation>
  24. <NoWarn>1591</NoWarn>
  25. <PlatformTarget>x86</PlatformTarget>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <DebugType>none</DebugType>
  29. <Optimize>false</Optimize>
  30. <OutputPath>..\..\build\</OutputPath>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. <GenerateDocumentation>true</GenerateDocumentation>
  34. <NoWarn>1591</NoWarn>
  35. <PlatformTarget>x86</PlatformTarget>
  36. </PropertyGroup>
  37. <ItemGroup>
  38. <Reference Include="System" />
  39. <Reference Include="System.Core" />
  40. <Reference Include="Mono.Posix" />
  41. </ItemGroup>
  42. <ItemGroup>
  43. <Compile Include="Driver.cs" />
  44. <Compile Include="Options.cs" />
  45. <Compile Include="InitCommand.cs" />
  46. <Compile Include="Environment.cs" />
  47. <Compile Include="ServerCommand.cs" />
  48. <Compile Include="DocsCommand.cs" />
  49. <Compile Include="DocsModule.cs" />
  50. <Compile Include="Markdown.cs" />
  51. <Compile Include="BuildCommand.cs" />
  52. <Compile Include="RunCommand.cs" />
  53. <Compile Include="Loader.cs" />
  54. </ItemGroup>
  55. <ItemGroup>
  56. <ProjectReference Include="..\Manos\Manos.csproj">
  57. <Project>{2548B25A-2E1F-4E21-BC43-7E39B1F6F23F}</Project>
  58. <Name>Manos</Name>
  59. </ProjectReference>
  60. <ProjectReference Include="..\Manos.IO\Manos.IO.csproj">
  61. <Project>{5E2AA984-1C9C-4890-BEF6-CC2981C49AFF}</Project>
  62. <Name>Manos.IO</Name>
  63. </ProjectReference>
  64. </ItemGroup>
  65. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  66. <Target Name="ListSources">
  67. <Message Text="@(Compile)" Importance="High" />
  68. </Target>
  69. </Project>