SketchAssistantWPF.csproj 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="..\packages\ReportGenerator.4.0.14\build\netstandard2.0\ReportGenerator.props" Condition="Exists('..\packages\ReportGenerator.4.0.14\build\netstandard2.0\ReportGenerator.props')" />
  4. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  5. <PropertyGroup>
  6. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  7. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  8. <ProjectGuid>{EE53AE79-2AA0-4F43-9638-1789B189D5C3}</ProjectGuid>
  9. <OutputType>WinExe</OutputType>
  10. <RootNamespace>SketchAssistantWPF</RootNamespace>
  11. <AssemblyName>SketchAssistantWPF</AssemblyName>
  12. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  15. <WarningLevel>4</WarningLevel>
  16. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  17. <Deterministic>true</Deterministic>
  18. <NuGetPackageImportStamp>
  19. </NuGetPackageImportStamp>
  20. <IsWebBootstrapper>false</IsWebBootstrapper>
  21. <PublishUrl>publish\</PublishUrl>
  22. <Install>true</Install>
  23. <InstallFrom>Disk</InstallFrom>
  24. <UpdateEnabled>false</UpdateEnabled>
  25. <UpdateMode>Foreground</UpdateMode>
  26. <UpdateInterval>7</UpdateInterval>
  27. <UpdateIntervalUnits>Days</UpdateIntervalUnits>
  28. <UpdatePeriodically>false</UpdatePeriodically>
  29. <UpdateRequired>false</UpdateRequired>
  30. <MapFileExtensions>true</MapFileExtensions>
  31. <ApplicationRevision>0</ApplicationRevision>
  32. <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
  33. <UseApplicationTrust>false</UseApplicationTrust>
  34. <BootstrapperEnabled>true</BootstrapperEnabled>
  35. </PropertyGroup>
  36. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  37. <PlatformTarget>x86</PlatformTarget>
  38. <DebugSymbols>true</DebugSymbols>
  39. <DebugType>full</DebugType>
  40. <Optimize>false</Optimize>
  41. <OutputPath>bin\Debug\</OutputPath>
  42. <DefineConstants>DEBUG;TRACE</DefineConstants>
  43. <ErrorReport>prompt</ErrorReport>
  44. <WarningLevel>4</WarningLevel>
  45. </PropertyGroup>
  46. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  47. <PlatformTarget>AnyCPU</PlatformTarget>
  48. <DebugType>pdbonly</DebugType>
  49. <Optimize>true</Optimize>
  50. <OutputPath>bin\Release\</OutputPath>
  51. <DefineConstants>TRACE</DefineConstants>
  52. <ErrorReport>prompt</ErrorReport>
  53. <WarningLevel>4</WarningLevel>
  54. </PropertyGroup>
  55. <ItemGroup>
  56. <Reference Include="System" />
  57. <Reference Include="System.Data" />
  58. <Reference Include="System.Drawing" />
  59. <Reference Include="System.Xml" />
  60. <Reference Include="Microsoft.CSharp" />
  61. <Reference Include="System.Core" />
  62. <Reference Include="System.Xml.Linq" />
  63. <Reference Include="System.Data.DataSetExtensions" />
  64. <Reference Include="System.Net.Http" />
  65. <Reference Include="System.Xaml">
  66. <RequiredTargetFramework>4.0</RequiredTargetFramework>
  67. </Reference>
  68. <Reference Include="WindowsBase" />
  69. <Reference Include="PresentationCore" />
  70. <Reference Include="PresentationFramework" />
  71. </ItemGroup>
  72. <ItemGroup>
  73. <ApplicationDefinition Include="App.xaml">
  74. <Generator>MSBuild:Compile</Generator>
  75. <SubType>Designer</SubType>
  76. </ApplicationDefinition>
  77. <Compile Include="ActionHistory.cs" />
  78. <Compile Include="LocalArmbandInterface.cs" />
  79. <Compile Include="CustomCanvas.cs" />
  80. <Compile Include="DebugData.cs" />
  81. <Compile Include="FileImporter.cs" />
  82. <Compile Include="FileImporterException.cs" />
  83. <Compile Include="GeometryCalculator.cs" />
  84. <Compile Include="ImageDimension.cs" />
  85. <Compile Include="SketchAction.cs" />
  86. <Page Include="MainWindow.xaml">
  87. <Generator>MSBuild:Compile</Generator>
  88. <SubType>Designer</SubType>
  89. </Page>
  90. <Compile Include="App.xaml.cs">
  91. <DependentUpon>App.xaml</DependentUpon>
  92. <SubType>Code</SubType>
  93. </Compile>
  94. <Compile Include="InternalLine.cs" />
  95. <Compile Include="MainWindow.xaml.cs">
  96. <DependentUpon>MainWindow.xaml</DependentUpon>
  97. <SubType>Code</SubType>
  98. </Compile>
  99. </ItemGroup>
  100. <ItemGroup>
  101. <Compile Include="MVP_Model.cs" />
  102. <Compile Include="MVP_Presenter.cs" />
  103. <Compile Include="MVP_View.cs" />
  104. <Compile Include="Properties\AssemblyInfo.cs">
  105. <SubType>Code</SubType>
  106. </Compile>
  107. <Compile Include="Properties\Resources.Designer.cs">
  108. <AutoGen>True</AutoGen>
  109. <DesignTime>True</DesignTime>
  110. <DependentUpon>Resources.resx</DependentUpon>
  111. </Compile>
  112. <Compile Include="Properties\Settings.Designer.cs">
  113. <AutoGen>True</AutoGen>
  114. <DependentUpon>Settings.settings</DependentUpon>
  115. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  116. </Compile>
  117. <EmbeddedResource Include="Properties\Resources.resx">
  118. <Generator>ResXFileCodeGenerator</Generator>
  119. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  120. </EmbeddedResource>
  121. <None Include="packages.config" />
  122. <None Include="Properties\Settings.settings">
  123. <Generator>SettingsSingleFileGenerator</Generator>
  124. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  125. </None>
  126. </ItemGroup>
  127. <ItemGroup>
  128. <None Include="App.config" />
  129. </ItemGroup>
  130. <ItemGroup>
  131. <BootstrapperPackage Include=".NETFramework,Version=v4.6.1">
  132. <Visible>False</Visible>
  133. <ProductName>Microsoft .NET Framework 4.6.1 %28x86 and x64%29</ProductName>
  134. <Install>true</Install>
  135. </BootstrapperPackage>
  136. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
  137. <Visible>False</Visible>
  138. <ProductName>.NET Framework 3.5 SP1</ProductName>
  139. <Install>false</Install>
  140. </BootstrapperPackage>
  141. </ItemGroup>
  142. <ItemGroup>
  143. <Content Include="BodyActuator.dll">
  144. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  145. </Content>
  146. <Content Include="eai_common.dll">
  147. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  148. </Content>
  149. <Content Include="eai_serial.dll">
  150. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  151. </Content>
  152. <Content Include="eai_winbluetooth.dll">
  153. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  154. </Content>
  155. <Content Include="eai_winusb.dll">
  156. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  157. </Content>
  158. <Content Include="StaticLibMotors.dll">
  159. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  160. </Content>
  161. <Content Include="TActionManager.dll">
  162. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  163. </Content>
  164. <Content Include="TactorInterface.dll">
  165. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  166. </Content>
  167. </ItemGroup>
  168. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  169. <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  170. <PropertyGroup>
  171. <ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
  172. </PropertyGroup>
  173. <Error Condition="!Exists('..\packages\ReportGenerator.4.0.14\build\netstandard2.0\ReportGenerator.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\ReportGenerator.4.0.14\build\netstandard2.0\ReportGenerator.props'))" />
  174. </Target>
  175. </Project>