|
|
|
|
|
| | Total Hits: 6 | Today: 0 | Author: James McCaffrey | Rating:  |
| |  Before you can test any software system effectively, you must understand the system under test. If the system includes the Microsoft® .NET Framework, understanding the system under test includes understanding its assembly and method dependencies. This is not particularly enjoyable or challenging from a conceptual point of view, but it is absolutely indispensable.... |
| | Total Hits: 1 | Today: 0 | Author: Moim Hossain | Rating:  |
| |  Well, today I am going to write a simple but useful utility program that can be used to extract the .NET assemblies from the Global Assembly Cache.... |
| | Total Hits: 3 | Today: 0 | Author: Anupam Banerji | Rating:  |
| |  C# .NET assemblies are often built and deployed globally. The current business model of outsourcing development overseas results in global customers. The Developer implementing the outsourced solution must take local languages and customs into account. There are different ways of expressing characters, dates, times, currencies and floating point numbers in different cultures. In this article, Anupam Banerji explains the .NET approach towards globalization, and introduces the tools and methods to... |
| | Total Hits: 4 | Today: 0 | Author: Martin Jarvis | Rating:  |
| |  I’ve recently had to look at dynamically assigning an assembly versions based in part on the date of compilation and the version of a compiled 3rd Party library.
This looked like a simple job for the MSBuild.ExtensionPack.Framework.Assembly task in the MSBuild Extension Pack. However, this had a serious downside it locked the Assembly for the duration of the build!.... |
| | Total Hits: 16 | Today: 0 | Author: Syed Fasih | Rating:  |
| |  Reflection is Microsoft's extra-ordinary feature. Before we begin, we must know some very important concepts about assemblies. Assemblies are the building blocks of .NET Framework. An assembly is a collection of types and resources that are built to work together, and form a logical unit of functionality.... |
| | Total Hits: 6 | Today: 0 | Author: Vinayak kadu | Rating:  |
| |  This article is concerned with how to manage the .NET assemblies in your Project or GAC (Global Assembly Cache). All .NET programs that are constructed from these assemblies and almost everything you do in .NET leads to the creation of an assembly of some order. Every program runs on a layer of Software and Hardware abstraction called CLR (Common Language Runtime). CLR cannot directly convert the code to hardware platform (binary form). It has to perform some specific checks like version informa... |
| | Total Hits: 16 | Today: 0 | Author: Microsoft Corporation | Rating:  |
| |  By default, all of the assemblies included in a ClickOnce application are downloaded when the application is first run. You may, however, have parts of your application that are used by a small set of your users. In this case, you want to download an assembly only when you create one of its types. The following walkthrough demonstrates how to mark certain assemblies in your application as "optional", and how to download them using classes in the System.Deployment.Application namespace when the c... |
| | Total Hits: 6 | Today: 0 | Author: Microsoft Corporation | Rating:  |
| |  By default, all of the assemblies included in a ClickOnce application are downloaded when the application is first run. You might, however, have parts of your application that are used by a small set of your users. In this case, you want to download an assembly only when you create one of its types. The following walkthrough demonstrates how to mark certain assemblies in your application as "optional", and how to download them by using classes in the System.Deployment.Application namespace when ... |
| | Total Hits: 27 | Today: 0 | Author: Microsoft Corporation | Rating:  |
| |  Creating accessible Web pages allows you to reach as many customers as possible. People with disabilities are not the only users that appreciate accessible pages. Users with slow connections or text-only browsers also rely on accessibility options. Accessible design allows automation tools such as search engines to search, index, and manipulate the information on your pages. Finally, future telecommunications laws may require information distributed over the Internet to be accessible in the same... |
| | Total Hits: 5 | Today: 0 | Author: Microsoft Corporation | Rating:  |
| |  You can use the MSIL Disassembler (Ildasm.exe) to view Microsoft intermediate language (MSIL) information in a file. If the file being examined is an assembly, this information can include the assembly's attributes, as well as references to other modules and assemblies. This information can be helpful in determining whether a file is an assembly or part of an assembly, and whether the file has references to other modules or assemblies.... |
| | Total Hits: 13 | Today: 0 | Author: Microsoft Corporation | Rating:  |
| |  Use the Global Assembly Cache tool (Gacutil.exe) to remove an assembly from the global assembly cache.... |
| | Total Hits: 16 | Today: 0 | Author: Microsoft Corporation | Rating:  |
| |  The .NET Framework SDK provides several ways to sign an assembly with a strong name: * Using the Assembly Linker (Al.exe) provided by the .NET Framework SDK. * Using assembly attributes to insert the strong name information in your code. You can use either the AssemblyKeyFileAttribute or the AssemblyKeyNameAttribute, depending on where the key file to be used is located.... |
| | Total Hits: 10 | Today: 0 | Author: Microsoft Corporation | Rating:  |
| |  A file is an assembly if and only if it is managed, and contains an assembly entry in its metadata. For more information on assemblies and metadata, see the topic Assembly Manifest.... |
| | Total Hits: 83 | Today: 0 | Author: Joseph Dempsey | Rating:  |
| |  This is the first is a series of articles that I hope to write concerning the Microsoft Active Accessibility (MSAA) technology. Much of my current work has surrounded this topic and there seems to be very little in the way of useful introductions to the topic. To start, I would like to provide an introduction to MSAA so that an understanding of what it does and why it exists is present. After the groundwork is established we can move into how it would be implemented in an application.... |
| | Total Hits: 52 | Today: 0 | Author: Lim Bio Liong | Rating:  |
| |  Standard .NET attributes serve functionality similar to C++ preprocessor or pragma commands. They can be used to provide to the compiler additional information pertaining to some item in a program. They can be used to simplify certain programming tasks, e.g. setting security requirements declaratively (CodeAccessSecurityAttribute), controlling the physical layout of the data fields of a class or structure (StructLayoutAttribute), setting COM GUIDs to .NET classes (GuidAttribute), etc. They can e... |
| | Total Hits: 80 | Today: 0 | Author: Trenton Moss | Rating:  |
| |  When creating accessible websites, most web developers and web managers tend to follow the W3C accessibility guidelines. And rightly so - they are the most comprehensive accessibility resource on the Internet after all. The W3C accessibility guidelines, or Web Content Accessibility Guidelines as they're officially known, could go slightly further however. Fulfilling the guidelines will give you a very accessible website (remember though, they are just "guidelines" so shouldn't always be taken li... |
| | Total Hits: 66 | Today: 0 | Author: Rüdiger Klaehn | Rating:  |
| |  As you know, traditional linking of object code is no longer necessary in .NET. A .NET program will usually consist of multiple parts. A typical .NET application consists of an executable assembly, a few assemblies in the program directory, and a few assemblies in the global assembly cache. When the program is run, the runtime combines all these parts to a program. Linking at compile time is no longer necessary.... |
| | Total Hits: 109 | Today: 0 | Author: Microsoft Corporation | Rating:  |
| |  The Windows Software Development Kit (SDK) provides several ways to sign an assembly with a strong name: * Using the Assembly Linker (Al.exe) provided by the Windows SDK. * Using assembly attributes to insert the strong name information in your code. You can use either the AssemblyKeyFileAttribute or the AssemblyKeyNameAttribute, depending on where the key file to be used is located.... |
| | Total Hits: 106 | Today: 0 | Author: Indrajeet Valera | Rating:  |
| |  This demo shows new way of deploying .NET thick client application assemblies, like Windows Forms and Console applications, to remote server which makes deployment and maintenance bit easier. This demo also concentrates on code security of .NET applications.During the days of VB, we use to prepare a setup file and were forced to run setup on each system.... |
| | Total Hits: 208 | Today: 0 | Author: AtulMalhotra. | Rating:  |
| |  We all have worked on .NET and we know there are so many security features that are available. One among them is CAS (Code Access Security). Well, I am not going to discuss what CAS is and how it works? Here, I'll try to explain how is CAS helpful in providing security to our applications?... |
|
|
|
|
|
|
|
|
|
|
|
|
|