Our.Umbraco.ContentTypeInfo 1.0.3

dotnet add package Our.Umbraco.ContentTypeInfo --version 1.0.3                
NuGet\Install-Package Our.Umbraco.ContentTypeInfo -Version 1.0.3                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Our.Umbraco.ContentTypeInfo" Version="1.0.3" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Our.Umbraco.ContentTypeInfo --version 1.0.3                
#r "nuget: Our.Umbraco.ContentTypeInfo, 1.0.3"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Our.Umbraco.ContentTypeInfo as a Cake Addin
#addin nuget:?package=Our.Umbraco.ContentTypeInfo&version=1.0.3

// Install Our.Umbraco.ContentTypeInfo as a Cake Tool
#tool nuget:?package=Our.Umbraco.ContentTypeInfo&version=1.0.3                

Our.Umbraco.ContentTypeInfo

Small package that adds a content app to your Umbraco installation. This info content app will appear for Content Types only and give some extra information like:

  • Id (int and Guid)
  • Create Date
  • Update Date
  • UDI

image

Enable Content App

After installing the package, you can make the Content App visible by registering it in the Startup.cs class.

public void ConfigureServices(IServiceCollection services)
{

    services.AddUmbraco(_env, _config)
        .AddBackOffice()
        .AddWebsite()
        .AddComposers()
        // Register the content app
        .AddContentApp<ContentTypeInfoApp>()
        .Build();
}
Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.3 130 6/5/2023
1.0.2 111 5/30/2023
1.0.1 109 5/30/2023
1.0.0 113 5/23/2023