diff --git a/Sources/KinectSolution.sln b/Sources/KinectSolution.sln new file mode 100644 index 0000000..d187b5e --- /dev/null +++ b/Sources/KinectSolution.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.8.34330.188 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WpfApp", "WpfApp\WpfApp.csproj", "{A5F0635D-16DD-4866-B48E-4E06ADFEEE92}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lib", "Lib\Lib.csproj", "{0751C83E-7845-4E5F-A5D3-E11ABA393ACA}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A5F0635D-16DD-4866-B48E-4E06ADFEEE92}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A5F0635D-16DD-4866-B48E-4E06ADFEEE92}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A5F0635D-16DD-4866-B48E-4E06ADFEEE92}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A5F0635D-16DD-4866-B48E-4E06ADFEEE92}.Release|Any CPU.Build.0 = Release|Any CPU + {0751C83E-7845-4E5F-A5D3-E11ABA393ACA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0751C83E-7845-4E5F-A5D3-E11ABA393ACA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0751C83E-7845-4E5F-A5D3-E11ABA393ACA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0751C83E-7845-4E5F-A5D3-E11ABA393ACA}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {9EB7877A-8182-4040-939C-E0B134C4A74F} + EndGlobalSection +EndGlobal diff --git a/Sources/Lib/Class1.cs b/Sources/Lib/Class1.cs new file mode 100644 index 0000000..dfbc46b --- /dev/null +++ b/Sources/Lib/Class1.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Lib +{ + public class Class1 + { + } +} diff --git a/Sources/Lib/Lib.csproj b/Sources/Lib/Lib.csproj new file mode 100644 index 0000000..12682ba --- /dev/null +++ b/Sources/Lib/Lib.csproj @@ -0,0 +1,54 @@ + + + + + Debug + AnyCPU + 0751c83e-7845-4e5f-a5d3-e11aba393aca + Library + Properties + Lib + Lib + v4.7.2 + 512 + true + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Sources/Lib/Properties/AssemblyInfo.cs b/Sources/Lib/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..3631b9a --- /dev/null +++ b/Sources/Lib/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// Les informations générales relatives à un assembly dépendent de +// l'ensemble d'attributs suivant. Changez les valeurs de ces attributs pour modifier les informations +// associées à un assembly. +[assembly: AssemblyTitle("Lib")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Lib")] +[assembly: AssemblyCopyright("Copyright © 2024")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// L'affectation de la valeur false à ComVisible rend les types invisibles dans cet assembly +// aux composants COM. Si vous devez accéder à un type dans cet assembly à partir de +// COM, affectez la valeur true à l'attribut ComVisible sur ce type. +[assembly: ComVisible(false)] + +// Le GUID suivant est pour l'ID de la typelib si ce projet est exposé à COM +[assembly: Guid("0751c83e-7845-4e5f-a5d3-e11aba393aca")] + +// Les informations de version pour un assembly se composent des quatre valeurs suivantes : +// +// Version principale +// Version secondaire +// Numéro de build +// Révision +// +// Vous pouvez spécifier toutes les valeurs ou indiquer les numéros de build et de révision par défaut +// en utilisant '*', comme indiqué ci-dessous : +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Sources/WpfApp/App.config b/Sources/WpfApp/App.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/Sources/WpfApp/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Sources/WpfApp/App.xaml b/Sources/WpfApp/App.xaml new file mode 100644 index 0000000..c41b4bf --- /dev/null +++ b/Sources/WpfApp/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/Sources/WpfApp/App.xaml.cs b/Sources/WpfApp/App.xaml.cs new file mode 100644 index 0000000..ebc8edd --- /dev/null +++ b/Sources/WpfApp/App.xaml.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Threading.Tasks; +using System.Windows; + +namespace WpfApp +{ + /// + /// Logique d'interaction pour App.xaml + /// + public partial class App : Application + { + } +} diff --git a/Sources/WpfApp/MainWindow.xaml b/Sources/WpfApp/MainWindow.xaml new file mode 100644 index 0000000..5e4a5e2 --- /dev/null +++ b/Sources/WpfApp/MainWindow.xaml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + +