| |
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.
|
36 Articles match "Visual Studio"
See all articles with
"Visual Studio"
| The Latest from Tony and Zuzana's World | MORE | | Simple WCF SOAP-REST Multi-Project Template did it again: another multi-project Visual Studio template – this time for a simple WCF service that exposes both SOAP and REST endpoints. To get the new template, all you have to do is fire up Visual Studio, then open up the Extensions Manager from under the Tools menu. Technical REST SOAP Visual Studio WCFDownload the source code for this post. My other REST and SOAP templates are intended as a starting point for more real-world WCF services. Search for “WCF SOAP-REST” in the Online Gallery, then click Download to install the extension. Enjoy. DevelopMentor Courses - Monday, June 11, 2012 WCF SOAP and REST Multi-Project Visual Studio Templates Last year I published a REST Multi-Project Visual Studio Template on the Visual Studio Extensions Gallery, available for download from the Tools-Manage Extensions menu from within Visual Studio 2010. So I dusted off my blog post on building multi-project Visual Studio templates and set off to build a WCF SOAP Multi-Project Template , which I uploaded the Visual Studio Extensions Gallery. To install the WCF Soap Multi-Project Template, simply open Visual Studio, then select Extensions Manager from the Tools menu. DevelopMentor Courses - Sunday, June 10, 2012 Simple MVVM Toolkit for Silverlight 5.0, Windows Phone 7.1 You can download the latest version here and take it for a spin – or get it from the Visual Studio Extensions Gallery by opening Visual Studio and selecting Extensions Manager from the Tools menu. You can still use the toolkit to develop MVVM apps for Silverlight 4 if you wish, and the Visual Studio project templates include versions for both Silverlight versions – 4 and 5. I’ve just upgraded my Simple MVVM Toolki t to support Silverlight 5.0 and Windows Phone 7.1 ! You still get all the source code, supporting libraries, and an abundance of samples. DevelopMentor Courses - Friday, March 2, 2012 | | The Best from Tony and Zuzana's World | MORE | | 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. After installing the toolkit, all a developer needs to do to get started is open Visual Studio and create a new project by selecting one the project templates that appear under the Mvvm category. Visual Studio makes it extremely easy to create a single-project template. Now that you’ve created a multi-project Visual Studio template, you need a way to deploy it. Enjoy. Tony and Zuzana's World - Wednesday, September 14, 2011 WCF SOAP and REST Multi-Project Visual Studio Templates Last year I published a REST Multi-Project Visual Studio Template on the Visual Studio Extensions Gallery, available for download from the Tools-Manage Extensions menu from within Visual Studio 2010. So I dusted off my blog post on building multi-project Visual Studio templates and set off to build a WCF SOAP Multi-Project Template , which I uploaded the Visual Studio Extensions Gallery. To install the WCF Soap Multi-Project Template, simply open Visual Studio, then select Extensions Manager from the Tools menu. DevelopMentor Courses - Sunday, June 10, 2012 Automatically Upgrading to Visual Studio 2010 I’ve had the need recently to convert a large number of projects from Visual Studio 2008 to Visual Studio 2010. And here is a Windows Forms app I wrote that searches for all Visual Studio solutions under a root directory and shells out to a command prompt to do the upgrade. Tags: Technical Visual Studio was not able to find a tool out there that does this automatically, so I wrote one. The key is to invoke devenv.exe from the command line and use the /upgrade switch. Here is a link to the docs on that option. Cheers. Tony and Zuzana's World - Sunday, November 28, 2010 | - Peeling Back the Onion Architecture
Here is the project structure for a Visual Studio solution I created to demonstrate the Onion Architecture. Download the code for this article. recently started a consulting project as an architect on an ASP.NET MVC application and quickly found myself immersed in the world of N* open source tools. MVC (which stands for Model-View-Controller) lends itself to an Agile development methodology where TDD and BDD (Test-Driven and Behavior-Driven Development) are important components. This is where the “Onion Architecture” comes in. This layer would contain your POCO entities. The Web.Ui Tony and Zuzana's World - Saturday, October 8, 2011 - Simple WCF SOAP-REST Multi-Project Template
did it again: another multi-project Visual Studio template – this time for a simple WCF service that exposes both SOAP and REST endpoints. To get the new template, all you have to do is fire up Visual Studio, then open up the Extensions Manager from under the Tools menu. Technical REST SOAP Visual Studio WCFDownload the source code for this post. My other REST and SOAP templates are intended as a starting point for more real-world WCF services. Search for “WCF SOAP-REST” in the Online Gallery, then click Download to install the extension. Enjoy. DevelopMentor Courses - Monday, June 11, 2012 - Simple MVVM Toolkit versus MVVM Light Toolkit
It also registers the toolkit assemblies so that they appear in the Visual Studio Add References dialog, and it installs Visual Studio project and item templates, code and xml snippets. And if you download the Simple MVVM Toolkit from the Visual Studio Extensions Gallery, you’ll also be notified when a new version of the toolkit is released on the gallery. Both Simple MVVM and MVVM Light toolkits ship with Visual Studio project and item templates, as well as some code snippets. Simple MVVM Toolkit would fall into the latter category. Tony and Zuzana's World - Saturday, April 23, 2011 - WCF Data Services versus WCF Soap Services
in Visual Studio 2010. Someone recently asked me this question: When a company that has been using 2 tiers wants to move to n-tier, what are the considerations for choosing WCF and STEs [or Trackable DTOs] vs. WCF Data Services? This is a great question because it relates to a recent re-alignment of what used to be called “ADO.NET Data Services” (code-named Astoria) under the umbrella of Windows Communication Foundation (WCF), as well as the renaming of.NET RIA Services to WCF RIA Services. Whether that’s good or bad depends entirely on your point of view. Sweet. Tony and Zuzana's World - Tuesday, April 13, 2010 - Digging into WCF REST
and Visual Studio 2010, folding in features we first saw in the REST Starter Kit, which is now largely obsolete. One of the things I highlighted in the talk is a Visual Studio template, which you can download from the Visual Studio Extensions Gallery, that creates a WCF REST-based service. It creates a Visual Studio solution with just a single web project. After installing the template, simply create a new project in Visual Studio, select the WCF category, and choose “WCF REST Service” from the list of project templates. Tony and Zuzana's World - Saturday, September 10, 2011 - Keep Dependency Injection Simple with MEF
In fact, thinking about the testability of ViewModels can help remind you to keep visual elements, such as brushes and dialogs, out of the ViewModel. When creating an app using the toolkit, add an “Injected” ViewModel Locator using the supplied Visual Studio item template. To run the test you have to actually run the test project – unlike traditional uniting testing in Visual Studio. One of the main benefits of using the MVVM (Model, View, ViewModel) design pattern is to support better testability. This keeps the tests simple, focused and fast. Have fun! Tony and Zuzana's World - Tuesday, March 8, 2011 - Who is Improving LINQ to SQL? Plinqo by Code Smith!
and Visual Studio 2010. The purpose of Plinqo is to generate LINQ to SQL entities that replace those created when you add a dbml file to a Visual Studio project. A lot of people have lingering doubts about whether to use LINQ to SQL for real-world applications, especially since Microsoft has left it to languish in favor of the new version of the Entity Framework slated for release with.NET 4.0 In addition you’ll get better performance using LINQ to SQL (we’ll see how EF4 compares when it comes out). file under a common folder. Tony and Zuzana's World - Tuesday, August 4, 2009 %>
270 Articles match "Visual Studio"
See all articles with
"Visual Studio"
| The Latest from DevelopMentor | MORE | | The Architecture of WCF In these situations we can use metadata in the form of WSDL or WS-MetadataExchange to provide the client with a description of the endpoint which tools (Add Service Reference in Visual Studio and svcutil.exe from the command line) can consume and build the necessary code and configuration to invoke the service. 'Before WCF it was, of course, possible for software running on different machines to communicate. Over the lifetime of Windows there have been many technologies to achieve this: sockets, DCOM, MSMQ,NET Remoting, ASMX Web Services and more. Messages. Channels. WCF, as of 4.5, DevelopMentor Courses - Sunday, April 7, 2013 Getting started with AngularJS Either download this from the AngularJS site or use the NuGet package to add it to your Visual Studio 2012 project. 'Index: Getting started with AngularJS Creating an AngularJS Controller The #AngularJS $scope is not the MVC Model One of the nicer JavaScript frameworks out there to work with must be AngularJS. Now there are quite a few other ones out there and I have used a number of them but AngularJS seems to be the most structured of them. And while it is really powerful it is also really easy to get started with. It isn’t just a library like jQuery or Knockout.js Sweet :-). The Problem Solver - Friday, April 5, 2013 Getting started with AngularJS Either download this from the AngularJS site or use the NuGet package to add it to your Visual Studio 2012 project. 'One of the nicer JavaScript frameworks out there to work with must be AngularJS. Now there are quite a few other ones out there and I have used a number of them but AngularJS seems to be the most structured of them. And while it is really powerful it is also really easy to get started with. AngularJS is a client side framework for creating rich web applications using JavaScript and HTML. It isn’t just a library like jQuery or Knockout.js 1: 2: 3: 4: AngularJS Demo. The Problem Solver - Friday, April 5, 2013 | -
| The Best from DevelopMentor | MORE | - Verifying JavaScript with JSLint and Visual Studio
It also outputs any errors it finds in a format compatible with Visual Studio. Of course, to get the most out of using this, you’re going to want to set it up as an external tool in Visual Studio. Open up Visual Studio, go to Tools -> External Tools… and click Add. Tags: ASP.NET JavaScript Visual Studio Douglas Crockford’s JavaScript: The Good Parts is a short, but informative read that all JavaScript developers should probably pick up. finally decided to make this an almost instantaneous process. Jason Diamond - Saturday, August 9, 2008 - Verifying JavaScript with JSLint and Visual Studio
It also outputs any errors it finds in a format compatible with Visual Studio. Of course, to get the most out of using this, you’re going to want to set it up as an external tool in Visual Studio. Open up Visual Studio, go to Tools -> External Tools… and click Add. Tags: Uncategorized JavaScript Visual Studio Douglas Crockford’s JavaScript: The Good Parts is a short, but informative read that all JavaScript developers should probably pick up. finally decided to make this an almost instantaneous process. It’s too simple, though. Jason Diamond - Saturday, August 9, 2008 - 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. After installing the toolkit, all a developer needs to do to get started is open Visual Studio and create a new project by selecting one the project templates that appear under the Mvvm category. Visual Studio makes it extremely easy to create a single-project template. Now that you’ve created a multi-project Visual Studio template, you need a way to deploy it. Enjoy. Tony and Zuzana's World - Wednesday, September 14, 2011 - MongoDB vs. SQL Server 2008 Performance Showdown
In that article I introduced the NoSQL movement, MongoDB, and showed you how to program against it in.NET … Continue reading → NoSQL Articles Visual StudioThis article is a follow up one I wrote last week entitled “The NoSQL Movement, LINQ, and MongoDB – Oh My!”. Michael C. Kennedy's Weblog - Thursday, April 29, 2010 - Six Things That’ll Surprise You About.NET 4.0
as well as Visual Studio 2010. 1 Visual Studio 2010. for the very first time an true open source will become and integral and supported part of Visual Studio and.NET? This would give your application essentially a visual programmability. Visual Studio 2010 Multi-monitor Support. Tags: Articles DevelopMentor Visual Studio I recently wrote an article for DevelopMentor ’s Developments entitled. Six Things That’ll Surprise You About.NET 4.0 ”. by Michael Kennedy. Read on and be pleasantly surprised! and VS 2010 Beta 2 ]. Michael C. Kennedy's Weblog - Wednesday, November 11, 2009 %>
| | |