Final Appli

master
Fages Tony 2 years ago committed by thomas muzard
parent 61ad118bbf
commit b37c99fcb7

@ -5,10 +5,9 @@ VisualStudioVersion = 17.0.31611.283
MinimumVisualStudioVersion = 10.0.40219.1 MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ParionsCuite", "ParionsCuite\ParionsCuite.csproj", "{695ECD3A-15DB-4B29-BC9D-E8CC87D92900}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ParionsCuite", "ParionsCuite\ParionsCuite.csproj", "{695ECD3A-15DB-4B29-BC9D-E8CC87D92900}"
EndProject EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Modele", "Modele", "{02D846AB-B58D-4FDD-9895-E07929FE8A95}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Modeles", "Modeles\Modeles.csproj", "{F96C29D3-33A7-4230-A1C7-799114865D52}"
ProjectSection(SolutionItems) = preProject EndProject
Manager.cs = Manager.cs Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestParionsCuite", "TestParionsCuite\TestParionsCuite.csproj", "{0978D34C-3D5E-4863-B40C-55A38C6A2BBE}"
EndProjectSection
EndProject EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
@ -22,6 +21,14 @@ Global
{695ECD3A-15DB-4B29-BC9D-E8CC87D92900}.Release|Any CPU.ActiveCfg = Release|Any CPU {695ECD3A-15DB-4B29-BC9D-E8CC87D92900}.Release|Any CPU.ActiveCfg = Release|Any CPU
{695ECD3A-15DB-4B29-BC9D-E8CC87D92900}.Release|Any CPU.Build.0 = Release|Any CPU {695ECD3A-15DB-4B29-BC9D-E8CC87D92900}.Release|Any CPU.Build.0 = Release|Any CPU
{695ECD3A-15DB-4B29-BC9D-E8CC87D92900}.Release|Any CPU.Deploy.0 = Release|Any CPU {695ECD3A-15DB-4B29-BC9D-E8CC87D92900}.Release|Any CPU.Deploy.0 = Release|Any CPU
{F96C29D3-33A7-4230-A1C7-799114865D52}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F96C29D3-33A7-4230-A1C7-799114865D52}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F96C29D3-33A7-4230-A1C7-799114865D52}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F96C29D3-33A7-4230-A1C7-799114865D52}.Release|Any CPU.Build.0 = Release|Any CPU
{0978D34C-3D5E-4863-B40C-55A38C6A2BBE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0978D34C-3D5E-4863-B40C-55A38C6A2BBE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0978D34C-3D5E-4863-B40C-55A38C6A2BBE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0978D34C-3D5E-4863-B40C-55A38C6A2BBE}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection EndGlobalSection
GlobalSection(SolutionProperties) = preSolution GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE HideSolutionNode = FALSE

@ -71,7 +71,7 @@
<!-- 2e ligne --> <!-- 2e ligne -->
<Grid Grid.Row="1"> <Grid Grid.Row="1">
<ContentView> <ContentView>
<info:Info/> <pari:Parier/>
</ContentView> </ContentView>
</Grid> </Grid>

@ -0,0 +1,14 @@
using System;
namespace ParionsCuite.Modeles
{
public class Autre
{
public string Nom { get; set; }
public decimal Quantite { get; set; }
public Autre()
{
}
}
}

@ -0,0 +1,17 @@
using System;
namespace ParionsCuite.Modeles
{
internal class Boissons
{
public string Nom { get; set; }
public decimal Quantite { get; set; }
public Boissons()
{
}
}
}

@ -0,0 +1,16 @@
using System;
namespace ParionsCuite.Modeles
{
internal class Inviter
{
public string Nom;
public string Prenom;
public Inviter()
{
}
}
}

@ -0,0 +1,14 @@
using System;
namespace ParionsCuite.Modeles
{
public class Nourriture
{
public string Nom { get; set; }
public decimal Quantite { get; set; }
public Nourriture()
{
}
}
}

@ -33,6 +33,9 @@
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net7.0-ios|AnyCPU'"> <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net7.0-ios|AnyCPU'">
<CreatePackage>false</CreatePackage> <CreatePackage>false</CreatePackage>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net7.0-ios|AnyCPU'">
<CreatePackage>false</CreatePackage>
</PropertyGroup>
<ItemGroup> <ItemGroup>
<!-- App Icon --> <!-- App Icon -->
<MauiIcon Include="Resources\AppIcon\appicon.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg" Color="#512BD4" /> <MauiIcon Include="Resources\AppIcon\appicon.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg" Color="#512BD4" />
@ -79,6 +82,7 @@
<None Remove="Views\Participations\" /> <None Remove="Views\Participations\" />
<None Remove="Views\Participations\Autre\" /> <None Remove="Views\Participations\Autre\" />
<None Remove="Views\Participations\Boisson\" /> <None Remove="Views\Participations\Boisson\" />
<None Remove="Modeles\" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<BundleResource Include="Resources\Images\fleches.png" /> <BundleResource Include="Resources\Images\fleches.png" />
@ -91,5 +95,6 @@
<Folder Include="Views\Participations\" /> <Folder Include="Views\Participations\" />
<Folder Include="Views\Participations\Autre\" /> <Folder Include="Views\Participations\Autre\" />
<Folder Include="Views\Participations\Boisson\" /> <Folder Include="Views\Participations\Boisson\" />
<Folder Include="Modeles\" />
</ItemGroup> </ItemGroup>
</Project> </Project>

Loading…
Cancel
Save