{"id":22801084,"url":"https://github.com/iowacomputergurus/aspnetcore.utilities","last_synced_at":"2025-04-19T18:22:27.064Z","repository":{"id":33957871,"uuid":"163813447","full_name":"IowaComputerGurus/aspnetcore.utilities","owner":"IowaComputerGurus","description":"A collection of helpful utilities for working with ASP.NET Core projects.  These items are used by the IowaComputerGurus Team to aid in unit testing and other common tasks","archived":false,"fork":false,"pushed_at":"2024-12-02T06:29:49.000Z","size":236,"stargazers_count":4,"open_issues_count":4,"forks_count":1,"subscribers_count":3,"default_branch":"develop","last_synced_at":"2024-12-10T01:44:55.010Z","etag":null,"topics":["asp-net-core","aspnetcore","dotnet-core","hacktoberfest"],"latest_commit_sha":null,"homepage":"","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/IowaComputerGurus.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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},"funding":{"github":["iowacomputergurus","mitchelsellers"]}},"created_at":"2019-01-02T08:18:00.000Z","updated_at":"2024-10-30T05:43:42.000Z","dependencies_parsed_at":"2024-10-30T06:43:06.435Z","dependency_job_id":null,"html_url":"https://github.com/IowaComputerGurus/aspnetcore.utilities","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IowaComputerGurus%2Faspnetcore.utilities","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IowaComputerGurus%2Faspnetcore.utilities/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IowaComputerGurus%2Faspnetcore.utilities/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IowaComputerGurus%2Faspnetcore.utilities/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/IowaComputerGurus","download_url":"https://codeload.github.com/IowaComputerGurus/aspnetcore.utilities/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":229352425,"owners_count":18059492,"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","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":["asp-net-core","aspnetcore","dotnet-core","hacktoberfest"],"created_at":"2024-12-12T08:08:56.252Z","updated_at":"2024-12-12T08:08:56.953Z","avatar_url":"https://github.com/IowaComputerGurus.png","language":"C#","funding_links":["https://github.com/sponsors/iowacomputergurus","https://github.com/sponsors/mitchelsellers"],"categories":[],"sub_categories":[],"readme":"# aspnetcore.utilities ![](https://img.shields.io/github/license/iowacomputergurus/aspnetcore.utilities.svg)\n\n![Build Status](https://github.com/IowaComputerGurus/aspnetcore.utilities/actions/workflows/ci-build.yml/badge.svg)\n\n![](https://img.shields.io/nuget/v/icg.aspnetcore.utilities.svg) ![](https://img.shields.io/nuget/dt/icg.aspnetcore.utilities.svg)\n\n[![Technical Debt](https://sonarcloud.io/api/project_badges/measure?project=IowaComputerGurus_aspnetcore.utilities\u0026metric=sqale_index)](https://sonarcloud.io/summary/new_code?id=IowaComputerGurus_aspnetcore.utilities)\n[![Vulnerabilities](https://sonarcloud.io/api/project_badges/measure?project=IowaComputerGurus_aspnetcore.utilities\u0026metric=vulnerabilities)](https://sonarcloud.io/summary/new_code?id=IowaComputerGurus_aspnetcore.utilities)\n[![Bugs](https://sonarcloud.io/api/project_badges/measure?project=IowaComputerGurus_aspnetcore.utilities\u0026metric=bugs)](https://sonarcloud.io/summary/new_code?id=IowaComputerGurus_aspnetcore.utilities)\n[![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=IowaComputerGurus_aspnetcore.utilities\u0026metric=security_rating)](https://sonarcloud.io/summary/new_code?id=IowaComputerGurus_aspnetcore.utilities)\n[![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=IowaComputerGurus_aspnetcore.utilities\u0026metric=sqale_rating)](https://sonarcloud.io/summary/new_code?id=IowaComputerGurus_aspnetcore.utilities)\n[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=IowaComputerGurus_aspnetcore.utilities\u0026metric=coverage)](https://sonarcloud.io/summary/new_code?id=IowaComputerGurus_aspnetcore.utilities)\n\nA collection of helpful utilities for working with ASP.NET Core projects.  These items are common rules, tag helpers and similar that our team has found valuable.\n\n## Breaking Change with 5.1\n\nA number of elements have been moved to the sister netcore project.\n\n## Usage\n\n### Installation\n\nInstall from NuGet\n\n``` powershell\nInstall-Package ICG.AspNetCore.Utilities\n```\n\n### Register Dependencies\n\nTo utilize the tag helpers modify `_viewimports.cshtml` by adding\n\n``` html+razor\n@addTagHelper *, AspNetCore.Utilities\n```\n\n**Caution:** As expected the use of both ForceNonWwwRewriteRule and ForceWwwRewriteRule in the same installation will result in broken sites.\n\n### Included Tag Helpers\n\n#### HideCondition \nThis tag helper will hide the content of the target element if the condition is true, an example.\n\n``` html\n\u003cdiv hide-condition=\"Model.Deleted\"\u003e\n\n\u003c/div\u003e\n```\n\n#### Show Condition\nThis tag helper will show the content of the target element if the condition is true, an example.\n\n``` html\n\u003cdiv show-condition=\"Model.Published\"\u003e\n\n\u003c/div\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiowacomputergurus%2Faspnetcore.utilities","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiowacomputergurus%2Faspnetcore.utilities","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiowacomputergurus%2Faspnetcore.utilities/lists"}