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>
|
2023-07-05 13:13:52 +02:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<LangVersion>11.0</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>
|
|
|
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
|
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<!-- Package Validation -->
|
|
|
|
|
<PropertyGroup>
|
2023-05-15 08:50:05 +02:00
|
|
|
<GenerateCompatibilitySuppressionFile>true</GenerateCompatibilitySuppressionFile>
|
2023-07-05 13:13:52 +02:00
|
|
|
<EnablePackageValidation>false</EnablePackageValidation>
|
2023-11-09 09:25:58 +01:00
|
|
|
<PackageValidationBaselineVersion>14.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>
|
2023-10-11 11:25:05 +02:00
|
|
|
<PackageReference Include="Nerdbank.GitVersioning" Version="3.6.133" PrivateAssets="all" IsImplicitlyDefined="true" />
|
|
|
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.507" PrivateAssets="all" IsImplicitlyDefined="true" />
|
2022-09-27 14:22:34 +02:00
|
|
|
<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>
|