SketchAssistantWPF.csproj 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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>{EE53AE79-2AA0-4F43-9638-1789B189D5C3}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <RootNamespace>SketchAssistantWPF</RootNamespace>
  10. <AssemblyName>SketchAssistantWPF</AssemblyName>
  11. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  14. <WarningLevel>4</WarningLevel>
  15. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  16. <Deterministic>true</Deterministic>
  17. <NuGetPackageImportStamp>
  18. </NuGetPackageImportStamp>
  19. <PublishUrl>publish\</PublishUrl>
  20. <Install>true</Install>
  21. <InstallFrom>Disk</InstallFrom>
  22. <UpdateEnabled>false</UpdateEnabled>
  23. <UpdateMode>Foreground</UpdateMode>
  24. <UpdateInterval>7</UpdateInterval>
  25. <UpdateIntervalUnits>Days</UpdateIntervalUnits>
  26. <UpdatePeriodically>false</UpdatePeriodically>
  27. <UpdateRequired>false</UpdateRequired>
  28. <MapFileExtensions>true</MapFileExtensions>
  29. <ApplicationRevision>0</ApplicationRevision>
  30. <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
  31. <IsWebBootstrapper>false</IsWebBootstrapper>
  32. <UseApplicationTrust>false</UseApplicationTrust>
  33. <BootstrapperEnabled>true</BootstrapperEnabled>
  34. </PropertyGroup>
  35. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  36. <PlatformTarget>AnyCPU</PlatformTarget>
  37. <DebugSymbols>true</DebugSymbols>
  38. <DebugType>full</DebugType>
  39. <Optimize>false</Optimize>
  40. <OutputPath>bin\Debug\</OutputPath>
  41. <DefineConstants>DEBUG;TRACE</DefineConstants>
  42. <ErrorReport>prompt</ErrorReport>
  43. <WarningLevel>4</WarningLevel>
  44. </PropertyGroup>
  45. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  46. <PlatformTarget>AnyCPU</PlatformTarget>
  47. <DebugType>pdbonly</DebugType>
  48. <Optimize>true</Optimize>
  49. <OutputPath>bin\Release\</OutputPath>
  50. <DefineConstants>TRACE</DefineConstants>
  51. <ErrorReport>prompt</ErrorReport>
  52. <WarningLevel>4</WarningLevel>
  53. </PropertyGroup>
  54. <ItemGroup>
  55. <Reference Include="System" />
  56. <Reference Include="System.Data" />
  57. <Reference Include="System.Drawing" />
  58. <Reference Include="System.Xml" />
  59. <Reference Include="Microsoft.CSharp" />
  60. <Reference Include="System.Core" />
  61. <Reference Include="System.Xml.Linq" />
  62. <Reference Include="System.Data.DataSetExtensions" />
  63. <Reference Include="System.Net.Http" />
  64. <Reference Include="System.Xaml">
  65. <RequiredTargetFramework>4.0</RequiredTargetFramework>
  66. </Reference>
  67. <Reference Include="WindowsBase" />
  68. <Reference Include="PresentationCore" />
  69. <Reference Include="PresentationFramework" />
  70. </ItemGroup>
  71. <ItemGroup>
  72. <ApplicationDefinition Include="App.xaml">
  73. <Generator>MSBuild:Compile</Generator>
  74. <SubType>Designer</SubType>
  75. </ApplicationDefinition>
  76. <Compile Include="ActionHistory.cs" />
  77. <Compile Include="CustomCanvas.cs" />
  78. <Compile Include="DebugData.cs" />
  79. <Compile Include="FileImporter.cs" />
  80. <Compile Include="FileImporterException.cs" />
  81. <Compile Include="Frame.cs" />
  82. <Compile Include="GeometryCalculator.cs" />
  83. <Compile Include="HighPerformanceTimer.cs" />
  84. <Compile Include="ImageDimension.cs" />
  85. <Compile Include="OptiTrackConnector.cs" />
  86. <Compile Include="SketchAction.cs" />
  87. <Page Include="MainWindow.xaml">
  88. <Generator>MSBuild:Compile</Generator>
  89. <SubType>Designer</SubType>
  90. </Page>
  91. <Compile Include="App.xaml.cs">
  92. <DependentUpon>App.xaml</DependentUpon>
  93. <SubType>Code</SubType>
  94. </Compile>
  95. <Compile Include="InternalLine.cs" />
  96. <Compile Include="MainWindow.xaml.cs">
  97. <DependentUpon>MainWindow.xaml</DependentUpon>
  98. <SubType>Code</SubType>
  99. </Compile>
  100. </ItemGroup>
  101. <ItemGroup>
  102. <Compile Include="MVP_Model.cs" />
  103. <Compile Include="MVP_Presenter.cs" />
  104. <Compile Include="MVP_View.cs" />
  105. <Compile Include="Properties\AssemblyInfo.cs">
  106. <SubType>Code</SubType>
  107. </Compile>
  108. <Compile Include="Properties\Resources.Designer.cs">
  109. <AutoGen>True</AutoGen>
  110. <DesignTime>True</DesignTime>
  111. <DependentUpon>Resources.resx</DependentUpon>
  112. </Compile>
  113. <Compile Include="Properties\Settings.Designer.cs">
  114. <AutoGen>True</AutoGen>
  115. <DependentUpon>Settings.settings</DependentUpon>
  116. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  117. </Compile>
  118. <EmbeddedResource Include="Properties\Resources.resx">
  119. <Generator>ResXFileCodeGenerator</Generator>
  120. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  121. </EmbeddedResource>
  122. <None Include="optitrack_setup.ttp">
  123. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  124. </None>
  125. <None Include="Properties\Settings.settings">
  126. <Generator>SettingsSingleFileGenerator</Generator>
  127. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  128. </None>
  129. </ItemGroup>
  130. <ItemGroup>
  131. <None Include="App.config" />
  132. </ItemGroup>
  133. <ItemGroup>
  134. <BootstrapperPackage Include=".NETFramework,Version=v4.6.1">
  135. <Visible>False</Visible>
  136. <ProductName>Microsoft .NET Framework 4.6.1 %28x86 and x64%29</ProductName>
  137. <Install>true</Install>
  138. </BootstrapperPackage>
  139. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
  140. <Visible>False</Visible>
  141. <ProductName>.NET Framework 3.5 SP1</ProductName>
  142. <Install>false</Install>
  143. </BootstrapperPackage>
  144. </ItemGroup>
  145. <ItemGroup>
  146. <Content Include="NPTrackingTools.dll">
  147. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  148. </Content>
  149. </ItemGroup>
  150. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  151. </Project>