2020-11-27 01:08:18 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<Project>
|
2022-09-27 14:22:34 +02:00
|
|
|
<PropertyGroup>
|
2022-10-05 12:14:43 +02:00
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
2022-11-22 12:48:11 +01:00
|
|
|
<LangVersion>latest</LangVersion>
|
2022-09-27 14:22:34 +02:00
|
|
|
<Company>Umbraco HQ</Company>
|
|
|
|
|
<Authors>Umbraco</Authors>
|
|
|
|
|
<Copyright>Copyright © Umbraco $([System.DateTime]::Today.ToString('yyyy'))</Copyright>
|
|
|
|
|
<Product>Umbraco CMS</Product>
|
|
|
|
|
<PackageProjectUrl>https://umbraco.com/</PackageProjectUrl>
|
|
|
|
|
<PackageIconUrl>https://umbraco.com/dist/nuget/logo-small.png</PackageIconUrl>
|
|
|
|
|
<PackageIcon>icon.png</PackageIcon>
|
|
|
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
|
|
|
<PackageTags>umbraco</PackageTags>
|
|
|
|
|
<NeutralLanguage>en-US</NeutralLanguage>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<WarningsAsErrors>nullable</WarningsAsErrors>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<!-- SourceLink -->
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
|
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
|
|
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
|
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<!-- Package Validation -->
|
|
|
|
|
<PropertyGroup>
|
2022-11-14 12:40:06 +01:00
|
|
|
<GenerateCompatibilitySuppressionFile>false</GenerateCompatibilitySuppressionFile>
|
2022-09-27 14:22:34 +02:00
|
|
|
<EnablePackageValidation>true</EnablePackageValidation>
|
2023-07-06 07:51:49 +02:00
|
|
|
<PackageValidationBaselineVersion>12.0.0</PackageValidationBaselineVersion>
|
2022-09-27 14:22:34 +02:00
|
|
|
<EnableStrictModeForCompatibleFrameworksInPackage>true</EnableStrictModeForCompatibleFrameworksInPackage>
|
|
|
|
|
<EnableStrictModeForCompatibleTfms>true</EnableStrictModeForCompatibleTfms>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2022-06-20 08:37:17 +02:00
|
|
|
<ItemGroup>
|
2022-09-27 14:22:34 +02:00
|
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="all" IsImplicitlyDefined="true" />
|
|
|
|
|
<PackageReference Include="Nerdbank.GitVersioning" Version="3.5.113" PrivateAssets="all" IsImplicitlyDefined="true" />
|
|
|
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.406" PrivateAssets="all" IsImplicitlyDefined="true" />
|
|
|
|
|
<PackageReference Include="Umbraco.Code" Version="2.0.0" PrivateAssets="all" IsImplicitlyDefined="true" />
|
2022-11-22 12:48:11 +01:00
|
|
|
<PackageReference Include="Umbraco.GitVersioning.Extensions" Version="0.2.0" PrivateAssets="all" IsImplicitlyDefined="true" />
|
2022-06-20 08:37:17 +02:00
|
|
|
</ItemGroup>
|
2022-05-19 10:25:44 +01:00
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-09-27 14:22:34 +02:00
|
|
|
<Content Include="$(MSBuildThisFileDirectory)icon.png" Pack="true" PackagePath="" Visible="false" />
|
2022-05-19 10:25:44 +01:00
|
|
|
</ItemGroup>
|
2022-10-05 12:14:43 +02:00
|
|
|
|
2022-10-03 16:10:22 +02:00
|
|
|
<PropertyGroup>
|
|
|
|
|
<GitVersionBaseDirectory>$(MSBuildThisFileDirectory)</GitVersionBaseDirectory>
|
|
|
|
|
</PropertyGroup>
|
2020-11-27 01:08:18 +00:00
|
|
|
</Project>
|