TestCases.csproj 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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)' == '' ">x86</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{B1C908D5-CFEE-41D7-8D5C-50D0DD697E2C}</ProjectGuid>
  9. <OutputType>Exe</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>TestCases</RootNamespace>
  12. <AssemblyName>TestCases</AssemblyName>
  13. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  14. <TargetFrameworkProfile>Client</TargetFrameworkProfile>
  15. <FileAlignment>512</FileAlignment>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  18. <PlatformTarget>x86</PlatformTarget>
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>bin\Debug\</OutputPath>
  23. <DefineConstants>TRACE;DEBUG</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  28. <PlatformTarget>x86</PlatformTarget>
  29. <DebugType>pdbonly</DebugType>
  30. <Optimize>true</Optimize>
  31. <OutputPath>bin\Release\</OutputPath>
  32. <DefineConstants>TRACE</DefineConstants>
  33. <ErrorReport>prompt</ErrorReport>
  34. <WarningLevel>4</WarningLevel>
  35. </PropertyGroup>
  36. <ItemGroup>
  37. <Reference Include="System" />
  38. <Reference Include="System.Core" />
  39. <Reference Include="System.Runtime.Serialization" />
  40. <Reference Include="System.Xml.Linq" />
  41. <Reference Include="System.Data.DataSetExtensions" />
  42. <Reference Include="Microsoft.CSharp" />
  43. <Reference Include="System.Data" />
  44. <Reference Include="System.Xml" />
  45. </ItemGroup>
  46. <ItemGroup>
  47. <Compile Include="..\PetaJson.cs">
  48. <Link>PetaJson.cs</Link>
  49. </Compile>
  50. <Compile Include="PetaTest.cs" />
  51. <Compile Include="Program.cs" />
  52. <Compile Include="Properties\AssemblyInfo.cs" />
  53. <Compile Include="TestAbstractTypes.cs" />
  54. <Compile Include="TestConcreteFromInterface.cs" />
  55. <Compile Include="TestCustomFormat.cs" />
  56. <Compile Include="TestDictionaryUtils.cs" />
  57. <Compile Include="TestNullableTypes.cs" />
  58. <Compile Include="TestOptions.cs" />
  59. <Compile Include="TestPrimitiveTypes.cs" />
  60. <Compile Include="TestReparse.cs" />
  61. <Compile Include="TestsEvents.cs" />
  62. <Compile Include="TestsGeneral.cs" />
  63. <Compile Include="TestsReflection.cs" />
  64. </ItemGroup>
  65. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  66. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  67. Other similar extension points exist, see Microsoft.Common.targets.
  68. <Target Name="BeforeBuild">
  69. </Target>
  70. <Target Name="AfterBuild">
  71. </Target>
  72. -->
  73. </Project>