csharp_tests.csproj 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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>10.0.0</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{EA55100B-CE22-4ACD-B132-443A30896D19}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <RootNamespace>csharp_tests</RootNamespace>
  11. <AssemblyName>csharp_tests</AssemblyName>
  12. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  14. <DebugSymbols>true</DebugSymbols>
  15. <DebugType>full</DebugType>
  16. <Optimize>false</Optimize>
  17. <OutputPath>bin\Debug</OutputPath>
  18. <DefineConstants>DEBUG;</DefineConstants>
  19. <ErrorReport>prompt</ErrorReport>
  20. <WarningLevel>4</WarningLevel>
  21. <ConsolePause>false</ConsolePause>
  22. <UnitTestInformation>
  23. <UnitTestInformation />
  24. </UnitTestInformation>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <DebugType>none</DebugType>
  28. <Optimize>true</Optimize>
  29. <OutputPath>bin\Release</OutputPath>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. <ConsolePause>false</ConsolePause>
  33. </PropertyGroup>
  34. <ItemGroup>
  35. <Reference Include="System" />
  36. <Reference Include="Microsoft.CSharp" />
  37. <Reference Include="System.Xml.Linq" />
  38. <Reference Include="sccdlib">
  39. <HintPath>..\csharp_runtime\bin\Debug\sccdlib.dll</HintPath>
  40. </Reference>
  41. <Reference Include="System.Core" />
  42. <Reference Include="nunit.framework, Version=2.6.0.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77">
  43. <Private>False</Private>
  44. </Reference>
  45. <Reference Include="System.Xml" />
  46. <Reference Include="csharp_sccd_compiler">
  47. <HintPath>..\csharp_sccd_compiler\bin\Debug\csharp_sccd_compiler.dll</HintPath>
  48. </Reference>
  49. </ItemGroup>
  50. <ItemGroup>
  51. <Compile Include="Properties\AssemblyInfo.cs" />
  52. <Compile Include="CodeCompiler.cs" />
  53. <Compile Include="TestEvent.cs" />
  54. <Compile Include="TestsBase.cs" />
  55. <Compile Include="PythonTests.cs" />
  56. <Compile Include="CSharpTests.cs" />
  57. </ItemGroup>
  58. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  59. <ProjectExtensions>
  60. <MonoDevelop>
  61. <Properties>
  62. <Policies>
  63. <TextStylePolicy FileWidth="120" TabsToSpaces="False" inheritsSet="VisualStudio" inheritsScope="text/plain" scope="text/plain" />
  64. </Policies>
  65. </Properties>
  66. </MonoDevelop>
  67. </ProjectExtensions>
  68. </Project>