Installation
Installation
The installation process for Aspose.Slides for .NET is simple and supports multiple distribution options. You can install the library via NuGet or by downloading the ZIP package.
Installing via NuGet
Installing in Visual Studio
- Open your project in Visual Studio.
- Go to:
- Tools → NuGet Package Manager → Manage NuGet Packages for Solution…
- Search for Aspose.Slides.NET
- Select the package and click Install
- Confirm dependencies and allow installation to complete
Installing via Package Manager Console
Install-Package Aspose.Slides.NETInstalling via .NET CLI
dotnet add package Aspose.Slides.NETInstalling from ZIP
- Download Aspose.Slides for .NET from the releases page:
https://releases.aspose.com/slides/net/ - Extract the ZIP contents to any folder
- Add a reference to the extracted DLL inside your project:
- Right‑click your project → Add Reference
- Browse to the DLL → Click OK
System Requirements
Ensure your environment meets the requirements below:
Runtime Requirements
- .NET 6.0 or later
- .NET Framework 4.0+
- Mono
Supported Operating Systems
- Windows (x64)
- Linux (x64)
- macOS (x64 / ARM64)
Recommended Development IDEs
- Visual Studio 2022+
- JetBrains Rider
- VS Code with C# Dev Kit
Full requirements: https://docs.aspose.net/slides/getting-started/
Verifying Installation
Create a simple test to confirm library access:
using Aspose.Slides;
Console.WriteLine("Assembly: " + typeof(Presentation).Assembly.FullName);
Console.WriteLine("Aspose.Slides for .NET installed successfully!");Next Steps
After installation:
- Apply your license: https://docs.aspose.net/slides/getting-started/metered-licensing/
- Check the Features overview
- Explore the Developer Guide for examples