DiffIKDemo.csproj 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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>{888C8680-636D-414A-9991-C7637912ED14}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <RootNamespace>DiffIKDemo</RootNamespace>
  10. <AssemblyName>DiffIKDemo</AssemblyName>
  11. <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  14. <Deterministic>true</Deterministic>
  15. </PropertyGroup>
  16. <PropertyGroup>
  17. <StartupObject />
  18. </PropertyGroup>
  19. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
  20. <DebugSymbols>true</DebugSymbols>
  21. <OutputPath>Bin\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <DebugType>full</DebugType>
  24. <PlatformTarget>x64</PlatformTarget>
  25. <LangVersion>7.3</LangVersion>
  26. <ErrorReport>prompt</ErrorReport>
  27. <Prefer32Bit>true</Prefer32Bit>
  28. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  29. </PropertyGroup>
  30. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
  31. <OutputPath>Bin\</OutputPath>
  32. <DefineConstants>TRACE</DefineConstants>
  33. <DebugType>pdbonly</DebugType>
  34. <PlatformTarget>x64</PlatformTarget>
  35. <LangVersion>7.3</LangVersion>
  36. <ErrorReport>prompt</ErrorReport>
  37. <Prefer32Bit>true</Prefer32Bit>
  38. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  39. </PropertyGroup>
  40. <ItemGroup>
  41. <Reference Include="AI.Common, Version=1.0.1.22, Culture=neutral, processorArchitecture=AMD64">
  42. <SpecificVersion>False</SpecificVersion>
  43. <HintPath>Bin\AI.Common.dll</HintPath>
  44. </Reference>
  45. <Reference Include="ImageShowUtilsLib, Version=1.0.0.0, Culture=neutral, processorArchitecture=AMD64">
  46. <SpecificVersion>False</SpecificVersion>
  47. <HintPath>Bin\ImageShowUtilsLib.dll</HintPath>
  48. </Reference>
  49. <Reference Include="PresentationCore" />
  50. <Reference Include="PresentationFramework" />
  51. <Reference Include="System" />
  52. <Reference Include="System.Core" />
  53. <Reference Include="System.Windows.Forms" />
  54. <Reference Include="System.Xaml" />
  55. <Reference Include="System.Xml.Linq" />
  56. <Reference Include="System.Data.DataSetExtensions" />
  57. <Reference Include="Microsoft.CSharp" />
  58. <Reference Include="System.Data" />
  59. <Reference Include="System.Net.Http" />
  60. <Reference Include="System.Xml" />
  61. <Reference Include="WindowsBase" />
  62. </ItemGroup>
  63. <ItemGroup>
  64. <Compile Include="App.xaml.cs">
  65. <DependentUpon>App.xaml</DependentUpon>
  66. </Compile>
  67. <Compile Include="Properties\AssemblyInfo.cs" />
  68. <Compile Include="MainWindow.xaml.cs">
  69. <DependentUpon>MainWindow.xaml</DependentUpon>
  70. </Compile>
  71. <Compile Include="WatermarkTextBox.cs" />
  72. </ItemGroup>
  73. <ItemGroup>
  74. <ApplicationDefinition Include="App.xaml">
  75. <SubType>Designer</SubType>
  76. <Generator>MSBuild:Compile</Generator>
  77. </ApplicationDefinition>
  78. <Page Include="MainWindow.xaml">
  79. <SubType>Designer</SubType>
  80. <Generator>MSBuild:Compile</Generator>
  81. </Page>
  82. </ItemGroup>
  83. <ItemGroup>
  84. <None Include="App.config" />
  85. </ItemGroup>
  86. <ItemGroup>
  87. <ProjectReference Include="..\..\..\..\RUSCommon\RUS.Common\RUS.Common.csproj">
  88. <Project>{fee12542-eb0d-47c7-aa81-f2ba4e3d531b}</Project>
  89. <Name>RUS.Common</Name>
  90. </ProjectReference>
  91. <ProjectReference Include="..\..\..\..\RUSTasks\TaskKinematics\Kinematics\KinematicsLib.csproj">
  92. <Project>{e59d4f05-4ef3-4706-86d3-aa953282c32a}</Project>
  93. <Name>KinematicsLib</Name>
  94. </ProjectReference>
  95. <ProjectReference Include="..\..\..\..\RUSTasks\TaskRobotModule\RobotMotionControl\RobotMotionControl.csproj">
  96. <Project>{7b455abd-3e2d-486d-971a-ad4d28621aff}</Project>
  97. <Name>RobotMotionControl</Name>
  98. </ProjectReference>
  99. </ItemGroup>
  100. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  101. <PropertyGroup>
  102. <PreBuildEvent>xcopy "$(ProjectDir)Depends\*.*" "$(TargetDir)" /h /y /c
  103. xcopy "$(ProjectDir)..\..\..\..\AIDepends\*.*" "$(TargetDir)" /h /y /c
  104. xcopy "$(ProjectDir)..\..\..\..\RUSTasks\TaskRobotModule\Depends\*.*" "$(TargetDir)" /h /y /c</PreBuildEvent>
  105. </PropertyGroup>
  106. </Project>