473,785 Members | 2,391 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Where is System.Reflecti on.dll assembly?

Hi, I am using FXCop on my c# project and it is complaining about
signing the assembly with a strong name key. All the documentation I
can find says to do:

using System.Reflecti on;
....
[assembly:Assemb lyKeyFileAttrib ute("foo.key")] namespace Foo

Which is fine, except that I need to add a reference in my Project to
the System.Reflecti on.dll assembly and I can't find it. I have .NET
2.0 Framework installed and can find all my other necessary assemblies
at C:\WINDOWS\Micr osoft.NET\Frame work\v2.0.50727 \. Do I need to
download System.Reflecti on somewhere? I thought it was a core
assembly? Help!

Dec 14 '06 #1
3 17616
1) System.Reflecti on is a namespace in the Microsoft Common Runtime Library
(mscorlib.dll), normally you don't need to add the reference to this
assembly unless you accidentally removed it.

2) Why exactly do you need the System.Reflecti on namespace for?

3) Also try to centralize assembly attributes in \Properties\Ass emblyInfo.cs
that's what it is made for.

Gabriel Lozano-Morán
The .NET Aficionado
http://www.pointerx.net

<gr**********@g mail.comwrote in message
news:11******** **************@ 79g2000cws.goog legroups.com...
Hi, I am using FXCop on my c# project and it is complaining about
signing the assembly with a strong name key. All the documentation I
can find says to do:

using System.Reflecti on;
...
[assembly:Assemb lyKeyFileAttrib ute("foo.key")] namespace Foo

Which is fine, except that I need to add a reference in my Project to
the System.Reflecti on.dll assembly and I can't find it. I have .NET
2.0 Framework installed and can find all my other necessary assemblies
at C:\WINDOWS\Micr osoft.NET\Frame work\v2.0.50727 \. Do I need to
download System.Reflecti on somewhere? I thought it was a core
assembly? Help!

Dec 14 '06 #2
Thank you on all three counts, Gabriel!

Gabriel Lozano-Morán wrote:
1) System.Reflecti on is a namespace in the Microsoft Common Runtime Library
(mscorlib.dll), normally you don't need to add the reference to this
assembly unless you accidentally removed it.

2) Why exactly do you need the System.Reflecti on namespace for?

3) Also try to centralize assembly attributes in \Properties\Ass emblyInfo..cs
that's what it is made for.

Gabriel Lozano-Morán
The .NET Aficionado
http://www.pointerx.net

<gr**********@g mail.comwrote in message
news:11******** **************@ 79g2000cws.goog legroups.com...
Hi, I am using FXCop on my c# project and it is complaining about
signing the assembly with a strong name key. All the documentation I
can find says to do:

using System.Reflecti on;
...
[assembly:Assemb lyKeyFileAttrib ute("foo.key")] namespace Foo

Which is fine, except that I need to add a reference in my Project to
the System.Reflecti on.dll assembly and I can't find it. I have .NET
2.0 Framework installed and can find all my other necessary assemblies
at C:\WINDOWS\Micr osoft.NET\Frame work\v2.0.50727 \. Do I need to
download System.Reflecti on somewhere? I thought it was a core
assembly? Help!
Dec 14 '06 #3
Just ignore my question on why you need the System.Reflecti on namespace.

Also did you know that in Visual Studio 2005 it is possible to sign your
projects through the properties? This will inject the correct attributes in
AssemblyInfo.cs .

Right-click a project and select Properties and then click on the tab
"Signing".

Gabriel Lozano-Morán
The .NET Aficionado
http://www.pointerx.net

<gr**********@g mail.comwrote in message
news:11******** **************@ t46g2000cwa.goo glegroups.com.. .
Thank you on all three counts, Gabriel!

Gabriel Lozano-Morán wrote:
1) System.Reflecti on is a namespace in the Microsoft Common Runtime
Library
(mscorlib.dll), normally you don't need to add the reference to this
assembly unless you accidentally removed it.

2) Why exactly do you need the System.Reflecti on namespace for?

