PageRenderTime 63ms CodeModel.GetById 36ms RepoModel.GetById 0ms app.codeStats 0ms

/src/Compiler.Test/Compiler.Test.csproj

https://bitbucket.org/iano/minijava
MSBuild | 76 lines | 69 code | 0 blank | 7 comment | 0 complexity | e442976abd4e5a1ec360cdd2a2e37e2b MD5 | raw file
  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>
  7. </ProductVersion>
  8. <SchemaVersion>2.0</SchemaVersion>
  9. <ProjectGuid>{DE3CD251-E79A-45E1-978A-B01E98E26F61}</ProjectGuid>
  10. <OutputType>Library</OutputType>
  11. <AppDesignerFolder>Properties</AppDesignerFolder>
  12. <RootNamespace>MiniJava.Compiler.Test</RootNamespace>
  13. <AssemblyName>MiniJava.Compiler.Test</AssemblyName>
  14. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  15. <FileAlignment>512</FileAlignment>
  16. <ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>bin\Debug\</OutputPath>
  23. <DefineConstants>DEBUG;TRACE</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>bin\Release\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. </PropertyGroup>
  35. <ItemGroup>
  36. <Reference Include="FluentAssertions">
  37. <HintPath>..\..\tools\FluentAssertions\FluentAssertions.dll</HintPath>
  38. </Reference>
  39. <Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
  40. <Reference Include="QUT.ShiftReduceParser">
  41. <HintPath>..\..\tools\gppg-distro-1.4.5\binaries\QUT.ShiftReduceParser.dll</HintPath>
  42. </Reference>
  43. <Reference Include="System" />
  44. <Reference Include="System.Core">
  45. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  46. </Reference>
  47. </ItemGroup>
  48. <ItemGroup>
  49. <CodeAnalysisDependentAssemblyPaths Condition=" '$(VS100COMNTOOLS)' != '' " Include="$(VS100COMNTOOLS)..\IDE\PrivateAssemblies">
  50. <Visible>False</Visible>
  51. </CodeAnalysisDependentAssemblyPaths>
  52. </ItemGroup>
  53. <ItemGroup>
  54. <Compile Include="EndToEndTests.cs" />
  55. <Compile Include="Extensions.cs" />
  56. <Compile Include="ParserTests.cs" />
  57. <Compile Include="Properties\AssemblyInfo.cs" />
  58. <Compile Include="ScannerTests.cs" />
  59. <Compile Include="SemanticCheckingTests.cs" />
  60. <Compile Include="TestBase.cs" />
  61. </ItemGroup>
  62. <ItemGroup>
  63. <ProjectReference Include="..\Compiler\Compiler.csproj">
  64. <Project>{083A193B-ADAF-44B3-81F4-F7453AA9378E}</Project>
  65. <Name>Compiler</Name>
  66. </ProjectReference>
  67. </ItemGroup>
  68. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  69. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  70. Other similar extension points exist, see Microsoft.Common.targets.
  71. <Target Name="BeforeBuild">
  72. </Target>
  73. <Target Name="AfterBuild">
  74. </Target>
  75. -->
  76. </Project>