mirror of
https://github.com/chylex/.NET-Community-Toolkit.git
synced 2024-11-23 22:42:47 +01:00
40 lines
1.5 KiB
XML
40 lines
1.5 KiB
XML
<Project>
|
|
|
|
<PropertyGroup>
|
|
<Company>Microsoft</Company>
|
|
<Authors>Microsoft</Authors>
|
|
<Product>.NET Community Toolkit (chylex version)</Product>
|
|
<CommonTags>dotnet;Community;Toolkit</CommonTags>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
|
|
<Copyright>(c) .NET Foundation and Contributors. All rights reserved.</Copyright>
|
|
<PackageProjectUrl>https://github.com/CommunityToolkit/dotnet</PackageProjectUrl>
|
|
<PackageReleaseNotes>https://github.com/CommunityToolkit/dotnet/releases</PackageReleaseNotes>
|
|
<PackageIcon>Icon.png</PackageIcon>
|
|
<PackageIconUrl>https://raw.githubusercontent.com/CommunityToolkit/dotnet/main/build/nuget.png</PackageIconUrl>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<LangVersion>10.0</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<SignAssembly>true</SignAssembly>
|
|
<AssemblyOriginatorKeyFile>$(RepositoryDirectory)toolkit.snk</AssemblyOriginatorKeyFile>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<IsTestProject>$(MSBuildProjectName.Contains('Test'))</IsTestProject>
|
|
<IsCoreProject Condition="$(IsTestProject)">False</IsCoreProject>
|
|
<IsCoreProject Condition="'$(IsCoreProject)' == ''">True</IsCoreProject>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<IsPackable>true</IsPackable>
|
|
<IsPublishable>true</IsPublishable>
|
|
<ContinuousIntegrationBuild>$(TF_BUILD)</ContinuousIntegrationBuild>
|
|
</PropertyGroup>
|
|
|
|
</Project> |