ABTest.csproj 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{6ACEB053-125E-4C17-9515-16B2776274F7}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>ABTest</RootNamespace>
  11. <AssemblyName>ABTest</AssemblyName>
  12. <TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  15. <PublishUrl>publish\</PublishUrl>
  16. <Install>true</Install>
  17. <InstallFrom>Disk</InstallFrom>
  18. <UpdateEnabled>false</UpdateEnabled>
  19. <UpdateMode>Foreground</UpdateMode>
  20. <UpdateInterval>7</UpdateInterval>
  21. <UpdateIntervalUnits>Days</UpdateIntervalUnits>
  22. <UpdatePeriodically>false</UpdatePeriodically>
  23. <UpdateRequired>false</UpdateRequired>
  24. <MapFileExtensions>true</MapFileExtensions>
  25. <ApplicationRevision>0</ApplicationRevision>
  26. <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
  27. <IsWebBootstrapper>false</IsWebBootstrapper>
  28. <UseApplicationTrust>false</UseApplicationTrust>
  29. <BootstrapperEnabled>true</BootstrapperEnabled>
  30. </PropertyGroup>
  31. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  32. <PlatformTarget>x86</PlatformTarget>
  33. <DebugSymbols>true</DebugSymbols>
  34. <DebugType>full</DebugType>
  35. <Optimize>false</Optimize>
  36. <OutputPath>bin\Debug\</OutputPath>
  37. <DefineConstants>DEBUG;TRACE</DefineConstants>
  38. <ErrorReport>prompt</ErrorReport>
  39. <WarningLevel>4</WarningLevel>
  40. </PropertyGroup>
  41. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  42. <PlatformTarget>x86</PlatformTarget>
  43. <DebugType>pdbonly</DebugType>
  44. <Optimize>true</Optimize>
  45. <OutputPath>bin\Release\</OutputPath>
  46. <DefineConstants>TRACE</DefineConstants>
  47. <ErrorReport>prompt</ErrorReport>
  48. <WarningLevel>4</WarningLevel>
  49. <UseVSHostingProcess>true</UseVSHostingProcess>
  50. </PropertyGroup>
  51. <PropertyGroup>
  52. <StartupObject>ABTest.Program</StartupObject>
  53. </PropertyGroup>
  54. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Demo|AnyCPU'">
  55. <OutputPath>bin\Demo\</OutputPath>
  56. <DefineConstants>TRACE</DefineConstants>
  57. <Optimize>true</Optimize>
  58. <DebugType>pdbonly</DebugType>
  59. <PlatformTarget>AnyCPU</PlatformTarget>
  60. <ErrorReport>prompt</ErrorReport>
  61. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  62. <Prefer32Bit>true</Prefer32Bit>
  63. </PropertyGroup>
  64. <ItemGroup>
  65. <Reference Include="Microsoft.Xna.Framework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=x86" />
  66. <Reference Include="System" />
  67. <Reference Include="System.Core" />
  68. <Reference Include="System.Xml.Linq" />
  69. <Reference Include="System.Data.DataSetExtensions" />
  70. <Reference Include="Microsoft.CSharp" />
  71. <Reference Include="System.Data" />
  72. <Reference Include="System.Net.Http" />
  73. <Reference Include="System.Xml" />
  74. </ItemGroup>
  75. <ItemGroup>
  76. <Compile Include="OctTree.cs" />
  77. <Compile Include="MiniPoint3.cs" />
  78. <Compile Include="Point3.cs" />
  79. <Compile Include="Program.cs" />
  80. <Compile Include="Properties\AssemblyInfo.cs" />
  81. <Compile Include="IntegerBoundingBox.cs" />
  82. <Compile Include="SparseVoxelTree-Levels.cs" />
  83. <Compile Include="SparseVoxelTree.cs" />
  84. </ItemGroup>
  85. <ItemGroup>
  86. <None Include="App.config" />
  87. </ItemGroup>
  88. <ItemGroup>
  89. <BootstrapperPackage Include=".NETFramework,Version=v4.5.2">
  90. <Visible>False</Visible>
  91. <ProductName>Microsoft .NET Framework 4.5.2 %28x86 and x64%29</ProductName>
  92. <Install>true</Install>
  93. </BootstrapperPackage>
  94. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
  95. <Visible>False</Visible>
  96. <ProductName>.NET Framework 3.5 SP1</ProductName>
  97. <Install>false</Install>
  98. </BootstrapperPackage>
  99. </ItemGroup>
  100. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  101. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  102. Other similar extension points exist, see Microsoft.Common.targets.
  103. <Target Name="BeforeBuild">
  104. </Target>
  105. <Target Name="AfterBuild">
  106. </Target>
  107. -->
  108. </Project>