Comet/sample/Comet.Sample/Comet.Sample.csproj

51 строка
2.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net7.0-android;net7.0-ios;net7.0-maccatalyst</TargetFrameworks>
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows')) and '$(MSBuildRuntimeType)' == 'Full'">$(TargetFrameworks);net7.0-windows10.0.19041.0</TargetFrameworks>
<OutputType>Exe</OutputType>
<RootNamespace>CometSample</RootNamespace>
<SingleProject>true</SingleProject>
<IsPackable>false</IsPackable>
<UseMaui>true</UseMaui>
<EnablePreviewMsixTooling>true</EnablePreviewMsixTooling>
<!-- Display name -->
<ApplicationTitle>CometSample</ApplicationTitle>
<!-- App Identifier -->
<ApplicationId>com.companyname.CometSample</ApplicationId>
<ApplicationId Condition="$(TargetFramework.Contains('-windows'))">f6dfda62-c049-43db-a384-843c190fe298</ApplicationId>
<!-- Versions -->
<ApplicationVersion>1</ApplicationVersion>
<!-- Required for C# Hot Reload -->
<UseInterpreter Condition="'$(Configuration)' == 'Debug'">True</UseInterpreter>
<_FastDeploymentDiagnosticLogging>True</_FastDeploymentDiagnosticLogging>
<WarningsNotAsErrors>CA1416</WarningsNotAsErrors>
<NoWarn>1701;1702;0649;</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net6.0-ios|AnyCPU'">
<EnableCodeSigning>false</EnableCodeSigning>
</PropertyGroup>
<ItemGroup Condition=" $(TargetFramework.Contains('-windows')) ">
<PackageReference Include="Microsoft.WindowsAppSDK" />
</ItemGroup>
<ItemGroup>
<!-- App Icon -->
<MauiIcon Include="Resources\appicon.svg" ForegroundFile="Resources\appiconfg.svg" Color="#512BD4" />
<!-- Splash Screen -->
<MauiSplashScreen Include="Resources\appiconfg.svg" Color="#512BD4" />
<!-- Images -->
<MauiImage Include="Resources\Images\*" />
<!-- Custom Fonts -->
<MauiFont Include="Resources\Fonts\*" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Reloadify3000" Version="1.0.8" />
<ProjectReference Include="..\..\src\Comet\Comet.csproj" />
</ItemGroup>
<ProjectExtensions>
<VisualStudio>
<UserProperties XamarinHotReloadDebuggerTimeoutExceptionCometSingleProjectSampleHideInfoBar="True" />
</VisualStudio>
</ProjectExtensions>
</Project>