87 строки
5.2 KiB
XML
87 строки
5.2 KiB
XML
<Project>
|
|
<Import Project="eng\Versions.props" />
|
|
<PropertyGroup>
|
|
<_MauiDotNetVersion Condition="'$(_MauiDotNetVersion)' == ''">6.0</_MauiDotNetVersion>
|
|
<_MauiDotNetTfm Condition="'$(_MauiDotNetTfm)' == ''">net$(_MauiDotNetVersion)</_MauiDotNetTfm>
|
|
<_MauiTargetPlatformIdentifier>$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)'))</_MauiTargetPlatformIdentifier>
|
|
<_MauiNoTargetPlatform Condition="'$(_MauiTargetPlatformIdentifier)' == ''">True</_MauiNoTargetPlatform>
|
|
<_MauiTargetPlatformIsAndroid Condition="'$(_MauiTargetPlatformIdentifier)' == 'android'">True</_MauiTargetPlatformIsAndroid>
|
|
<_MauiTargetPlatformIsiOS Condition="'$(_MauiTargetPlatformIdentifier)' == 'ios'">True</_MauiTargetPlatformIsiOS>
|
|
<_MauiTargetPlatformIsMacCatalyst Condition="'$(_MauiTargetPlatformIdentifier)' == 'maccatalyst'">True</_MauiTargetPlatformIsMacCatalyst>
|
|
<_MauiTargetPlatformIsmacOS Condition="'$(_MauiTargetPlatformIdentifier)' == 'macos'">True</_MauiTargetPlatformIsmacOS>
|
|
<_MauiTargetPlatformIstvOS Condition="'$(_MauiTargetPlatformIdentifier)' == 'tvos'">True</_MauiTargetPlatformIstvOS>
|
|
<_MauiTargetPlatformIsWindows Condition="$(_MauiTargetPlatformIdentifier.Contains('windows')) == 'True'">True</_MauiTargetPlatformIsWindows>
|
|
|
|
<IncludeWindowsTargetFrameworks Condition="($([MSBuild]::IsOSPlatform('windows')) and '$(MSBuildRuntimeType)' == 'Full') or ('$(Packing)' == 'true')">true</IncludeWindowsTargetFrameworks>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
|
|
<ProduceReferenceAssembly Condition="'$(UsingMicrosoftNETSdk)' == 'True' AND '$(Configuration)' == 'Debug'">True</ProduceReferenceAssembly>
|
|
<DisableImplicitNamespaceImports>true</DisableImplicitNamespaceImports>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<MauiRootDirectory>$(MSBuildThisFileDirectory)</MauiRootDirectory>
|
|
<DotNetOutputPath>$(MSBuildThisFileDirectory)bin/</DotNetOutputPath>
|
|
<DotNetTempDirectory>$(DotNetOutputPath)temp/</DotNetTempDirectory>
|
|
<DotNetDirectory>$(DotNetOutputPath)dotnet/</DotNetDirectory>
|
|
<DotNetToolPath>$(DotNetDirectory)dotnet</DotNetToolPath>
|
|
<DotNetPacksDirectory>$(DotNetDirectory)packs/</DotNetPacksDirectory>
|
|
<DotNetLibraryPacksDirectory>$(DotNetDirectory)library-packs/</DotNetLibraryPacksDirectory>
|
|
<DotNetSdkManifestsDirectory>$(DotNetDirectory)sdk-manifests/$(DotNetVersionBand)/</DotNetSdkManifestsDirectory>
|
|
<DotNetTemplatePacksDirectory>$(DotNetDirectory)template-packs/</DotNetTemplatePacksDirectory>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<GitDefaultBranch>main</GitDefaultBranch>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<Company>Microsoft</Company>
|
|
<Product>Microsoft MAUI Graphics</Product>
|
|
<Authors>Microsoft</Authors>
|
|
<Owners>microsoft</Owners>
|
|
<NeutralLanguage>en</NeutralLanguage>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<RepositoryUrl>https://github.com/dotnet/Microsoft.Maui.Graphics.git</RepositoryUrl>
|
|
<PackageProjectUrl>https://github.com/dotnet/Microsoft.Maui.Graphics</PackageProjectUrl>
|
|
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
|
|
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
|
|
<PackageVersion>0.0.1-alpha1</PackageVersion>
|
|
<PackageOutputPath>$(MSBuildThisFileDirectory)artifacts</PackageOutputPath>
|
|
</PropertyGroup>
|
|
|
|
<!-- platform version number information -->
|
|
<PropertyGroup Condition="$(TargetFramework.Contains('-ios'))">
|
|
<SupportedOSPlatformVersion>10.0</SupportedOSPlatformVersion>
|
|
<TargetPlatformMinVersion>10.0</TargetPlatformMinVersion>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="$(TargetFramework.Contains('-tvos'))">
|
|
<SupportedOSPlatformVersion>10.0</SupportedOSPlatformVersion>
|
|
<TargetPlatformMinVersion>10.0</TargetPlatformMinVersion>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="$(TargetFramework.Contains('-maccatalyst'))">
|
|
<SupportedOSPlatformVersion>13.1</SupportedOSPlatformVersion>
|
|
<TargetPlatformMinVersion>13.1</TargetPlatformMinVersion>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="$(TargetFramework.Contains('-macos'))">
|
|
<SupportedOSPlatformVersion>10.14</SupportedOSPlatformVersion>
|
|
<TargetPlatformMinVersion>10.14</TargetPlatformMinVersion>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="$(TargetFramework.Contains('-android'))">
|
|
<SupportedOSPlatformVersion>21.0</SupportedOSPlatformVersion>
|
|
<TargetPlatformMinVersion>21.0</TargetPlatformMinVersion>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="$(TargetFramework.Contains('-windows10'))">
|
|
<SupportedOSPlatformVersion>10.0.17763.0</SupportedOSPlatformVersion>
|
|
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
|
|
</PropertyGroup>
|
|
|
|
<!-- This target is replaced by GitInfo when restored. Allows Version.targets to rely on it before restore. -->
|
|
<Target Name="GitVersion" />
|
|
<Target Name="GitInfo" />
|
|
<Import Condition="'$(EnvironmentBuildPropsImported)' != 'True'" Project="$(MSBuildThisFileDirectory)eng\Environment.Build.props" />
|
|
</Project>
|