| |
browse.develop.com
Browse.develop.com is a community that was established to collect and
organize valuable web information. Our technical staff have selected and
indexed information and courses that they feel will help you stay
current on best practices across the SDLC.
|
9 Articles match "Class Library","Tools"
| Related DevelopMentor Courses | MORE | | Guerrilla.NET (UK) Training Use PFx as a unifying library for all your multithreading needs. Learn to write code using new.NET class libraries like PFx. How can I make sure people use my libraries correctly? EF relied on generating entity classes that were tightly coupled to EF. introduces the idea of POCO classes - bringing your own classes to EF. However, over time the scope of the library has grown significantly such that it will become the main model for building asynchronous code. The pivotal type enabling this transition is the Task class. couldn't? DevelopMentor Courses - Tuesday, March 1, 2011 Guerrilla.NET (US) Training Multithreading : Use PFx as a unifying library for all your multithreading needs. EF : Write classes that can track changes to their own state for n-tier development with Entity Framework. Debugging : Come and learn to build robust.NET applications including tools and techniques for monitoring and debugging applications in a production environment. Learn to write code using new.NET class libraries like LINQ and Silverlight. Multithreading : Use PFx as a unifying library for all your multithreading needs. class] Movie Night + Video Games + LAN Party +. DevelopMentor Courses - Tuesday, March 1, 2011 Foundations of C# Programming and the.NET Framework Training Examine core language features such as types, variables, and control constructs Use object-oriented features such as class, interface, protection, and inheritance Perform error notification and error handling using exceptions Use properties to implement the private data/public accessor pattern Use namespaces to group related types Use delegates and events to implement callbacks Override Object class methods such as ToString Avoid dll conflicts during deployment Use dynamic binding and polymorphism to write generic code (i.e., interface vs. abstract class, or property vs. field)? DevelopMentor Courses - Wednesday, February 22, 2012 |
6 Articles match "Class Library","Tools"
| The Latest from DevelopMentor | MORE | | Identity in.NET 4.5–Part 1: Status Quo (Beta 1) WIF becomes part of the base class library and structural classes like Claim , ClaimsPrincipal and ClaimsIdentity even go straight into mscorlib. But it is more than simply merging assemblies; in fact claims are now a first class citizen in the whole.NET Framework. All built-in identity classes, like FormsIdentity for ASP.NET and WindowsIdentity now derive from ClaimsIdentity. Likewise all built-in principal classes like GenericPrincipal and WindowsPrincipal derive from ClaimsPrincipal. NET 4.5 is a big release for claims-based identity. www.leastprivilege.com - Friday, March 16, 2012 More NLog Goodness If you want to perform logging at the class library level, and perhaps have a logging test project, you may want to place the NLog.config at the solution level, and link to it from projects where you want to perform logging. public class MvcApplication : System.Web.HttpApplication { protected void Application_Start() { string nlogPath = Server.MapPath( "nlog-web.log" ); InternalLogger.LogFile = nlogPath; } }. NLog comes with a handy command-line tool called InstallNLogConfig.exe , which you can run on your NLog.config file. Download the code for this blog post. Tony and Zuzana's World - Monday, October 31, 2011 Build a Multi-Project Visual Studio Template To enhance developer productivity, the toolkit combines a set of helper classes with code and xml snippets, as well as Visual Studio item and project templates. Start by creating a class library project and referencing the assembly, Microsoft.VisualStudio.TemplateWizardInterface.dll. Create a RootWizard class that implements IWizard. Entities; namespace $safeprojectname$ { class Program { static void Main( string [] args) { // Client code goes here. } } }. Download the code for this article here. This is where the IWizard project comes in. Enjoy. Tony and Zuzana's World - Wednesday, September 14, 2011 | -
| The Best from DevelopMentor | MORE | - 11 Killer Open Source Projects I Found with NuGet
It's a killer new way to find, install, maintain, and manage references to open source libraries in Visual Studio 2010. What I want to talk about is all the cool open source projects I found just by flipping through the pages of the NuGet directory in the Visual Studio "Add Library Package Reference" dialog. UI Library's YUI Compressor Java project. Lucene.Net is a source code, class-per-class, API-per-API and algorithmatic port of the Java Lucene search engine to the C# and.NET platform utilizing Microsoft.NET Framework. RazorEngine at [link]. Here you go. Michael C. Kennedy's Weblog - Wednesday, January 19, 2011 - Identity in.NET 4.5–Part 1: Status Quo (Beta 1)
WIF becomes part of the base class library and structural classes like Claim , ClaimsPrincipal and ClaimsIdentity even go straight into mscorlib. But it is more than simply merging assemblies; in fact claims are now a first class citizen in the whole.NET Framework. All built-in identity classes, like FormsIdentity for ASP.NET and WindowsIdentity now derive from ClaimsIdentity. Likewise all built-in principal classes like GenericPrincipal and WindowsPrincipal derive from ClaimsPrincipal. NET 4.5 is a big release for claims-based identity. www.leastprivilege.com - Friday, March 16, 2012 - Six Things That’ll Surprise You About.NET 4.0
For example, one style of development where developers sketch out a scenario in code involving a set of classes before they are completely written was painful in VS 2008 (e.g. This gap was filled by 3rd party tools, most notably Resharper ( [link] ). Basically WF 3 was a good try, but suffered from a couple of major problems that could not be overcome by simply refactoring the library. WF 4 has a nice GUI workflow building designer that is part of the VS 2010 tools and moreover that designer is rehostable in your own Windows Forms or WPF applications. " anyone? Michael C. Kennedy's Weblog - Wednesday, November 11, 2009 - Digging into WCF REST
The service contract is merged with the implementation (just a class with no separate interface), and there is no client project. About an hour before the talk, I decided to create my own version of the WCF REST Template, which creates a multi-project solution containing a web project with the service interface and class placed in a separate class library project and the entities in their own class library project. Last Thursday evening I presented a talk to the Dallas.NET User Group on support in WCF 4 for building REST-ful services. WCF 3.5 WCF 4.0 Tony and Zuzana's World - Saturday, September 10, 2011 - Build a Multi-Project Visual Studio Template
To enhance developer productivity, the toolkit combines a set of helper classes with code and xml snippets, as well as Visual Studio item and project templates. Start by creating a class library project and referencing the assembly, Microsoft.VisualStudio.TemplateWizardInterface.dll. Create a RootWizard class that implements IWizard. Entities; namespace $safeprojectname$ { class Program { static void Main( string [] args) { // Client code goes here. } } }. Download the code for this article here. This is where the IWizard project comes in. Enjoy. Tony and Zuzana's World - Wednesday, September 14, 2011 - More NLog Goodness
If you want to perform logging at the class library level, and perhaps have a logging test project, you may want to place the NLog.config at the solution level, and link to it from projects where you want to perform logging. public class MvcApplication : System.Web.HttpApplication { protected void Application_Start() { string nlogPath = Server.MapPath( "nlog-web.log" ); InternalLogger.LogFile = nlogPath; } }. NLog comes with a handy command-line tool called InstallNLogConfig.exe , which you can run on your NLog.config file. Download the code for this blog post. Tony and Zuzana's World - Monday, October 31, 2011 %>
| | |