all groups > dotnet clr > august 2003 > threads for august 22 - 28, 2003
Filter by week: 1 2 3 4 5
Question about Assembly.Load
Posted by Lee Alexander at 8/28/2003 5:16:21 PM
Why does Assembly.Load allow this:
Assembly.Load( "mscorlib" );
if you try the following it fails as expected:
Assembly.Load( "System" );
Since it should be (for framework 1.1):
Assembly.Load( "System, Version=1.0.5000.0, Culture=neutral,
PublicKeyToken=b77a5c561934e089" );
I... more >>
Use GAC or not?
Posted by Paul at 8/28/2003 3:23:00 PM
Does anyone have recommendations on whether or not to use the Global
Assembly Cache?
Currently; we're installing a single DLL that can be used by one or more of
our applications (VB6 via interop and VB.NET).
Not sure what the GAC buys us.
Seems there may be issues trying to uninstall/install wh... more >>
Soliciting feedback on two features
Posted by Alan Shi [MSFT] at 8/28/2003 11:17:29 AM
I am collecting data for two features that shipped with the CLR in v1.0 and
v1.1. If you use and/or depend on these features, I would appreciate hearing
from you with a brief description of how you use these features.
1) .NET Application Restore tool
A few sources, including Jeffrey Richter'... more >>
Maintaining multiple assembly versions withtout using the GAC
Posted by Robert Myhill at 8/27/2003 10:04:46 AM
Say I have
Foo.dll [Version 1.0.0.0, culture=null, public key token=ABC]
Foo.dll [Version 2.0.0.0, culture=null, public key token=ABC]
The second Foo.dll is a new major revision of the first Foo.dll.
And I don't want to privately deploy these assemblies, so they do not go in
the GAC... more >>
Getting mouse and keyboard information in a Service
Posted by David Stevenson at 8/27/2003 8:38:36 AM
I'm writing a service that tracks how much of the time you use the mouse vs
the keyboard. I've found that under Windows XP professional, I can get the
cursor position using GetCursorPos, but I am as of yet unable to get
information about the keyboard (I'm currently trying GetAsyncKeyState).
U... more >>
Properly referencing assemblies that reference other assemblies
Posted by Robert Myhill at 8/27/2003 8:14:08 AM
Say someone gives me AssemblyA.dll, which I install in my GAC. I then write
a new program, which does Assembly.Load(AssemblyA.dll), and compile my new
program to create MyApp.exe. So far so good.
Now, I don't know what, if any, assemblies AssemblyA.dll loads when it runs,
and this could cau... more >>
Is this a memory leak?
Posted by ianstirkcv NO[at]SPAM yahoo.com at 8/27/2003 3:00:13 AM
Hello,
I wonder if you can please help…
We are running a web application built using .net framework version
1.0, service pack 2, running on Windows 2000 server, service pack 3.
The server has 1 gigabytes of RAM.
We are using Perfmon to monitor memory usage of aspnet_wp.exe, CPU
usage, a... more >>
Assembly Version Issues
Posted by Christopher Pragash at 8/26/2003 8:11:12 PM
Hello All,
I am developing a "Business Object" Assembly and "Data Object" Assembly
(Remoted) , both of which would be called from .NET and from ASP (using COM
layer Interop). I deployed all the assemblies into the GAC and it had a
specific version when I deployed it. I developed a service that... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
How to properly deploy shareable assemblies to a server
Posted by Robert Myhill at 8/26/2003 10:57:12 AM
I'm looking for a .NET "best practices" opinion on the following.
I have a .NET assembly (call it MyApp.dll) that I want to make generally
available to other people in my company. I will periodically be coming out
with new minor versions (bug fixes) and major versions (new features) of
MyApp.... more >>
Assembly Version
Posted by Christopher Pragash at 8/26/2003 10:26:17 AM
Hello all,
I have an issue with the Assembly Version. I am getting 0.0.0.0 as the
version number!!! I tried recompilng ...but no luck....
Any ideas why this is happening and how I could overcome this one!!
Thanks for all the help in advance.
regards,
Chris
... more >>
Question about MyApp.exe.config file if MyApp.exe is located on a server
Posted by Robert Myhill at 8/26/2003 10:20:46 AM
The MyApp.exe.config file must be located in the same directory as the
MyApp.exe file. This works fine if the .exe file is on the local machine,
e.g. if it's in C:\MyApp\MyApp.exe, then it's easy to create a
C:\MyApp\MyApp.exe.config file to go along with it.
But what if MyApp.exe is on a ser... more >>
MVPs
Posted by Sim at 8/26/2003 6:32:00 AM
What is a MVP? and how do you become one?
Sim
... more >>
Help! I need to prevent .NET exception dialogs from displaying.
Posted by Ken Varn at 8/25/2003 6:04:51 PM
I have an unattended 24/7 system that runs a few .NET applications. I
really need to prevent any unhandled exceptions from displaying the
exception dialog box. I want the application to just terminate. This was
available with Dr. Watson, but I can't figure out how to do it for .NET
apps. Can... more >>
MethodImplOptions.InternalCall gives Security Exception
Posted by Robert A. van Ginkel at 8/25/2003 11:48:12 AM
I have a strange C# problem. Is the following a bug? Because it should be
possible to run unsafe code. How can I accomplish this? And where can I read
more about this, because documentation on this is rare.
I have a project where i need to use some internal calls. In this project I
have 'Allow... more >>
Class Viewer
Posted by RAyRAy at 8/24/2003 12:18:11 AM
I remember in the newer versions of Visual Studio.NET
there was a program where you can just point to an exe
and it sort of gives you a list of what classes are
inside, their methods and paramenters, and even Microsoft
Intermidate Language. Did they discontinue this program
that came as a... more >>
Gotcha
Posted by Tejasswi Redkar at 8/23/2003 12:46:15 AM
This is why move to Linux - Java.
http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&oe=UTF-8&selm=%24i%23
gqxaVDHA.2108%40cpmsftngxa06.phx.gbl
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!... more >>
Contexts and Interception for Multiple Services
Posted by qdm0308 NO[at]SPAM yahoo.com at 8/22/2003 3:32:50 PM
I'd sure appreciate help from any of you experienced with creation of
aspect-oriented services, where calls to objects are intercepted and
routed through IMessageSinks.
We have taken this approach to transaction management. Our
"transaction-able" objects extend ContextBoundObject, and we've
... more >>
|