bbiwarg.csproj 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.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>{12271049-82D6-436D-A51E-E6614C8E9C50}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>bbiwarg</RootNamespace>
  11. <AssemblyName>bbiwarg</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <PlatformTarget>AnyCPU</PlatformTarget>
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <PlatformTarget>AnyCPU</PlatformTarget>
  27. <DebugType>pdbonly</DebugType>
  28. <Optimize>true</Optimize>
  29. <OutputPath>bin\Release\</OutputPath>
  30. <DefineConstants>TRACE</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. </PropertyGroup>
  34. <PropertyGroup>
  35. <StartupObject>
  36. </StartupObject>
  37. </PropertyGroup>
  38. <ItemGroup>
  39. <Reference Include="iisuNet, Version=3.0.0.0, Culture=neutral, processorArchitecture=x86">
  40. <SpecificVersion>False</SpecificVersion>
  41. <HintPath>lib\iisuNet.dll</HintPath>
  42. </Reference>
  43. <Reference Include="MathNet.Numerics">
  44. <HintPath>lib\MathNet.Numerics.dll</HintPath>
  45. </Reference>
  46. <Reference Include="OpenTK, Version=1.1.0.0, Culture=neutral, PublicKeyToken=bad199fe84eb3df4, processorArchitecture=MSIL">
  47. <SpecificVersion>False</SpecificVersion>
  48. <HintPath>lib\OpenTK.dll</HintPath>
  49. </Reference>
  50. <Reference Include="System" />
  51. <Reference Include="System.Core" />
  52. <Reference Include="System.Drawing" />
  53. <Reference Include="System.Xml.Linq" />
  54. <Reference Include="System.Data.DataSetExtensions" />
  55. <Reference Include="Microsoft.CSharp" />
  56. <Reference Include="System.Data" />
  57. <Reference Include="System.Xml" />
  58. </ItemGroup>
  59. <ItemGroup>
  60. <Compile Include="DataSource\ColorImage.cs" />
  61. <Compile Include="DataSource\DepthImage.cs" />
  62. <Compile Include="DataSource\IisuDataSource.cs" />
  63. <Compile Include="DataSource\IVideoDataSource.cs" />
  64. <Compile Include="Properties\AssemblyInfo.cs" />
  65. <Compile Include="Test\OutputTest.cs" />
  66. <Compile Include="Test\TestDataSource.cs" />
  67. </ItemGroup>
  68. <ItemGroup>
  69. <None Include="App.config" />
  70. </ItemGroup>
  71. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  72. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  73. Other similar extension points exist, see Microsoft.Common.targets.
  74. <Target Name="BeforeBuild">
  75. </Target>
  76. <Target Name="AfterBuild">
  77. </Target>
  78. -->
  79. </Project>