LSCode.Files 3.0.6

dotnet add package LSCode.Files --version 3.0.6
NuGet\Install-Package LSCode.Files -Version 3.0.6
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="LSCode.Files" Version="3.0.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add LSCode.Files --version 3.0.6
#r "nuget: LSCode.Files, 3.0.6"
#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 LSCode.Files as a Cake Addin
#addin nuget:?package=LSCode.Files&version=3.0.6

// Install LSCode.Files as a Cake Tool
#tool nuget:?package=LSCode.Files&version=3.0.6

LSCode.Files

Application:

Offers codes to facilitate the manipulation of files and directories in projects produced by LSCode.

NuGet version (LSCode.Files)


Frameworks:

  • .Net Standard 2.1

Current features:

  • Directory manipulation
  • File manipulation
  • FTP functionalities

Dependencies:

  • Magick.NET-Q8-AnyCPU
  • Microsoft.Extensions.DependencyInjection.Abstractions

Dependencies (Test projects):

  • Microsoft.NET.Test.Sdk
  • NUnit
  • NUnit3TestAdapter
  • NUnit.Analyzers
  • coverlet.collector

How to install:

  • Click on the following link and see here some ways to install: click here.

How to use directory manipulation service:

First install the package, for example:

<PackageReference Include="LSCode.Files" Version="x.x.x" />

In the file where the services used in the application are added (Startup.cs, Program.cs or others), you must import the following namespace:

using LSCode.Files.Directories.Extensions;

Then add the following line to register the service:

services.AddDirectoryService();

//or

builder.Services.AddDirectoryService();

In the file that you want to use the service, you must import the following namespace:

using LSCode.Files.Directories.Interfaces;

Then add the interface in the constructor:

using LSCode.Files.Directories.Interfaces;

namespace MyNamespace
{
  public class MyClass
  {
    private readonly IDirectoryService _service;

    public MyClass(IDirectoryService service) => _service = service;
  }
}

The following link contains the list of functionalities present in the service.

Each method has a description of itself, its parameters and return:

Link: click here.


How to use file manipulation service:

First install the package, for example:

<PackageReference Include="LSCode.Files" Version="x.x.x" />

In the file where the services used in the application are added (Startup.cs, Program.cs or others), you must import the following namespace:

using LSCode.Files.Files.Extensions;

Then add the following line to register the service:

services.AddFileService();

//or

builder.Services.AddFileService();

In the file that you want to use the service, you must import the following namespace:

using LSCode.Files.Files.Interfaces;

Then add the interface in the constructor:

using LSCode.Files.Files.Interfaces;

namespace MyNamespace
{
  public class MyClass
  {
    private readonly IFileService _service;

    public MyClass(IFileService service) => _service = service;
  }
}

The following link contains the list of functionalities present in the service.

Each method has a description of itself, its parameters and return:

Link: click here.


How to use ftp service:

First install the package, for example:

<PackageReference Include="LSCode.Files" Version="x.x.x" />

In the file where the services used in the application are added (Startup.cs, Program.cs or others), you must import the following namespace:

using LSCode.Files.FTP.Extensions;

Then add the following line to register the service:

services.AddFTPService("user", "password");

//or

builder.Services.AddFTPService("user", "password");

In the file that you want to use the service, you must import the following namespace:

using LSCode.Files.FTP.Interfaces;

Then add the interface in the constructor:

using LSCode.Files.FTP.Interfaces;

namespace MyNamespace
{
  public class MyClass
  {
    private readonly IFTPService _service;

    public MyClass(IFTPService service) => _service = service;
  }
}

The following link contains the list of functionalities present in the service.

Each method has a description of itself, its parameters and return:

Link: click here.


Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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
3.0.6 236 2/28/2023
3.0.5 215 2/28/2023
3.0.0 273 1/17/2023

Updating project dependencies.