Compare commits

...

1 Commits

@ -1,120 +1,103 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<SSDTUnitTestPath Condition="'$(SSDTUnitTestPath)' == ''">$(VsInstallRoot)\Common7\IDE\Extensions\Microsoft\SQLDB</SSDTUnitTestPath> <PropertyGroup>
</PropertyGroup>
<PropertyGroup> <!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET -->
<SSDTPath Condition="'$(SSDTPath)' == ''">$(VsInstallRoot)\Common7\IDE\Extensions\Microsoft\SQLDB\DAC</SSDTPath> <TargetFrameworks>net7.0;</TargetFrameworks>
</PropertyGroup> <TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net7.0-windows10.0.19041.0</TargetFrameworks>
<PropertyGroup> <TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('maccatalyst'))">$(TargetFrameworks);net7.0-maccatalyst</TargetFrameworks>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion> <OutputType Condition="'$(TargetFramework)' != 'net7.0'">Exe</OutputType>
</PropertyGroup> <RootNamespace>ParionsCuite</RootNamespace>
<PropertyGroup> <UseMaui>true</UseMaui>
<TargetFrameworks>net7.0-android;net7.0-ios;net7.0-maccatalyst</TargetFrameworks> <SingleProject>true</SingleProject>
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net7.0-windows10.0.19041.0</TargetFrameworks> <ImplicitUsings>enable</ImplicitUsings>
<!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET --> <!-- Display name -->
<!-- <TargetFrameworks>$(TargetFrameworks);net7.0-tizen</TargetFrameworks> --> <ApplicationTitle>ParionsCuite</ApplicationTitle>
<!--<RuntimeIdentifiers>maccatalyst-arm64</RuntimeIdentifiers>-->
<OutputType>Exe</OutputType> <!-- App Identifier -->
<RootNamespace>ParionsCuite</RootNamespace> <ApplicationId>com.companyname.parionscuite</ApplicationId>
<UseMaui>true</UseMaui> <ApplicationIdGuid>be941c7a-90b1-469a-aa20-94c786120159</ApplicationIdGuid>
<SingleProject>true</SingleProject>
<ImplicitUsings>enable</ImplicitUsings> <!-- Versions -->
<!-- Display name --> <ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
<ApplicationTitle>ParionsCuite</ApplicationTitle> <ApplicationVersion>1</ApplicationVersion>
<!-- App Identifier -->
<ApplicationId>com.companyname.parionscuite</ApplicationId> <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">11.0</SupportedOSPlatformVersion>
<ApplicationIdGuid>be941c7a-90b1-469a-aa20-94c786120159</ApplicationIdGuid> <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">13.1</SupportedOSPlatformVersion>
<!-- Versions --> <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion>
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion> <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion>
<ApplicationVersion>1</ApplicationVersion> <TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">11.0</SupportedOSPlatformVersion> <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">13.1</SupportedOSPlatformVersion> </PropertyGroup>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion> <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net7.0-ios|AnyCPU'">
<TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion> <CreatePackage>false</CreatePackage>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion> </PropertyGroup>
</PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|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)'=='Debug|net7.0-maccatalyst|AnyCPU'">
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net7.0-ios|AnyCPU'"> <CreatePackage>false</CreatePackage>
<CreatePackage>false</CreatePackage> </PropertyGroup>
</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" />
<!-- Splash Screen --> <!-- Splash Screen -->
<MauiSplashScreen Include="Resources\Splash\splash.svg" Color="#512BD4" BaseSize="128,128" /> <MauiSplashScreen Include="Resources\Splash\splash.svg" Color="#512BD4" BaseSize="128,128" />
<!-- Images -->
<MauiImage Include="Resources\Images\*" /> <!-- Images -->
<MauiImage Update="Resources\Images\dotnet_bot.svg" BaseSize="168,208" /> <MauiImage Include="Resources\Images\*" />
<!-- Custom Fonts --> <MauiImage Update="Resources\Images\dotnet_bot.svg" BaseSize="168,208" />
<MauiFont Include="Resources\Fonts\*" />
<!-- Raw Assets (also remove the "Resources\Raw" prefix) --> <!-- Custom Fonts -->
<MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" /> <MauiFont Include="Resources\Fonts\*" />
</ItemGroup>
<ItemGroup> <!-- Raw Assets (also remove the "Resources\Raw" prefix) -->
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="7.0.0" /> <MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<MauiXaml Update="Views\Accueil.xaml"> <ItemGroup>
<Generator>MSBuild:Compile</Generator> <PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="7.0.0" />
</MauiXaml> </ItemGroup>
<MauiXaml Update="Views\Groupe.xaml">
<Generator>MSBuild:Compile</Generator> <ItemGroup>
</MauiXaml> <MauiXaml Update="Views\Accueil.xaml">
<MauiXaml Update="Views\Information\Info.xaml"> <Generator>MSBuild:Compile</Generator>
<Generator>MSBuild:Compile</Generator> </MauiXaml>
</MauiXaml> <MauiXaml Update="Views\Groupe.xaml">
<MauiXaml Update="Views\Invite\Inviter.xaml"> <Generator>MSBuild:Compile</Generator>
<Generator>MSBuild:Compile</Generator> </MauiXaml>
</MauiXaml> <MauiXaml Update="Views\Information\Info.xaml">
<MauiXaml Update="Views\Pari\Parier.xaml"> <Generator>MSBuild:Compile</Generator>
<Generator>MSBuild:Compile</Generator> </MauiXaml>
</MauiXaml> <MauiXaml Update="Views\Invite\Inviter.xaml">
</ItemGroup> <Generator>MSBuild:Compile</Generator>
<ItemGroup> </MauiXaml>
<None Remove="Resources\Images\fleches.png" /> <MauiXaml Update="Views\Pari\Parier.xaml">
<None Remove="Views\Ajout_Paris\" /> <Generator>MSBuild:Compile</Generator>
<None Remove="Views\Participations\" /> </MauiXaml>
<None Remove="Views\Participations\Autre\" /> </ItemGroup>
<None Remove="Views\Participations\Boisson\" />
<None Remove="Modeles\" /> <ItemGroup>
<None Remove="Stub\" /> <None Remove="Resources\Images\fleches.png" />
<None Remove="Test\" /> <None Remove="Views\Ajout_Paris\" />
</ItemGroup> <None Remove="Views\Participations\" />
<ItemGroup> <None Remove="Views\Participations\Autre\" />
<BundleResource Include="Resources\Images\fleches.png" /> <None Remove="Views\Participations\Boisson\" />
</ItemGroup> <None Remove="Modeles\" />
<ItemGroup> </ItemGroup>
<EmbeddedResource Include="Resources\Images\fleches.png" /> <ItemGroup>
</ItemGroup> <BundleResource Include="Resources\Images\fleches.png" />
<ItemGroup> </ItemGroup>
<Folder Include="Views\Ajout_Paris\" /> <ItemGroup>
<Folder Include="Views\Participations\" /> <EmbeddedResource Include="Resources\Images\fleches.png" />
<Folder Include="Views\Participations\Autre\" /> </ItemGroup>
<Folder Include="Views\Participations\Boisson\" /> <ItemGroup>
<Folder Include="Modeles\" /> <Folder Include="Views\Ajout_Paris\" />
<Folder Include="Stub\" /> <Folder Include="Views\Participations\" />
</ItemGroup> <Folder Include="Views\Participations\Autre\" />
<ItemGroup /> <Folder Include="Views\Participations\Boisson\" />
<ItemGroup Condition="$(VisualStudioVersion) == '17.0'"> <Folder Include="Modeles\" />
<Reference Include="Microsoft.Data.Tools.Schema.Sql, Version=16.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"> </ItemGroup>
<HintPath>$(SSDTPath)\Microsoft.Data.Tools.Schema.Sql.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Microsoft.Data.Tools.Schema.Sql.UnitTesting, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>$(SSDTUnitTestPath)\Microsoft.Data.Tools.Schema.Sql.UnitTesting.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Microsoft.Data.Tools.Schema.Sql.UnitTestingAdapter, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>$(SSDTUnitTestPath)\Microsoft.Data.Tools.Schema.Sql.UnitTestingAdapter.dll</HintPath>
<Private>True</Private>
</Reference>
</ItemGroup>
<PropertyGroup>
<SsdtUnitTestVersion>3.1</SsdtUnitTestVersion>
</PropertyGroup>
<Import Project="$(SQLDBExtensionsRefPath)\Microsoft.Data.Tools.Schema.Sql.UnitTesting.targets" Condition="$(VisualStudioVersion) != '15.0' And '$(SQLDBExtensionsRefPath)' != ''" />
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\SSDT\Microsoft.Data.Tools.Schema.Sql.UnitTesting.targets" Condition="$(VisualStudioVersion) != '15.0' And '$(SQLDBExtensionsRefPath)' == ''" />
</Project> </Project>
Loading…
Cancel
Save