* Updated the package validation baseline version to 12 RC1 * Update PackageValidationBaselineVersion to 12.0.0 and remove CompatibilitySuppressions.xml files * Clean up project files --------- Co-authored-by: Ronald Barendse <ronald@barend.se>
25 lines
1.1 KiB
XML
25 lines
1.1 KiB
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>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<FrameworkReference Include="Microsoft.AspNetCore.App" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
|
|
<PackageReference Include="OpenIddict.Abstractions" Version="4.5.0" />
|
|
<PackageReference Include="OpenIddict.AspNetCore" Version="4.5.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Umbraco.Cms.Persistence.EFCore.Sqlite\Umbraco.Cms.Persistence.EFCore.Sqlite.csproj" />
|
|
<ProjectReference Include="..\Umbraco.Cms.Persistence.EFCore.SqlServer\Umbraco.Cms.Persistence.EFCore.SqlServer.csproj" />
|
|
<ProjectReference Include="..\Umbraco.Cms.Persistence.EFCore\Umbraco.Cms.Persistence.EFCore.csproj" />
|
|
<ProjectReference Include="..\Umbraco.Core\Umbraco.Core.csproj" />
|
|
<ProjectReference Include="..\Umbraco.Web.Common\Umbraco.Web.Common.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|