VisualMath.csproj 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" 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>{C928168B-F32C-4801-AC1C-BD2583191C7B}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>VisualMath</RootNamespace>
  11. <AssemblyName>VisualMath</AssemblyName>
  12. <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <Deterministic>true</Deterministic>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  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. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  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. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  34. </PropertyGroup>
  35. <ItemGroup>
  36. <Reference Include="AForge">
  37. <HintPath>Externals\AForge.dll</HintPath>
  38. </Reference>
  39. <Reference Include="AForge.Imaging">
  40. <HintPath>Externals\AForge.Imaging.dll</HintPath>
  41. </Reference>
  42. <Reference Include="AForge.Math">
  43. <HintPath>Externals\AForge.Math.dll</HintPath>
  44. </Reference>
  45. <Reference Include="System" />
  46. <Reference Include="System.Core" />
  47. <Reference Include="System.Drawing" />
  48. <Reference Include="System.Xml.Linq" />
  49. <Reference Include="System.Data.DataSetExtensions" />
  50. <Reference Include="Microsoft.CSharp" />
  51. <Reference Include="System.Data" />
  52. <Reference Include="System.Net.Http" />
  53. <Reference Include="System.Xml" />
  54. </ItemGroup>
  55. <ItemGroup>
  56. <Compile Include="Accord\Imaging\CorrelationMatching.cs" />
  57. <Compile Include="Accord\Imaging\Filters\Blend.cs" />
  58. <Compile Include="Accord\Imaging\Filters\Concatenate.cs" />
  59. <Compile Include="Accord\Imaging\Filters\PairsMarker.cs" />
  60. <Compile Include="Accord\Imaging\Filters\PointsMarker.cs" />
  61. <Compile Include="Accord\Imaging\Filters\RectanglesMarker.cs" />
  62. <Compile Include="Accord\Imaging\HarrisCornersDetector.cs" />
  63. <Compile Include="Accord\Imaging\MatrixH.cs" />
  64. <Compile Include="Accord\Imaging\PointH.cs" />
  65. <Compile Include="Accord\Imaging\RansacHomographyEstimator.cs" />
  66. <Compile Include="Accord\Imaging\Tools.cs" />
  67. <Compile Include="Accord\MachineLearning\Ransac.cs" />
  68. <Compile Include="Accord\Math\Decompositions\CholeskyDecomposition.cs" />
  69. <Compile Include="Accord\Math\Decompositions\EigenvalueDecomposition.cs" />
  70. <Compile Include="Accord\Math\Decompositions\GeneralizedEigenvalueDecomposition.cs" />
  71. <Compile Include="Accord\Math\Decompositions\LuDecomposition.cs" />
  72. <Compile Include="Accord\Math\Decompositions\QrDecomposition.cs" />
  73. <Compile Include="Accord\Math\Decompositions\SingularValueDecomposition.cs" />
  74. <Compile Include="Accord\Math\Distance.cs" />
  75. <Compile Include="Accord\Math\Matrix.cs" />
  76. <Compile Include="Accord\Math\Norm.cs" />
  77. <Compile Include="Accord\Math\Special.cs" />
  78. <Compile Include="Accord\Math\Tools.cs" />
  79. <Compile Include="Accord\Statistics\Tools.cs" />
  80. <Compile Include="Properties\AssemblyInfo.cs" />
  81. <Compile Include="Tools.cs" />
  82. </ItemGroup>
  83. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  84. </Project>