Tag: .NET Framework
-
Umbraco CMS with ASP.NET MVC – Part 4 The MVC Recipe
Dear readers, Its been very long time that I have written any blog posts and in meantime there has been significant changes in Umbraco and its documentation on ASP.NET MVC. Few updates on this topic before I start, ASP.NET MVC is now enabled out of the box rather than WebForms in Umbraco. This blog series was first started with Umbraco version 7.1.1 but concept is same…
-
Getting started with Multifile assembly – Part II
Some brief before we continue Hi! In the last article on this topic here MULTIFILE ASSEMBLY part – I, I had talked conceptually about creating multi-file assembly and possible usages. In this post we will have more insights on the implementation part regarding multi-file assembly and using MEF to apply the concept practically in the…
-
Getting started with Multifile assembly
What is Multi-file assembly? It is an application assembly either web-based or desktop-based which spans across many files to support extensibility and dynamically adding new features. What is Modules? Modules means class files such as Program.cs or frmMain.cs, in context of assemblies. Usage of Multi-file assembly Using different modules written in different .NET based programming languages…
-
Installing .NET 3.5 service pack 1 along with application setup
Many of us would have been creating setups for applications either using WinForms or WPF and other such, but we really ignore the fact that users might not have all the prerequisites that our application requires to work. Possibilities for that might be one or more as below: User do have .NET framework even installed.…