VisualMath.csproj 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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>{C3C44B5B-6588-4A61-8DBC-63CA885970B7}</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>false</Deterministic>
  15. <TargetFrameworkProfile />
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>..\bin\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>bin\Release\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  35. </PropertyGroup>
  36. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
  37. <DebugSymbols>true</DebugSymbols>
  38. <OutputPath>bin\x86\Debug\</OutputPath>
  39. <DefineConstants>DEBUG;TRACE</DefineConstants>
  40. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  41. <DebugType>full</DebugType>
  42. <PlatformTarget>x86</PlatformTarget>
  43. <LangVersion>7.3</LangVersion>
  44. <ErrorReport>prompt</ErrorReport>
  45. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  46. </PropertyGroup>
  47. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
  48. <OutputPath>bin\x86\Release\</OutputPath>
  49. <DefineConstants>TRACE</DefineConstants>
  50. <Optimize>true</Optimize>
  51. <DebugType>pdbonly</DebugType>
  52. <PlatformTarget>x86</PlatformTarget>
  53. <LangVersion>7.3</LangVersion>
  54. <ErrorReport>prompt</ErrorReport>
  55. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  56. </PropertyGroup>
  57. <ItemGroup>
  58. <Reference Include="AForge">
  59. <HintPath>Externals\AForge.dll</HintPath>
  60. </Reference>
  61. <Reference Include="AForge.Imaging">
  62. <HintPath>Externals\AForge.Imaging.dll</HintPath>
  63. </Reference>
  64. <Reference Include="AForge.Math">
  65. <HintPath>Externals\AForge.Math.dll</HintPath>
  66. </Reference>
  67. <Reference Include="PaintDotNet.Base, Version=1.0.7907.24561, Culture=neutral, processorArchitecture=MSIL">
  68. <SpecificVersion>False</SpecificVersion>
  69. <HintPath>..\bin\Debug\PaintDotNet.Base.dll</HintPath>
  70. </Reference>
  71. <Reference Include="System" />
  72. <Reference Include="System.Core" />
  73. <Reference Include="System.Drawing" />
  74. <Reference Include="System.Windows.Forms" />
  75. <Reference Include="System.Xml.Linq" />
  76. <Reference Include="System.Data.DataSetExtensions" />
  77. <Reference Include="Microsoft.CSharp" />
  78. <Reference Include="System.Data" />
  79. <Reference Include="System.Net.Http" />
  80. <Reference Include="System.Xml" />
  81. </ItemGroup>
  82. <ItemGroup>
  83. <Compile Include="Accord\Imaging\CorrelationMatching.cs" />
  84. <Compile Include="Accord\Imaging\Filters\Blend.cs" />
  85. <Compile Include="Accord\Imaging\Filters\Concatenate.cs" />
  86. <Compile Include="Accord\Imaging\Filters\PairsMarker.cs" />
  87. <Compile Include="Accord\Imaging\Filters\PointsMarker.cs" />
  88. <Compile Include="Accord\Imaging\Filters\RectanglesMarker.cs" />
  89. <Compile Include="Accord\Imaging\HarrisCornersDetector.cs" />
  90. <Compile Include="Accord\Imaging\MatrixH.cs" />
  91. <Compile Include="Accord\Imaging\PointH.cs" />
  92. <Compile Include="Accord\Imaging\RansacHomographyEstimator.cs" />
  93. <Compile Include="Accord\Imaging\Tools.cs" />
  94. <Compile Include="Accord\MachineLearning\Ransac.cs" />
  95. <Compile Include="Accord\Math\Decompositions\CholeskyDecomposition.cs" />
  96. <Compile Include="Accord\Math\Decompositions\EigenvalueDecomposition.cs" />
  97. <Compile Include="Accord\Math\Decompositions\GeneralizedEigenvalueDecomposition.cs" />
  98. <Compile Include="Accord\Math\Decompositions\LuDecomposition.cs" />
  99. <Compile Include="Accord\Math\Decompositions\QrDecomposition.cs" />
  100. <Compile Include="Accord\Math\Decompositions\SingularValueDecomposition.cs" />
  101. <Compile Include="Accord\Math\Distance.cs" />
  102. <Compile Include="Accord\Math\Matrix.cs" />
  103. <Compile Include="Accord\Math\Norm.cs" />
  104. <Compile Include="Accord\Math\Special.cs" />
  105. <Compile Include="Accord\Math\Tools.cs" />
  106. <Compile Include="Accord\Statistics\Tools.cs" />
  107. <Compile Include="Tools.cs" />
  108. <Compile Include="Properties\AssemblyInfo.cs" />
  109. </ItemGroup>
  110. <ItemGroup />
  111. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  112. </Project>