You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
(3) |
Jul
(1) |
Aug
(3) |
Sep
(11) |
Oct
(1) |
Nov
(10) |
Dec
(11) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(38) |
Feb
(1) |
Mar
(9) |
Apr
(3) |
May
(2) |
Jun
(2) |
Jul
(1) |
Aug
|
Sep
(10) |
Oct
(11) |
Nov
(9) |
Dec
(9) |
2005 |
Jan
(3) |
Feb
(2) |
Mar
(4) |
Apr
(3) |
May
(5) |
Jun
(4) |
Jul
(1) |
Aug
(1) |
Sep
(1) |
Oct
|
Nov
(12) |
Dec
(4) |
2006 |
Jan
|
Feb
(2) |
Mar
(13) |
Apr
(2) |
May
(4) |
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
2007 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(2) |
2009 |
Jan
(5) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Matthew M. <ma...@ac...> - 2003-09-23 20:31:43
|
VS.NET 2002 or 2003? M=E5rten Gustafsson wrote: > Got this message in a popup when trying to use nprof in visual stud= io=20 > .net.: > ------------------------- > The Add-in 'nprof Integration' failed to load or caused an exceptio= n.=20 > Would you like to remove this Add-in? If you choose yes, you will n= eed=20 > to reinstall the Add-in to use it again. > > Error Message: Class not registered > > Error number: 80040154 > > Yes No > -------------------------- > I tried to send a bit map as an attachment, but the reply was that = the=20 > message was too big. > > Thanks > > M=E5rten Gustafsson > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Nprof-developers mailing list > Npr...@li... > https://lists.sourceforge.net/lists/listinfo/nprof-developers > . > |
From:
<mar...@ho...> - 2003-09-23 20:05:30
|
Got this message in a popup when trying to use nprof in visual studio .ne= t.: ------------------------- The Add-in 'nprof Integration' failed to load or caused an exception.=20 Would you like to remove this Add-in? If you choose yes, you will need=20 to reinstall the Add-in to use it again. Error Message: Class not registered Error number: 80040154 Yes No -------------------------- I tried to send a bit map as an attachment, but the reply was that the=20 message was too big. Thanks M=E5rten Gustafsson |
From:
<mar...@ho...> - 2003-09-23 18:53:25
|
Hi Got this message trying to use nprof in visual studio .net. M=E5rten |
From: Matthew M. <ma...@ac...> - 2003-09-05 20:49:08
|
These are my goals for the next nprof release (0.5). It's mostly a maintenance/cleanup release. If you've got anything you'd like to see, or you need me to do any work for you to try hacking on nprof, let me know! - NAnt build files (will make releasing much less painful) - Replacing the sorted list view with the Genghis version - Proper about box + license - Some cleanup work on the VS.NET add-in. For the release after that, here are some additional goals: - Basic ASP.NET profiling (I finally figured out how to do this! :)) - Fix random bug where profiling results are corrupted while being sent back (need a reproducable test case!) - Ensuring all numbers reported are correct - Tests applications with multiple threads and multiple appdomains Matt. |
From: Matthew M. <ma...@ac...> - 2003-09-05 20:35:57
|
I've been thinking about how I can enhance the VS.NET add-in to be a bit more useful. Since I don't have a VS integration partner license, I need to work around the limitations of only being an add-in (versus a full-fledged package). I'd like to be able to host my nprof profile run windows as MDI documents, but this is only available to full pacakges (from what I can tell). I believe that I might be able to hijack the webbrowser control (as the AnhkSVN add-in does) to display a webbrowser-hosted .NET control. The other possibility is to determine how Microsoft manages to get its packages into Visual Studio without a VSIP key (note that all other packages have a string resource that contains their VSIP key!). This *might* be able to give me the functionality I'm looking for. If anyone has any ideas, I'm open to suggestions. Matt. |
From: Matthew M. <ma...@ac...> - 2003-09-03 14:42:46
|
Hi Mike... I've take a look at the source and the architecture in the latest version has changed a little. Some older methods still exist within the code. The object you'll want to start with is the project (ProjectInfo). At this moment, the profiler form only supports being displayed after the run has been completed. This will likely change in the future to make embedding easier. Here are the approximate steps: 1. Create a new project info, set its app name, argument and working directory. 2. Create a profiler object and optionally call CheckSetup(). 3. Call CreateRun on the ProjectInfo object to retreive a new profiler run. 4. Hook up your event handlers to the run's StateChanged event. This event will tell you when the run completes. 5. Call run.Start() 6. In your run's StateChanged event handler, check for the completed state. 7. When the run is complete, create a new ProfilerControl(). 8. Assing the run's ThreadInfoCollection to the ProfilerControl's ThreadInfoCollection Let me know if you need anythink else... Matt. Mike Krueger wrote: > Hi > > I try to integrate NProf into the next SharpDevelop version, I tried > to use this code from the VSNetAddIn: > > ProfilerForm pf = new ProfilerForm(); > pf.Owner = null; > pf.Show(); > pf.EnableAndStart(); > > It is exececuted before I start the executable with Process.Start. In > the application when I'm starting nprof the > main screen of NProf pops up but is closed before the application > which should be profiled has finished it's > execution. > It would be kind to help me with this issue. > > Another apporach would be to let the nprof gui specify the assembly to > profile with command line arguments. > > Regards > Mike > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Nprof-developers mailing list > Npr...@li... > https://lists.sourceforge.net/lists/listinfo/nprof-developers > |
From: Mike K. <mi...@ic...> - 2003-09-03 09:11:32
|
Hi Ok, I've seen that your are not using the toolbars from utility library (then the command bar lib makes no sense). Sorting the list view and folder browser can be obtained from : http://www.sellsbrothers.com/tools/Genghis/ regards Mike > Hi > > The license from the utility library changed to an open source > 'unfriendly' one. I recommend using the CommandBar > library (http://www.aisto.com/roeder/dotnet/) instead it is under BSD ... > > Because the author is going commercial with this library > (http://www.sharplibrary.com/). > > Regards > Mike > |
From: Mike K. <mi...@ic...> - 2003-09-03 07:30:19
|
Hi I try to integrate NProf into the next SharpDevelop version, I tried to use this code from the VSNetAddIn: ProfilerForm pf = new ProfilerForm(); pf.Owner = null; pf.Show(); pf.EnableAndStart(); It is exececuted before I start the executable with Process.Start. In the application when I'm starting nprof the main screen of NProf pops up but is closed before the application which should be profiled has finished it's execution. It would be kind to help me with this issue. Another apporach would be to let the nprof gui specify the assembly to profile with command line arguments. Regards Mike |
From: Mike K. <mi...@ic...> - 2003-09-03 07:23:50
|
Hi The license from the utility library changed to an open source 'unfriendly' one. I recommend using the CommandBar library (http://www.aisto.com/roeder/dotnet/) instead it is under BSD ... Because the author is going commercial with this library (http://www.sharplibrary.com/). Regards Mike |
From: Matthew M. <ma...@ac...> - 2003-08-29 18:43:02
|
Hi Jerry. Unfortunately, the VS.NET add-in is pretty simplistic at this point. I haven't had a chance to test it with the latest alpha. It also hasn't been tested with VS.NET 2003, but if you'd like to try it, you'll need to modify the .reg file to add 7.1 support. In "RegisterVSNetAddin.reg", add a second block like the first one with "7.1" as the version. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\7.1\AddIns\NProf.Connect] "CommandPreload"=dword:00000001 "Description"="nprof Profiler Integration" "FriendlyName"="nprof Integration" "LoadBehavior"=dword:00000003 Let me know how it goes. Matt. Houston, Jerry wrote: > I've been trying to get nprof 0.4a running with VS 7.1 (.NET 1.1) and > so far have had no luck. I was hoping that it might work better than > a commercial profiler that our company bought. (Which dies, and > blames "invalid IUnknown interface pointers" that work just fine > outside the profiler.) > > I have an application in dire need of some profiling, and it's a > little more sublime than the usual .NET application. Mine starts with > an executable (a test harness) that uses .NET Remoting to launch an > executable whose process hosts the DLL's for winforms and automation > of Word via a PIA to create documents with tables filled with data > fetched from our database. I don't expect that COM interface between > my app and Word to be quick, but I was hoping I could improve it a > bit, and knowing where the app spends most of its time would sure help. > > I tried the separate UI, but it appeared to kill off the process I was > running prematurely. If it was designed for .NET 1.0, as I suspect at > this point, that's certainly understandable. So I figured I'd give > the VS addin a try. > > I did hack the RegisterVSNetAddIn.reg file to modify the registry > entries for VS 7.1, not 7.0, but that obviously isn't enough. There > must be differences between the AddIns for those two versions that I > haven't accounted for. The nprof addin shows up in the AddIn > manager's listing, but there's a startup error saying that it can't > load the addin because it's not registered. > > Has anyone been using nprof successfully with .NET 1.1 and VS 7.1? If > so, I'd sure like to learn the secret, because this looks like it > might be a very useful tool to have around. And yes, I'd be > interested in helping with development. I just don't know beans about > VS addins, and never had a reason to learn anything about them. > > Regards, > > Jerry Houston > AMS Services, Inc. > Bothell, WA |
From: Houston, J. <jho...@am...> - 2003-08-28 23:02:29
|
I've been trying to get nprof 0.4a running with VS 7.1 (.NET 1.1) and so far have had no luck. I was hoping that it might work better than a commercial profiler that our company bought. (Which dies, and blames "invalid IUnknown interface pointers" that work just fine outside the profiler.) I have an application in dire need of some profiling, and it's a little more sublime than the usual .NET application. Mine starts with an executable (a test harness) that uses .NET Remoting to launch an executable whose process hosts the DLL's for winforms and automation of Word via a PIA to create documents with tables filled with data fetched from our database. I don't expect that COM interface between my app and Word to be quick, but I was hoping I could improve it a bit, and knowing where the app spends most of its time would sure help. I tried the separate UI, but it appeared to kill off the process I was running prematurely. If it was designed for .NET 1.0, as I suspect at this point, that's certainly understandable. So I figured I'd give the VS addin a try. I did hack the RegisterVSNetAddIn.reg file to modify the registry entries for VS 7.1, not 7.0, but that obviously isn't enough. There must be differences between the AddIns for those two versions that I haven't accounted for. The nprof addin shows up in the AddIn manager's listing, but there's a startup error saying that it can't load the addin because it's not registered. Has anyone been using nprof successfully with .NET 1.1 and VS 7.1? If so, I'd sure like to learn the secret, because this looks like it might be a very useful tool to have around. And yes, I'd be interested in helping with development. I just don't know beans about VS addins, and never had a reason to learn anything about them. Regards, Jerry Houston AMS Services, Inc. Bothell, WA |
From: Tom C. <tca...@OA...> - 2003-08-22 12:21:07
|
=20 =20 ------------------------------------- Tom Cabanski, President Objective Advantage, Inc. http://www.oai.cc Phone: +1-281-348-2517x15 =20 =20 |
From: Todd B. <bau...@ho...> - 2003-07-23 02:01:47
|
Does NProf support profiling ASP.NET applications? If so, how? It's a great looking product. I just need to use it to profile an ASP.NET application and I can't figure out a way to do it. _________________________________________________________________ Help STOP SPAM with the new MSN 8 and get 2 months FREE* http://join.msn.com/?page=features/junkmail |
From: Matthew M. <ma...@ac...> - 2003-06-21 15:47:45
|
I've added an RSS feed to make it easier for people to keep on top of nprof news. Thanks for the suggestion! http://nprof.sf.net/rss.xml -- Matthew Mastracci <ma...@ac...> |
From: CarterWorld E. \(KC's Mailroom\) <KC....@Ca...> - 2003-06-14 23:39:08
|
I want to keep up with your work. Do you have a RSS feed for your blog? Regards... K. Carter |
From: Matthew <mma...@ca...> - 2003-06-14 21:28:22
|
I've just uploaded the nprof 0.4 release to Sourceforge. It's sporting a new and improved tabbed interface and some miscellaneous bug fixes. Drop some feedback here if you have any issues or comments. Thanks! Matt. |
From: Matthew M. <ma...@ac...> - 2003-05-14 02:37:54
|
-- Matthew Mastracci <ma...@ac...> |