Files
GrasshopperAsyncComponent/GrasshopperAsyncComponentDemo/Info/GrasshopperAsyncComponentInfo.cs
T
Jedd Morgan eb97eb1df8 refactor: Add sourcelink and Github Actions (#28)
* Quick pass

* no locks

* github actions

* publish via github actions

* pack
2025-06-13 17:29:55 +01:00

22 lines
673 B
C#

using Grasshopper.Kernel;
namespace GrasshopperAsyncComponentDemo;
public class GrasshopperAsyncComponentInfo : GH_AssemblyInfo
{
public override string Name => "GrasshopperAsyncComponentDemo";
//Return a short string describing the purpose of this GHA library.
public override string Description => "A base for async & less janky grasshopper components.";
public override Guid Id => new("9c8808bc-ddee-45ca-8c66-05ca3cf4d394");
//Return a string identifying you or your company.
public override string AuthorName => "";
//Return a string representing your preferred contact details.
public override string AuthorContact => "";
}