2023-04-21 07:18:09 -04:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
|
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
|
|
|
<ProjectGuid>{4B7D33C6-5D38-49F9-B860-D133255627DA}</ProjectGuid>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
<RootNamespace>JeuHoy_WPF_Natif</RootNamespace>
|
|
|
|
|
<AssemblyName>JeuHoy_WPF_Natif</AssemblyName>
|
|
|
|
|
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
|
|
|
|
|
<FileAlignment>512</FileAlignment>
|
|
|
|
|
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
|
|
|
|
<Deterministic>true</Deterministic>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
<Optimize>false</Optimize>
|
|
|
|
|
<OutputPath>bin\Debug\</OutputPath>
|
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
<OutputPath>bin\Release\</OutputPath>
|
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Reference Include="Microsoft.Kinect, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
|
|
|
|
<HintPath>..\packages\Microsoft.Kinect.2.0.1410.19000\lib\net45\Microsoft.Kinect.dll</HintPath>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="System" />
|
|
|
|
|
<Reference Include="System.Data" />
|
|
|
|
|
<Reference Include="System.Xml" />
|
|
|
|
|
<Reference Include="Microsoft.CSharp" />
|
|
|
|
|
<Reference Include="System.Core" />
|
|
|
|
|
<Reference Include="System.Xml.Linq" />
|
|
|
|
|
<Reference Include="System.Data.DataSetExtensions" />
|
|
|
|
|
<Reference Include="System.Net.Http" />
|
|
|
|
|
<Reference Include="System.Xaml">
|
|
|
|
|
<RequiredTargetFramework>4.0</RequiredTargetFramework>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="WindowsBase" />
|
|
|
|
|
<Reference Include="PresentationCore" />
|
|
|
|
|
<Reference Include="PresentationFramework" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ApplicationDefinition Include="App.xaml">
|
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
</ApplicationDefinition>
|
|
|
|
|
<Compile Include="AssemblyInfo.cs" />
|
2023-05-03 09:23:43 -04:00
|
|
|
|
<Compile Include="Model\CstApplication.cs" />
|
2023-05-03 11:01:22 -04:00
|
|
|
|
<Compile Include="Model\GestionFichiersSorties.cs" />
|
|
|
|
|
<Compile Include="Model\IGestionFichiers.cs" />
|
2023-05-03 10:51:31 -04:00
|
|
|
|
<Compile Include="Model\Perceptron.cs" />
|
|
|
|
|
<Compile Include="Model\GestionPerceptrons.cs" />
|
2023-05-03 11:11:55 -04:00
|
|
|
|
<Compile Include="Model\ROGER.cs" />
|
2023-05-03 10:51:31 -04:00
|
|
|
|
<Compile Include="Model\Squelette.cs" />
|
2023-05-03 10:55:18 -04:00
|
|
|
|
<Compile Include="Model\GestionWEntrainement.cs" />
|
2023-05-03 09:23:43 -04:00
|
|
|
|
<Compile Include="Presenter\JouerMp3.cs" />
|
|
|
|
|
<Compile Include="Presenter\JouerSon.cs" />
|
2023-04-21 07:18:09 -04:00
|
|
|
|
<Compile Include="App.xaml.cs">
|
|
|
|
|
<DependentUpon>App.xaml</DependentUpon>
|
|
|
|
|
<SubType>Code</SubType>
|
|
|
|
|
</Compile>
|
2023-05-03 10:55:18 -04:00
|
|
|
|
<Compile Include="Presenter\PresentateurWEntrainement.cs" />
|
|
|
|
|
<Compile Include="View\IwEntrainement.cs" />
|
2023-05-03 09:23:43 -04:00
|
|
|
|
<Compile Include="View\wAide.xaml.cs">
|
2023-04-21 07:18:09 -04:00
|
|
|
|
<DependentUpon>wAide.xaml</DependentUpon>
|
|
|
|
|
</Compile>
|
2023-05-03 09:23:43 -04:00
|
|
|
|
<Compile Include="View\wEntrainement.xaml.cs">
|
2023-04-21 07:18:09 -04:00
|
|
|
|
<DependentUpon>wEntrainement.xaml</DependentUpon>
|
|
|
|
|
</Compile>
|
2023-05-03 09:23:43 -04:00
|
|
|
|
<Compile Include="View\wEntree.xaml.cs">
|
2023-04-21 07:18:09 -04:00
|
|
|
|
<DependentUpon>wEntree.xaml</DependentUpon>
|
|
|
|
|
</Compile>
|
2023-05-03 09:23:43 -04:00
|
|
|
|
<Compile Include="View\wJeu.xaml.cs">
|
2023-04-21 07:18:09 -04:00
|
|
|
|
<DependentUpon>wJeu.xaml</DependentUpon>
|
|
|
|
|
</Compile>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="Properties\AssemblyInfo.cs">
|
|
|
|
|
<SubType>Code</SubType>
|
|
|
|
|
</Compile>
|
|
|
|
|
<Compile Include="Properties\Resources.Designer.cs">
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
|
|
|
</Compile>
|
|
|
|
|
<Compile Include="Properties\Settings.Designer.cs">
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
<DependentUpon>Settings.settings</DependentUpon>
|
|
|
|
|
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
|
|
|
|
</Compile>
|
|
|
|
|
<EmbeddedResource Include="Properties\Resources.resx">
|
|
|
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
|
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
<None Include="packages.config" />
|
|
|
|
|
<None Include="Properties\Settings.settings">
|
|
|
|
|
<Generator>SettingsSingleFileGenerator</Generator>
|
|
|
|
|
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Include="App.config" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Resource Include="Resources\fondjeu.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="HoyContent\etoiles.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="HoyContent\fig1.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="HoyContent\fig10.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="HoyContent\fig2.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="HoyContent\fig3.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="HoyContent\fig4.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="HoyContent\fig5.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="HoyContent\fig6.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="HoyContent\fig7.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="HoyContent\fig8.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="HoyContent\fig9.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="HoyContent\fighoy.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="HoyContent\fond.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="HoyContent\Game.ico">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Content Include="HoyContent\hooy.wav">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Include="HoyContent\hoy.wav">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Resource Include="HoyContent\Intro.jpg">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Content Include="HoyContent\Intro.mp3">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Resource Include="HoyContent\titrehoy.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="HoyContent\tuto.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="HoyContent\téléchargement.jpg">
|
2023-05-03 09:23:43 -04:00
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
2023-04-21 07:18:09 -04:00
|
|
|
|
</Resource>
|
|
|
|
|
<Content Include="HoyContent\zik.wav">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Resource Include="Resources\Actions-application-exit-icon.png">
|
2023-05-03 09:23:43 -04:00
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
2023-04-21 07:18:09 -04:00
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="Resources\Aide.png">
|
2023-05-03 09:23:43 -04:00
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
2023-04-21 07:18:09 -04:00
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="Resources\AideDessus.png">
|
2023-05-03 09:23:43 -04:00
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
2023-04-21 07:18:09 -04:00
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="Resources\AideDessus1234.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="Resources\AideTuto.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="Resources\edit_undo.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="Resources\Entrainement.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="Resources\EntrainementDessus.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="Resources\etoiles.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="Resources\fig1.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="Resources\fig10.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="Resources\fig2.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="Resources\fig3.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="Resources\fig4.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="Resources\fig5.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="Resources\fig6.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="Resources\fig7.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="Resources\fig8.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="Resources\fig9.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="Resources\fighoy.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="Resources\fond.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="Resources\FondEntree.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="Resources\Intro.jpg">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="Resources\JouerDessus.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="Resources\JouerHoy.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="Resources\Kim.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="Resources\titrehoy.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="Resources\tuto.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Resource>
|
|
|
|
|
<Resource Include="Resources\téléchargement.jpg">
|
2023-05-03 09:23:43 -04:00
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
2023-04-21 07:18:09 -04:00
|
|
|
|
</Resource>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2023-05-03 09:23:43 -04:00
|
|
|
|
<Page Include="View\wAide.xaml">
|
2023-04-21 07:18:09 -04:00
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
</Page>
|
2023-05-03 09:23:43 -04:00
|
|
|
|
<Page Include="View\wEntrainement.xaml">
|
2023-04-21 07:18:09 -04:00
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
</Page>
|
2023-05-03 09:23:43 -04:00
|
|
|
|
<Page Include="View\wEntree.xaml">
|
2023-04-21 07:18:09 -04:00
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
</Page>
|
2023-05-03 09:23:43 -04:00
|
|
|
|
<Page Include="View\wJeu.xaml">
|
2023-04-21 07:18:09 -04:00
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
</Page>
|
|
|
|
|
</ItemGroup>
|
2023-05-03 10:08:00 -04:00
|
|
|
|
<ItemGroup />
|
2023-04-21 07:18:09 -04:00
|
|
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
|
|
|
</Project>
|