* Created a common library for the APIs and moved stuff that is required for the new content API. Also moved the versioned backoffice API route handling to the management API where it belongs. * Remove test auth attribute from Media
17 lines
647 B
XML
17 lines
647 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<Title>Umbraco CMS - API Common</Title>
|
|
<Description>Contains the bits and pieces that are shared between the Umbraco CMS APIs.</Description>
|
|
<IsPackable>false</IsPackable>
|
|
<EnablePackageValidation>false</EnablePackageValidation>
|
|
<AssemblyName>Umbraco.Cms.Api.Common</AssemblyName>
|
|
<RootNamespace>Umbraco.Cms.Api.Common</RootNamespace>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.2.8" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Umbraco.Core\Umbraco.Core.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|