You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
2.4 KiB
47 lines
2.4 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFrameworks Condition=" '$(SupportsWindowsTargeting)' == 'true' ">net10.0-windows10.0.19041</TargetFrameworks>
|
|
<TargetFrameworks Condition=" '$(SupportsIOSTargeting)' == 'true' ">$(TargetFrameworks);net10.0-ios</TargetFrameworks>
|
|
<TargetFrameworks Condition=" '$(SupportsMacCatalystTargeting)' == 'true' ">$(TargetFrameworks);net10.0-maccatalyst</TargetFrameworks>
|
|
<UseMaui Condition=" '$(TargetFrameworks)' != '' ">true</UseMaui>
|
|
<TargetFrameworks Condition=" '$(TargetFrameworks)' == '' ">net10.0</TargetFrameworks>
|
|
<SingleProject>true</SingleProject>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<ApplicationTitle>OpenIddict.Sandbox.Maui.Client</ApplicationTitle>
|
|
<ApplicationId>com.openiddict.sandbox.maui.client</ApplicationId>
|
|
<ApplicationDisplayVersion>$(Version)</ApplicationDisplayVersion>
|
|
<ApplicationVersion>$(Version)</ApplicationVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\OpenIddict.Client.SystemIntegration\OpenIddict.Client.SystemIntegration.csproj" />
|
|
<ProjectReference Include="..\..\src\OpenIddict.Client.SystemNetHttp\OpenIddict.Client.SystemNetHttp.csproj" />
|
|
<ProjectReference Include="..\..\src\OpenIddict.Client.WebIntegration\OpenIddict.Client.WebIntegration.csproj" />
|
|
<ProjectReference Include="..\..\src\OpenIddict.EntityFrameworkCore\OpenIddict.EntityFrameworkCore.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" />
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition=" '$(TargetPlatformIdentifier)' != '' ">
|
|
<PackageReference Include="Microsoft.Maui.Controls" />
|
|
<PackageReference Include="Microsoft.Maui.Controls.Compatibility" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<MauiIcon Include="Resources\AppIcon\appicon.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg" Color="#512BD4" />
|
|
<MauiSplashScreen Include="Resources\Splash\splash.svg" Color="#512BD4" BaseSize="128,128" />
|
|
<MauiImage Include="Resources\Images\*" />
|
|
<MauiImage Update="Resources\Images\dotnet_bot.svg" BaseSize="168,208" />
|
|
<MauiFont Include="Resources\Fonts\*" />
|
|
<MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" />
|
|
<MauiXaml Remove="**\*.xaml" Condition=" '$(TargetPlatformIdentifier)' == '' " />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|