{"id":50317362,"url":"https://github.com/falko-code/languages-foundry","last_synced_at":"2026-05-29T01:01:50.725Z","repository":{"id":355505676,"uuid":"1227991543","full_name":"falko-code/languages-foundry","owner":"falko-code","description":"Zero-allocation Code Generation for Source Generators as Speed of Light","archived":false,"fork":false,"pushed_at":"2026-05-21T15:58:09.000Z","size":376,"stargazers_count":0,"open_issues_count":4,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-22T00:40:22.222Z","etag":null,"topics":["csharp","dotnet","source-generator"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/falko-code.png","metadata":{"files":{"readme":"ReadMe.md","changelog":null,"contributing":null,"funding":null,"license":"License.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-03T12:55:10.000Z","updated_at":"2026-05-21T15:48:44.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/falko-code/languages-foundry","commit_stats":null,"previous_names":["falko-code/languages-foundry"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/falko-code/languages-foundry","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/falko-code%2Flanguages-foundry","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/falko-code%2Flanguages-foundry/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/falko-code%2Flanguages-foundry/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/falko-code%2Flanguages-foundry/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/falko-code","download_url":"https://codeload.github.com/falko-code/languages-foundry/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/falko-code%2Flanguages-foundry/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33632271,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-28T02:00:06.440Z","response_time":99,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["csharp","dotnet","source-generator"],"created_at":"2026-05-29T01:01:46.853Z","updated_at":"2026-05-29T01:01:50.704Z","avatar_url":"https://github.com/falko-code.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003e [!WARNING]\n\u003e This project is under active development. The underlying C# libraries are subject to change.\n\n\u003cdiv align=\"center\"\u003e\n\n#\n\n### **LANGUAGES FOUNDRY**\n\n\u003cimg src=\"Sticker512.png\" width=\"128\"/\u003e\n\n#\n\n\u003c/div\u003e\n\n[![NuGet Version](https://img.shields.io/nuget/v/Falko.Foundry?style=for-the-badge\u0026color=green)](https://www.nuget.org/packages?q=Falko.Foundry\u0026prerel=false)\n[![NuGet Version](https://img.shields.io/nuget/vpre/Falko.Foundry?style=for-the-badge\u0026color=red)](https://www.nuget.org/packages?q=Falko.Foundry\u0026prerel=true)\n[![SDK Version](https://img.shields.io/badge/.NET-10%2C9-gray?style=for-the-badge)](https://dotnet.microsoft.com/en-us/download)\n[![CSharp Version](https://img.shields.io/badge/CSharp-14-gray?style=for-the-badge)](https://learn.microsoft.com/en-us/dotnet/csharp/whats-new/csharp-version-history)\n[![GitHub License](https://img.shields.io/github/license/falko-code/zero-logger?style=for-the-badge\u0026color=gray)](License.md)\n\nFluent and Zero-Allocation Code Generation for Source Generators.\n\n# \u003cimg src=\"Sticker128.png\" width=\"25\" hspace=\"5\" /\u003e Example\n\nCreate `foundry.cs` file with the following content and run with `dotnet run foundry.cs`:\n\n```csharp\n#:property TargetFramework=net10.0\n#:property PublishAot=true\n\n#:package Falko.Foundry.CSharp@0.1.0\n\nusing Falko.Foundry.Compilers;\nusing Falko.Foundry.CSharp.Compilers;\nusing Falko.Foundry.CSharp.Elements;\n\nvar compiler = CSharpLanguageCompiler.Instance;\nvar intType = new TypeElement { Name = \"Int32\"u8, Namespace = \"System\"u8 };\nvar intVar = new TypeIdentifierElement { Name = \"myInt\"u8, Type = intType };\n\nConsole.WriteLine(compiler.CompileElement(intVar.AsLine()));\n```\n\nThis simple example will output the following code:\n\n```csharp\nSystem.Int32 myInt;\n```\n\nFor how use the library in modern ways, see the [Wiki](https://github.com/falko-code/languages-foundry/wiki) and the [Examples](Examples/) folder.\n\n# \u003cimg src=\"Sticker128.png\" width=\"25\" hspace=\"5\" /\u003e License\n\nThis project is licensed under the **[GNU General Public License v3.0](License.md)**.\n\n**© 2026, Falko**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffalko-code%2Flanguages-foundry","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffalko-code%2Flanguages-foundry","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffalko-code%2Flanguages-foundry/lists"}