Installation

Installation

This page covers installing Aspose.3D 26.1.0 into a .NET project via NuGet.


Prerequisites

RequirementDetail
.NET SDK10.0 or later (dotnet --version to check)
OSWindows, macOS, or Linux
NuGetIncluded with .NET SDK

Install via .NET CLI

dotnet add package Aspose.3D --version 26.1.0

Install via Package Manager Console (Visual Studio)

Install-Package Aspose.3D -Version 26.1.0

Verify the Installation

Create a minimal program that loads the library and instantiates a Scene:

using Aspose.ThreeD;

var scene = new Scene();
scene.Open("test.obj");
Console.WriteLine($"Nodes loaded: {scene.RootNode.ChildNodes.Count}");

Run with:

dotnet run

If you see the node count printed without exceptions, the package is installed correctly.


Project File Reference

After installation your .csproj file should contain:

<PackageReference Include="Aspose.3D" Version="26.1.0" />

Next Steps