Browse by Tags
All Tags »
Visual Studio 2005 (
RSS)
There are cases where you would be interested to load an assembly from a different directory then the root dir of your .net application. When you’ll try to do so you will face with the limitation of the fusion process (assembly loading process) – this limitation limits you to load assemblies from underneath the root dir of your application in order to guard your app from dll hell. In order to overcome this limitation you can use the old plain Unix trick… create a symbolic link to the file… there...
The VSX Developer Conference sessions covering a wide range of Visual Studio extensibility topics available online at channel 9. VS Extensibility Architecture: Intro & Advanced Topics Douglas Hodges, Principal Architect, Microsoft Extending the Visual Studio (VS) Integrated Development Environment (IDE) using the VS Package Architecture. For integrating commercial products, supporting new languages and participating as a 1st class citizen within the IDE, Visual Studio’s service and windowing...
GAT/GAX the Guidance Automation Toolkit/Extensions are hard to remove once you have them installed, following is a procedure I am using in order to migrate the GAT/GAX. Make a copy of C:\Documents and Settings\All Users\Application Data\Microsoft\Recipe Framework\ReceipeFramework.xml Edit the ReceipeFramework.xml and remove the tags inside the <GuidancePackages> key. Uninstall the GAT/GAX via the control panel. (prior to removing the packages the gat/gax wont let you uninstall it) Install the...
Are you interested in infrastructure development ? Did you even get an Exception at production time and was thinking hmm.... if i only could tell what were the parameters values of the method the throw the exception ... Well today at the Developers Academy II - 14:45 - 16:00 I'll show several tools that can help you build cool infrastructure for you development team while looking at several issues like performance, deployment etc... So if you are interested in Stack Tracing, Enterprise...
Anyone who've been developing Smart Clients (or any other Winforms based applications) using Composite UI Application block and Smart Client Software Factory was wondering how to get the great frameworks functionality for building WPF based application, WPF enable us to build rich application but building the application the right way... still missing there. Part of my day to day work at Experts4D (my own company) i'm Mentoring and Consulting, during my last 5 days WPF & CAB Internals training...
P&P release Visual Studio Team System guidance : Explained Download PDF: Explained - Branching in Team Foundation Server.pdf Download PDF: Explained - Managing Source Control Dependencies in Visual Studio Team System.pdf Download PDF: Explained - Structuring Your Solutions and Projects in Source Control Using Team Foundation Server.pdf Guidelines Download PDF: Guidelines - Source Control - v7.pdf How Tos Download PDF: How To - Migrate Source Code to TFS from VSS.pdf Download PDF: How To - Perform...
Yesterday i've delivered a Developer's ToolBox presentation in front of the Oracle .Net Forum, during the presentation i've prmised to publish an updated version of the presentation online so here it is... Click on the following image to download the updated presentation.
A question I was asked today was how to manage the same Assembly Version for several project I.e. have it managed in one place. There are several way to accomplish this task... the most simple is as follows: 1 Delete the AssemblyVersion and AssemblyFileVersion attributes from the AssemblyInfo.cs file in all the target projects. ( this will remove duplication conflicts) 2. Create a new file to host the version (I've called it FileVersion.cs in this sample) and pate the following code into the new...
The first promo video for the Microsoft Developers Academy is on the Air ! The promo is the first in a series of promos that was filmed by Microsoft Israel for the event. The event will take place at the Cinema City on the 31.1.2007 ! The promo featuring Ami Levin, Avner Kashtan , Yakov Greeshpan and me as the Bad Guys that will do anything to get into the event :-) During the event i'll be presenting 2CAB||!2CAB session, during this session I will demonstrate how easy it is to integrate win32 app...
Enterprise Library 3.0 Dev CTP is available on Code Plex since yesterday :-) This CTP Highlights are : Partial Trust Support Strong - Named Binary Assemblies Validation Application Block ( check tom's blog ) SQL Server Compact Edition support Database.UpdateDatabase now support updateBatchSize parameter Visual Studio-Integrated Configuration Editor . AppSettings support . Encryption support . Application Block Software Factory Creating a New Application Block (Solution Template) Creating a New Provider...
I was looking earlier today for some sort of code implementation as I was just too lazy to code it myself... then I remembered about google code search ... After 20 seconds I had some kind of implementation in my hand and yep I also looked at the license to see that its royalty free :-) P.S. small tip... use the advance search to limit to search to C# or whatever.
Someone asked me how to consume webservice using unmanaged c++ client. 1. Open your C++ project in Visual Studio 2003/2005 2. Right click on the project name in the solution explorer and add reference to the web service This operation will create the web service proxy and add if to your c++ solution. 3. Call the web service Assuming that you want to consume the basic HelloWorld webservice these are the lines that you need to add to your C++ app: Service::CService proxy; BSTR Result=NULL; HRESULT...
Would you run an EXE file downloaded from the net without running it through an Anti Virus ? I guess the answer is no. Would you open a source code i.e. Visual Studio Solution downloaded from the net in Visual Studio ? I guess the answer is yes. Well Think Again or just download this source code and double click the .sln file. What you will witness is a Visual Studio exploit that enables a hacker to execute arbitrary code on your station as soon as you open the .sln file. Following is the full explanation...