<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>RegAsm &#8211; Sibeesh Passion</title>
	<atom:link href="https://sibeeshpassion.com/tag/regasm/feed/" rel="self" type="application/rss+xml" />
	<link>https://sibeeshpassion.com</link>
	<description>My passion towards life</description>
	<lastBuildDate>Wed, 02 Jun 2021 15:15:29 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>/wp-content/uploads/2017/04/Sibeesh_Passion_Logo_Small.png</url>
	<title>RegAsm &#8211; Sibeesh Passion</title>
	<link>https://sibeeshpassion.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Fix to RegAsm : warning RA0000 : No types were registered</title>
		<link>https://sibeeshpassion.com/fix-to-regasm-warning-ra0000-no-types-were-registered/</link>
					<comments>https://sibeeshpassion.com/fix-to-regasm-warning-ra0000-no-types-were-registered/#disqus_thread</comments>
		
		<dc:creator><![CDATA[SibeeshVenu]]></dc:creator>
		<pubDate>Thu, 21 Jan 2016 09:54:00 +0000</pubDate>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[AssemblyInfo]]></category>
		<category><![CDATA[Command Prompt]]></category>
		<category><![CDATA[RegAsm]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<guid isPermaLink="false">http://sibeecst_passion.com/?p=11145</guid>

					<description><![CDATA[In this post we will discuss one fix for the issue &#8220;RegAsm : warning RA0000 : No types were registered&#8221;. You may get this warning when you try to register an assebly using RegAsm. if you need to know more about RegAsm, you can see here. Solution to &#8220;RegAsm : warning RA0000 : No types were registered&#8221; Go to your AssemblyInfo.cs. You can see that class under property. What is AssemblyInfo.cs Basically AssemblyInfo.cs is used to document all of the dll&#8217;s or exe&#8217;s you have in your project. It can include the informations about from where the codes comes from, [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>In this post we will discuss one fix for the issue &#8220;RegAsm : warning RA0000 : No types were registered&#8221;. You may get this warning when you try to register an assebly using RegAsm. if you need to know more about RegAsm, you can see <a href="https://msdn.microsoft.com/en-us/library/tzat5yw6(v=vs.110).aspx" target="_blank" rel="noopener">here</a>. </p>
<p><strong>Solution to &#8220;RegAsm : warning RA0000 : No types were registered&#8221;</strong></p>
<p>Go to your AssemblyInfo.cs. You can see that class under property.</p>
<div id="attachment_11146" style="width: 490px" class="wp-caption alignnone"><a href="http://sibeeshpassion.com/wp-content/uploads/2016/01/AssemblyInfo.png"><img fetchpriority="high" decoding="async" aria-describedby="caption-attachment-11146" src="http://sibeeshpassion.com/wp-content/uploads/2016/01/AssemblyInfo.png" alt="AssemblyInfo" width="480" height="146" class="size-full wp-image-11146" srcset="/wp-content/uploads/2016/01/AssemblyInfo.png 480w, /wp-content/uploads/2016/01/AssemblyInfo-300x91.png 300w, /wp-content/uploads/2016/01/AssemblyInfo-400x122.png 400w" sizes="(max-width: 480px) 100vw, 480px" /></a><p id="caption-attachment-11146" class="wp-caption-text">AssemblyInfo</p></div>
<p><strong>What is AssemblyInfo.cs</strong></p>
<p>Basically AssemblyInfo.cs is used to document all of the dll&#8217;s or exe&#8217;s you have in your project. It can include the informations about from where the codes comes from, and the version details. You can always check <a href="https://support.microsoft.com/en-us/kb/556041" target="_blank" rel="noopener">here </a>for more information regarding AssembleInfo class file. </p>
<p>Open the file and search for ComVisible. You can see ComVisible has been set to false as follows. </p>
<p>[csharp]<br />
[assembly: ComVisible(false)]<br />
[/csharp]</p>
<blockquote><p>
Setting ComVisible to false makes the types in this assembly not visible to COM components.  If you need to access a type in this assembly from COM, set the ComVisible attribute to true on that type.
</p></blockquote>
<div id="attachment_11147" style="width: 644px" class="wp-caption alignnone"><a href="http://sibeeshpassion.com/wp-content/uploads/2016/01/Set_ComVisible_to_true.png"><img decoding="async" aria-describedby="caption-attachment-11147" src="http://sibeeshpassion.com/wp-content/uploads/2016/01/Set_ComVisible_to_true-1024x236.png" alt="Set_ComVisible_to_true" width="634" height="146" class="size-large wp-image-11147" srcset="/wp-content/uploads/2016/01/Set_ComVisible_to_true-1024x236.png 1024w, /wp-content/uploads/2016/01/Set_ComVisible_to_true-300x69.png 300w, /wp-content/uploads/2016/01/Set_ComVisible_to_true-768x177.png 768w, /wp-content/uploads/2016/01/Set_ComVisible_to_true-400x92.png 400w, /wp-content/uploads/2016/01/Set_ComVisible_to_true.png 1698w" sizes="(max-width: 634px) 100vw, 634px" /></a><p id="caption-attachment-11147" class="wp-caption-text">Set_ComVisible_to_true</p></div>
<p>Now if you run your command with RegAsm, you will not get this warning. </p>
<p><strong>Conclusion</strong></p>
<p>Did I miss anything that you may think which is needed? Could you find this post as useful? I hope you liked this article. Please share me your valuable suggestions and feedback.</p>
<p><strong>Your turn. What do you think?</strong></p>
<p>A blog isn&#8217;t a blog without comments, but do try to stay on topic. If you have a question unrelated to this post, you’re better off posting it on C# Corner, Code Project, Stack Overflow, Asp.Net Forum instead of commenting here. Tweet or email me a link to your question there and I’ll definitely try to help if I can.</p>
<p>Kindest Regards<br />
Sibeesh Venu</p>
]]></content:encoded>
					
					<wfw:commentRss>https://sibeeshpassion.com/fix-to-regasm-warning-ra0000-no-types-were-registered/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
