{"id":22837287,"url":"https://github.com/cake-contrib/cake.smartassembly","last_synced_at":"2025-10-05T22:58:41.157Z","repository":{"id":141702071,"uuid":"114814883","full_name":"cake-contrib/Cake.SmartAssembly","owner":"cake-contrib","description":null,"archived":false,"fork":false,"pushed_at":"2024-02-08T11:20:48.000Z","size":48,"stargazers_count":3,"open_issues_count":0,"forks_count":4,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-09-01T15:10:15.334Z","etag":null,"topics":["cake","cake-addin","smartassembly"],"latest_commit_sha":null,"homepage":"https://cakebuild.net/extensions/cake-smartassembly/","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cake-contrib.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","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}},"created_at":"2017-12-19T21:55:20.000Z","updated_at":"2024-02-08T11:13:01.000Z","dependencies_parsed_at":"2024-02-08T11:51:01.465Z","dependency_job_id":null,"html_url":"https://github.com/cake-contrib/Cake.SmartAssembly","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/cake-contrib/Cake.SmartAssembly","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cake-contrib%2FCake.SmartAssembly","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cake-contrib%2FCake.SmartAssembly/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cake-contrib%2FCake.SmartAssembly/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cake-contrib%2FCake.SmartAssembly/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cake-contrib","download_url":"https://codeload.github.com/cake-contrib/Cake.SmartAssembly/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cake-contrib%2FCake.SmartAssembly/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278532353,"owners_count":26002346,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-05T02:00:06.059Z","response_time":54,"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":["cake","cake-addin","smartassembly"],"created_at":"2024-12-12T23:16:16.034Z","updated_at":"2025-10-05T22:58:41.140Z","avatar_url":"https://github.com/cake-contrib.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cake.SmartAssembly\n\nA Cake AddIn that extends Cake with Redgate's [SmartAssembly](https://www.red-gate.com/products/dotnet-development/smartassembly/).\n\n[![cakebuild.net](https://img.shields.io/badge/WWW-cakebuild.net-blue.svg)](http://cakebuild.net/)\n[![NuGet](https://img.shields.io/nuget/v/Cake.SmartAssembly.svg)](https://www.nuget.org/packages/Cake.SmartAssembly)\n\n|Branch|Status|\n|------|------|\n|Master|[![Build status](https://ci.appveyor.com/api/projects/status/github/cake-contrib/Cake.SmartAssembly?branch=master\u0026svg=true)](https://ci.appveyor.com/project/cakecontrib/cake-smartassembly)|\n|Develop|[![Build status](https://ci.appveyor.com/api/projects/status/github/cake-contrib/Cake.SmartAssembly?branch=develop\u0026svg=true)](https://ci.appveyor.com/project/cakecontrib/cake-smartassembly)|\n\n## Important\n\n1.5.0 \n* References Cake 4.0.0\n* Drops support for .NET Framework\n* Supports .net 6+\n\n## Requirements\n\nRedgate's SmartAssembly has to be installed. Addin uses the latest version according to installation directory (**%ProgramFiles%/Red Gate/SmartAssembly***).\n\nRuns only on Windows.\n\nSmartAssembly [command line documentation](https://documentation.red-gate.com/sa6/building-your-assembly/using-the-command-line-mode)\n\n## Including addin\n\nIncluding addin in cake script is easy.\n```c#\n#addin \"Cake.SmartAssembly\"\n```\n\n## Usage\n\nTo use the addin just add it to Cake call the aliases and configure any settings you want.\n\n```csharp\n#addin \"Cake.SmartAssembly\"\n\n...\n\nTask(\"Create\")\n    .Does(() =\u003e {\n            SmartAssemblyCreate(\n                // sa project\n                File(\"./test.saproj\"),\n                // input assembly\n                File(\"./[path]\\test.exe\"), \n                // output assembly\n                File(\"./[path]\\test_sa.exe\"), \n                new SmartAssemblySettings { TamperProtection = true });\n    });\nTask(\"Build\")\n    .Does(() =\u003e {\n            SmartAssemblyBuild(\n                // sa project\n                File(\"./test.saproj\"), \n                new SmartAssemblySettings { TamperProtection = true });\n    });\n\n```\n\n## Discussion\n\nIf you have questions, search for an existing one, or create a new discussion on the Cake GitHub repository, using the `extension-q-a` category.\n\n[![Join in the discussion on the Cake repository](https://img.shields.io/badge/GitHub-Discussions-green?logo=github)](https://github.com/cake-build/cake/discussions/categories/extension-q-a)\n\n## Credits\n\nBrought to you by [Miha Markic](https://github.com/MihaMarkic) and contributors. \n\n![Mastodon Follow](https://img.shields.io/mastodon/follow/001030236)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcake-contrib%2Fcake.smartassembly","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcake-contrib%2Fcake.smartassembly","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcake-contrib%2Fcake.smartassembly/lists"}