Serilog.Sinks.Autodesk.Revit
2.0.1
.NET 8.0
This package targets .NET 8.0. The package is compatible with this framework or higher.
.NET Framework 4.5.2
This package targets .NET Framework 4.5.2. The package is compatible with this framework or higher.
dotnet add package Serilog.Sinks.Autodesk.Revit --version 2.0.1
NuGet\Install-Package Serilog.Sinks.Autodesk.Revit -Version 2.0.1
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="Serilog.Sinks.Autodesk.Revit" Version="2.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Serilog.Sinks.Autodesk.Revit --version 2.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Serilog.Sinks.Autodesk.Revit, 2.0.1"
#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 Serilog.Sinks.Autodesk.Revit as a Cake Addin #addin nuget:?package=Serilog.Sinks.Autodesk.Revit&version=2.0.1 // Install Serilog.Sinks.Autodesk.Revit as a Cake Tool #tool nuget:?package=Serilog.Sinks.Autodesk.Revit&version=2.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Serilog.Sinks.Autodesk.Revit
Writes Serilog events to Autodesk Revit Journal.
Getting started
Install the Serilog.Sinks.Autodesk.Revit package from NuGet:
Install-Package Serilog.Sinks.Autodesk.Revit
To configure the sink in C# code, call WriteTo.RevitJournal()
during logger configuration:
// IExternalCommand.Execute
public Result Execute(ExternalCommandData commandData,
out string message,
ElementSet elements) {
UIApplic[.gitignore](.gitignore)ation uiApplication = commandData.Application;
var log = new LoggerConfiguration()
.WriteTo.RevitJournal(uiApplication)
.CreateLogger();
}
// IExternalApplication.Execute
public Result OnStartup(UIControlledApplication application) {
var log = new LoggerConfiguration()
.WriteTo.RevitJournal(application)
.CreateLogger();
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. |
.NET Framework | net452 is compatible. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 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 (1)
Showing the top 1 popular GitHub repositories that depend on Serilog.Sinks.Autodesk.Revit:
Repository | Stars |
---|---|
jeremytammik/RevitLookup
Interactive Revit RFA and RVT project database exploration tool to view and navigate BIM element parameters, properties and relationships.
|