{"id":48540179,"url":"https://github.com/panoramicdata/panoramicdata.whatthedll","last_synced_at":"2026-04-08T04:01:52.475Z","repository":{"id":329055559,"uuid":"1117934504","full_name":"panoramicdata/PanoramicData.WhatTheDll","owner":"panoramicdata","description":"A Blazor WebAssembly application for analyzing .NET assemblies and PDB files in the browser","archived":false,"fork":false,"pushed_at":"2025-12-17T03:58:19.000Z","size":479,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-20T17:04:09.248Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/panoramicdata.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2025-12-17T03:04:58.000Z","updated_at":"2025-12-17T03:58:23.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/panoramicdata/PanoramicData.WhatTheDll","commit_stats":null,"previous_names":["panoramicdata/panoramicdata.whatthedll"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/panoramicdata/PanoramicData.WhatTheDll","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/panoramicdata%2FPanoramicData.WhatTheDll","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/panoramicdata%2FPanoramicData.WhatTheDll/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/panoramicdata%2FPanoramicData.WhatTheDll/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/panoramicdata%2FPanoramicData.WhatTheDll/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/panoramicdata","download_url":"https://codeload.github.com/panoramicdata/PanoramicData.WhatTheDll/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/panoramicdata%2FPanoramicData.WhatTheDll/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31539229,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T16:28:08.000Z","status":"online","status_checked_at":"2026-04-08T02:00:06.127Z","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":[],"created_at":"2026-04-08T04:01:51.942Z","updated_at":"2026-04-08T04:01:52.465Z","avatar_url":"https://github.com/panoramicdata.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# What The DLL?\n\nA simple Blazor WebAssembly application for analyzing .NET assemblies (DLL and EXE files) directly in your browser. Provides a dotPeek-like view of assembly metadata without any bells and whistles.\n\n## Features\n\n- 🎯 **Simple Interface** - No menu, just drag and drop or click to select a file\n- 🔍 **Assembly Analysis** - View types, methods, properties, and references\n- 🎨 **Modern Bootstrap Design** - Clean, card-based layout\n- 🌓 **Dark Mode Support** - Automatically respects system preference\n- 🚀 **Browser-Based** - All analysis happens in the browser using WebAssembly\n- 📦 **No Server Processing** - Files stay on your machine\n\n## What It Shows\n\n- **Assembly Information**: Name, version, culture\n- **References**: All referenced assemblies with versions\n- **Types**: All classes and interfaces with their attributes\n  - Public/Private visibility\n  - Abstract, Sealed, Interface indicators\n  - Properties list\n  - Methods list with modifiers (public, static, abstract, virtual)\n\n## Getting Started\n\n### Prerequisites\n\n- .NET 8.0 SDK or later\n\n### Running the Application\n\n1. Navigate to the project directory:\n   ```bash\n   cd PanoramicData.WhatTheDll\n   ```\n\n2. Run the application:\n   ```bash\n   dotnet run\n   ```\n\n3. Open your browser and navigate to the URL shown in the console (typically `http://localhost:5xxx`)\n\n### Using the Application\n\n1. Click anywhere on the drop zone or drag a .NET DLL/EXE file onto the page\n2. The application will analyze the assembly and display all metadata\n3. Click \"Analyze Another DLL\" to reset and analyze a different file\n\n## Project Structure\n\n```\nPanoramicData.WhatTheDll/\n├── Pages/\n│   └── Home.razor              # Main page with file upload and analysis display\n├── Services/\n│   └── DllAnalyzer.cs          # Assembly analysis service using System.Reflection.Metadata\n├── wwwroot/\n│   ├── css/\n│   │   └── app.css            # Custom styles including dark mode\n│   └── index.html             # Main HTML with dark mode detection\n└── Program.cs                  # Application entry point\n```\n\n## Technology Stack\n\n- **Blazor WebAssembly** - Client-side web framework\n- **Bootstrap 5** - UI framework with dark mode support\n- **System.Reflection.Metadata** - Assembly metadata reading\n\n## Notes\n\n- Maximum file size: 50 MB\n- Only .NET assemblies (DLL/EXE files) are supported\n- All processing happens client-side in the browser\n- Files are not uploaded to any server\n\n## Building for Production\n\nTo build the application for production:\n\n```bash\ndotnet publish -c Release\n```\n\nThe output will be in `bin/Release/net8.0/browser-wasm/publish/wwwroot/`\n\n## License\n\nThis project was created by PanoramicData.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpanoramicdata%2Fpanoramicdata.whatthedll","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpanoramicdata%2Fpanoramicdata.whatthedll","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpanoramicdata%2Fpanoramicdata.whatthedll/lists"}