Licencia

El sistema de datos de .NET (Aspose.3DEl software de código abierto se lanza bajo el Licencia MIT.Puede utilizarse en productos comerciales, proyectos de código abierto, herramientas internas y investigación sin restricciones. No se requiere clave de licencia, API, token meto o registro.

Puntos clave de la licencia MIT

  • Libre para cualquier uso:Comercial, open source, interno, académico y personal.
  • No hay límites de uso: no hay cuotas de llamadas, capas de tamaño de archivo o restricciones de marcos.
  • No se requiere clave de API:Instalar el paquete a través de NuGet y comenzar a usarlo inmediatamente.
  • No registrado:No hay cuenta, no hay registro, ni activación en línea.
  • Acompañamiento: conservar el aviso de copyright y el texto de la Licencia MIT en su distribución (ver más abajo).

Con el texto de la licencia

El texto de la licencia completo enviado con el paquete dice:

MIT License

Copyright (c) Aspose Contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Ver la licencia en su paquete instalado

El LICENSE El archivo está incluido en el paquete NuGet. Puedes localizarlo después de instalarlo inspectando los contenidos del paquet:

# View license via .NET CLI
dotnet nuget locals all --list

O inspeccione el paquete directamente:

# Download and extract the .nupkg to inspect its contents
nuget locals global-packages -list

No se requiere licencia comercial

A diferencia del producto comercial Aspose.3D, esta edición FOSS no utiliza el License o Metered Las clases de API. Estas clases existen en la base de codificación pero lanza NotImplementedException — no funcionan en la construcción de código abierto. no necesita llamar License.SetLicense() o configurar cualquier clave metida.

// This is NOT required or meaningful in the FOSS edition:
// var license = new License();
// license.SetLicense("Aspose.3D.lic"); // throws NotImplementedException

// Simply install the package and use it directly:
using Aspose.ThreeD;
var scene = new Scene();
scene.Open("model.obj");

Redistribución y Bundling

Si redistribuye el paquete como parte de su propia aplicación o biblioteca:

  1. Incluye el aviso de licencia original del MIT (el LICENSE El archivo del paquete de NuGet es suficiente).
  2. No es necesario que tu aplicación sea de código abierto.La licencia MIT es permissiva, no copyleft.
  3. Puede modificar el código fuente y distribuir versiones modificadas bajo la misma licencia MIT.

Recursos adicionales

Ver también

 Español