fix-references
Nicolas FRANCO 1 year ago
parent 9fe32d0955
commit 8d44a1a03a

@ -1,8 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KinectConnection
{

@ -1,13 +1,9 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KinectConnection
{
/// <summary>
/// The infrared image stream .
/// The infrared image stream.
/// </summary>
public class InfraredImageStream : KinectStream
{

@ -77,10 +77,10 @@
<ItemGroup>
<Compile Include="ColorImageStream.cs" />
<Compile Include="DepthImageStream.cs" />
<Compile Include="InfraredImgaeStream.cs" />
<Compile Include="InfraredImageStream.cs" />
<Compile Include="KinectManager.cs" />
<Compile Include="KinectStream.cs" />
<Compile Include="KinectStreams.cs" />
<Compile Include="enums\KinectStreams.cs" />
<Compile Include="KinectStreamsFactory.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
@ -88,9 +88,7 @@
<None Include="app.config" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<Folder Include="NewFolder1\" />
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="..\packages\CommunityToolkit.Mvvm.8.2.2\build\netstandard2.0\CommunityToolkit.Mvvm.targets" Condition="Exists('..\packages\CommunityToolkit.Mvvm.8.2.2\build\netstandard2.0\CommunityToolkit.Mvvm.targets')" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">

@ -1,13 +1,5 @@
using CommunityToolkit.Mvvm.ComponentModel;
using Microsoft.Kinect;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Resources;
using System.Security.Policy;
using System.Text;
using System.Threading.Tasks;
namespace KinectConnection
{

@ -1,9 +1,4 @@
using Microsoft.Kinect;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KinectConnection
{

@ -1,9 +1,6 @@
using KinectConnection.enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KinectConnection
{

@ -1,5 +1,4 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// Les informations générales relatives à un assembly dépendent de

@ -1,10 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KinectConnection.enums
namespace KinectConnection.enums
{
/// <summary>
/// The kinect streams enum.

@ -1,13 +1,4 @@
using KinectSensorStreams.View;
using KinectSensorStreams.ViewModel;
using Microsoft.Extensions.DependencyInjection;
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
using System.Windows;
namespace KinectSensorStreams
{

@ -1,9 +1,4 @@
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Globalization;
using System.Windows.Data;
using System.Windows.Media;

@ -1,17 +1,5 @@
using KinectSensorStreams.ViewModel;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace KinectSensorStreams.View
{

@ -1,14 +1,6 @@
using CommunityToolkit.Mvvm.ComponentModel;
using CommunityToolkit.Mvvm.Input;
using CommunityToolkit.Mvvm.Input;
using KinectConnection;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Input;
using System.Windows.Media;
namespace KinectSensorStreams.ViewModel
{
@ -33,7 +25,7 @@ namespace KinectSensorStreams.ViewModel
/// <summary>
/// Constructeur du ViewModel de la page principale
/// </summary>
public MainWindowVM()
public MainWindowVM()
{
KinectManager = new KinectManager();
StartCommand = new RelayCommand(Start);

Loading…
Cancel
Save