SunCore.Ultralight 1.1.0

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package SunCore.Ultralight --version 1.1.0
NuGet\Install-Package SunCore.Ultralight -Version 1.1.0
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="SunCore.Ultralight" Version="1.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SunCore.Ultralight --version 1.1.0
#r "nuget: SunCore.Ultralight, 1.1.0"
#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 SunCore.Ultralight as a Cake Addin
#addin nuget:?package=SunCore.Ultralight&version=1.1.0

// Install SunCore.Ultralight as a Cake Tool
#tool nuget:?package=SunCore.Ultralight&version=1.1.0

SunCore

SunCore is a library for applications that can manage Windows OS (e.g. Change wallpaper, Play MP3 audio, Get Screen Information, Get Battery Information and some system information etc.)

MIT License

Features

  • Change Windows Wallpaper
  • Play MP3 audio
  • Get Screen Information
  • Get Battery Information
  • Get Some System Information
  • and more coming soon!

Installation

Install SunCore Ultralight with nuget

dotnet add package SunCore.Ultralight --version 1.1.0

Contributing

Contributions are always welcome!

See Contributing.md in Project Link for ways to get started.

Please adhere to this project's code of conduct.

Usage/Examples

Getting Image from Stream:

using SunCore.Ultralight.NT.Media;

Images images = new Images();

private Image myImage;

myImage = images.GetFromStream("https://example.com");

Getting Image From File:

using SunCore.Ultralight.NT.Media;

Images images = new Images();

private Image myImage;

myImage = images.GetFromFile(@"C:\Users\User\Pictures\flower.jpg");

Setting desktop Wallpaper:

using SunCore.Ultralight.NT62x;

Wallpaper.Set(@"C:\Users\User\Pictures\flower.jpg", WallpaperStyle.Fill);

Setting desktop wallpaper silently (without affecting Windows history):

using SunCore.Ultralight.NT62x;

Wallpaper.SilentSet(@"C:\Users\User\Pictures\flower.jpg");
Product Compatible and additional computed target framework versions.
.NET Framework net48 is compatible.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.8

    • No dependencies.

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

Add Battery API, Get screen datas and some System Information.