### Add LFSComponent Package using .NET CLI
Source: https://www.nuget.org/docs/packages/LFSComponent
Installs the LFSComponent package version 1.48.1 using the .NET Command Line Interface. This command is suitable for most .NET projects.
```bash
dotnet add package LFSComponent --version 1.48.1
```
--------------------------------
### Install LFSComponent as a Cake Addin
Source: https://www.nuget.org/docs/packages/LFSComponent
Installs the LFSComponent package version 1.48.1 as an addin for the Cake build automation tool. This allows Cake scripts to utilize the functionality provided by LFSComponent.
```csharp
#addin nuget:?package=LFSComponent&version=1.48.1
```
--------------------------------
### Install LFSComponent as a Cake Tool
Source: https://www.nuget.org/docs/packages/LFSComponent
Installs the LFSComponent package version 1.48.1 as a tool for the Cake build automation tool. This makes the LFSComponent executable available within Cake scripts.
```csharp
#tool nuget:?package=LFSComponent&version=1.48.1
```
--------------------------------
### Add LFSComponent Package using Paket CLI
Source: https://www.nuget.org/docs/packages/LFSComponent
Installs the LFSComponent package version 1.48.1 using the Paket command-line tool. This is an alternative package manager for .NET projects.
```bash
paket add LFSComponent --version 1.48.1
```
--------------------------------
### Install LFSComponent Package in Package Manager Console
Source: https://www.nuget.org/docs/packages/LFSComponent
Installs the LFSComponent package version 1.48.1 using the Package Manager Console within Visual Studio. This command utilizes the NuGet module.
```powershell
NuGet\Install-Package LFSComponent -Version 1.48.1
```
--------------------------------
### Version LFSComponent Package in Directory.Packages.props (CPM)
Source: https://www.nuget.org/docs/packages/LFSComponent
Specifies the version for the LFSComponent package (1.48.1) within the Directory.Packages.props file for projects using Central Package Management (CPM). This centralizes version management for the solution.
```xml
```
--------------------------------
### Reference LFSComponent Package in F# Interactive or Polyglot Notebooks
Source: https://www.nuget.org/docs/packages/LFSComponent
Adds a reference to the LFSComponent package version 1.48.1 using the #r directive, suitable for F# Interactive (FSI) and Polyglot Notebooks. This allows direct package usage in scripting or interactive environments.
```fsharp
#r "nuget: LFSComponent, 1.48.1"
```
--------------------------------
### Reference LFSComponent Package in C# File-based Apps
Source: https://www.nuget.org/docs/packages/LFSComponent
References the LFSComponent package version 1.48.1 using the #:package directive in C# file-based applications, available from .NET 10 preview 4. This enables direct package usage within C# source files.
```csharp
#:package LFSComponent@1.48.1
```
--------------------------------
### Reference LFSComponent Package in Project File (PackageReference)
Source: https://www.nuget.org/docs/packages/LFSComponent
Adds a reference to the LFSComponent package version 1.48.1 in a project file that supports the PackageReference format. This is a common method for managing dependencies in modern .NET projects.
```xml
```
=== COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.