2025-09-25 14:31:36 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2016-10-25 12:34:06 +02:00
|
|
|
|
<PropertyGroup>
|
2022-02-24 10:24:27 +01:00
|
|
|
|
<OutputType>Exe</OutputType>
|
2021-06-01 05:13:45 +10:00
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2022-02-24 10:24:27 +01:00
|
|
|
|
<IsPackable>false</IsPackable>
|
2023-11-27 15:18:00 +01:00
|
|
|
|
<GenerateProgramFile>false</GenerateProgramFile>
|
2016-10-25 12:34:06 +02:00
|
|
|
|
</PropertyGroup>
|
2024-11-19 13:29:39 +01:00
|
|
|
|
|
2024-08-27 17:56:09 +01:00
|
|
|
|
<PropertyGroup>
|
2024-11-19 13:29:39 +01:00
|
|
|
|
<!--
|
|
|
|
|
|
TODO: Fix and remove overrides:
|
|
|
|
|
|
[SYSLIB0021] API supports obsolete serialization
|
|
|
|
|
|
[CS0618] update obsolete references
|
|
|
|
|
|
-->
|
2025-09-25 14:31:36 +01:00
|
|
|
|
<WarningsNotAsErrors>$(WarningsNotAsErrors),SYSLIB0021,CS0618</WarningsNotAsErrors>
|
2024-08-27 17:56:09 +01:00
|
|
|
|
</PropertyGroup>
|
2024-11-19 13:29:39 +01:00
|
|
|
|
|
2016-10-25 12:34:06 +02:00
|
|
|
|
<ItemGroup>
|
2023-11-27 15:18:00 +01:00
|
|
|
|
<PackageReference Include="BenchmarkDotNet" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Debug" />
|
|
|
|
|
|
<PackageReference Include="Moq" />
|
2016-10-25 12:34:06 +02:00
|
|
|
|
</ItemGroup>
|
2022-02-24 10:24:27 +01:00
|
|
|
|
|
2016-10-25 12:34:06 +02:00
|
|
|
|
<ItemGroup>
|
2023-08-18 16:04:37 +02:00
|
|
|
|
<ProjectReference Include="..\..\src\Umbraco.Cms\Umbraco.Cms.csproj" />
|
2017-05-12 14:49:44 +02:00
|
|
|
|
</ItemGroup>
|
2021-06-24 09:43:57 -06:00
|
|
|
|
</Project>
|