Register multiple implementations against the same interface in .NET 8 ASP.NET MVC Core Project: RuntimeComposition.NET https://gitlab.com/ShirazAdam/RuntimeComposition.NET is a C# .NET 8 ASP.NET MVC web application demonstrating the concept of run time composition. Based on the original work I did in .NET Framework 4.8.1 located at https://gitlab.com/ShirazAdam/Runtime-Composition. This is an updated version for ASP.NET Core MVC…
Category: .NET
Windows Phone and Windows development…
Ever since Microsoft decided to retire Windows Phone, I have stopped developing software for the Windows Platform. With the release of Visual Studio 2022, UWP (Universal Windows Platform) seems to be an afterthought. As of now, I believe all the Windows Phone and Windows/Microsoft Store apps have been pulled by Microsoft because I have not…
Visual Studio 2017
Hi everyone, Visual Studio 2017 is now available to download from https://www.visualstudio.com/ for developing Windows software and applications whether they’re running on Windows Phone, Surface. Windows 10, Xbox, Holo Lens, Azure, IoT and any other Windows-based device.
CodePlex source vault now live
Hi there, All projects are slowly being migrated from my GitHub https://github.com/ZeroInfinite and https://github.com/ZeroMSN repositories to my CodePlex vault https://www.codeplex.com/site/users/view/ZeroInfinite. All future submissions and new projects will now be done at the CodePlex vault.
Local Mosque Guide UWP for Windows 10
An update to Local Mosque Guide will be released soon as a UWP application that will run on any Windows 10 device including Windows 10 Mobile / Windows Phone, Surface, Xbox, Holo Lens and IoT.
GitHub https://github.com/ZeroInfinite
I’m an Architect/Consultant providing my services to many large FTSE 100 firms/enterprises in the UK. I design many solutions which I publish to TFS on premise and on the cloud. I’ve created a GitHub account where I will commit some of my POCs to share with the public domain at the locations below. https://github.com/ZeroMSN https://github.com/ZeroInfinite
NO870 for Windows RT / 8.1 wins award
NO870 for Windows RT / 8.1 has won an award thanks to http://bestwindows8apps.net/no870/. You can download the award winning software from here
ZERO System Suite v0.45 now available with improved support for Microsoft Windows 8 and multi-core systems
An update is now available for Z.E.R.O. System Suite which brings a lot of improvements Download Z.E.R.O. System Suite
ClientCache for ASP.NET web forms 2.0 – 4.5 (dynamic caching and conditional get support)
ClientCache Enables client side caching of dynamic content using dynamic caching and conditional get, thus reducing the request/responses to and from the server when the page content hasn’t changed. To use, do the following: C# Using ClientCache; VB.NET Imports ClientCache To Invoke C# .NET 3+ this.UseClientCache(); C# .NET 2+ UseClientCache(context); VB.NET 3+ Me.UseClientCache() VB.NET 2+…
PerfTweaksLite for ASP.NET web forms 2.0 – 4.5 with dynamic caching and conditional get support
Dynamic caching and conditional get support for any ASP.NET web form application. Add the PerfTweaksLite dll to your project Add the following line of code for any pre-login (public) page caching and conditional getting, PerfTweaksLite.HttpTweak.PublicCache(Context); where context is HttpContext. To be used on dynamic pages where the content doesn’t vary on a per user basis….