Installation
Installation
This page covers installing Aspose.3D 26.1.0 into a .NET project via NuGet.
Prerequisites
| Requirement | Detail |
|---|---|
| .NET SDK | 10.0 or later (dotnet --version to check) |
| OS | Windows, macOS, or Linux |
| NuGet | Included with .NET SDK |
Install via .NET CLI
dotnet add package Aspose.3D --version 26.1.0Install via Package Manager Console (Visual Studio)
Install-Package Aspose.3D -Version 26.1.0Verify 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 runIf 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
- Getting Started: Overview and quick-start example
- Developer Guide: Format support, mesh operations, and transforms