3) Also try to centralize assembly attributes in
\Properties\Ass emblyInfo.cs
that's what it is made for.

Gabriel Lozano-Morán
The .NET Aficionado
http://www.pointerx.net

<gr**********@g mail.comwrote in message
news:11******** **************@ 79g2000cws.goog legroups.com...
Hi, I am using FXCop on my c# project and it is complaining about
signing the assembly with a strong name key. All the documentation I
can find says to do:

using System.Reflecti on;
...
[assembly:Assemb lyKeyFileAttrib ute("foo.key")] namespace Foo

Which is fine, except that I need to add a reference in my Project to
the System.Reflecti on.dll assembly and I can't find it. I have .NET
2.0 Framework installed and can find all my other necessary assemblies
at C:\WINDOWS\Micr osoft.NET\Frame work\v2.0.50727 \. Do I need to
download System.Reflecti on somewhere? I thought it was a core
assembly? Help!

Dec 14 '06 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
2744
by: Scott Reynolds | last post by:
I am having a problem exposing a class inherited from the collection base class as a webservice. If I expose the collection on a web page all works well and I am very happy. However when I try and expose this via a web service I get a weird error saying that the dll could not be found. The specific error is: I can't figure it out. I thought it was to do with reflection but I am able to load and view the webservice definition which...
3
17070
by: System.Reflection Activator | last post by:
************************************** //Load the Assembly Assembly a = Assembly.LoadFrom(sAssembly); //Get Types so we can Identify the Interface. Type mytypes = a.GetTypes(); BindingFlags flags = (BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Static | BindingFlags.Instance | BindingFlags.DeclaredOnly); //Iterate through the Assembly to find Class with a Public Interface.
5
1950
by: Mark Kamoski | last post by:
Hi Everyone-- How can one get the line number of where an error was thrown and/or caught? For example, note the following, for use at any given point in a piece of code: ....to get the current Assembly's name, one can use this... System.Reflection.Assembly.GetExecutingAssembly().GetName().Name
2
299
by: Gujju | last post by:
Hi all, I m new to this class.. With System.Reflection... u can create run time objects for a specified class in a assembly... Now if once the Assembly is loaded in the memory then does that means that it loads the Assembly again when we call the same function..
2
1714
by: Doug | last post by:
I've installed ASP.NET onto our web server (Win2k/unsure of IIS version) this morning. I created a simple ASPX page in Notepad that writes out an asp:Label control to the page and dynamically populates it with the current date/time. I ran the page and received an error in my browser, "Server Application Unavailable " and to check the application event log on the server. On the server, I see a Warning event, an information event and an...
1
789
by: Tom | last post by:
Having some trouble with my assembly running another assembly, and I am starting to suspect this may be a windows bug or a framework bug. Everything works fine on my development workstation (XP Pro, FW 1.1). When I copy the binary assemblies to the server machine (2000 Server SP4, FW 1.1) where the apps will be run, I have problems...specifically: Unhandled Exception: System.TypeLoadException: Could not load type <vendor type here>...
3
22148
by: Frank Uray | last post by:
Hi all I have a problem with loading a assembly ... I am trying to do the following: - I have a directory with a dll (assembly) in it (not the currect dir.) - I am trying to load this assembly, run a method in it, and than close it. The question would be: How is the right way to do it ????
10
6818
by: Mike9900 | last post by:
Hello, I would like to store application expiration date in a file and store that file in a secure place, so the application can access the file for all the users on that computer. IsolatedStorage is a good technique but it is for the each user only and is not machine level. Registry is not good because the user may not have access permission. Application directory is not good because the file could be deleted and so the...
5
13666
by: deepakkumarb | last post by:
I am getting this exception while executing non query from .NET code to oracle 10g DB. Can you plz help System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt. at System.Reflection.AssemblyName.nInit(Assembly& assembly, Boolean forIntrospection, Boolean raiseResolveEvent) at System.Reflection.AssemblyName.nInit() at...
0
9645
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9480
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10325
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9950
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8972
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7499
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6740
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
4053
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3646
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.