Create a plugin with class library that contains an html,css file

Viewed 41

i want to make an plugin that contains a simple html button or label to later use on my ASP.NET website. Any tips on how to do this?

And i guess this class library can be made into a DLL that can be used. Is this also possible if there are HTML,CSS files included?

1 Answers

You can set the build action property of your files ( such as HTML, CSS, Js, Image,...) as "Embedded resource".

Related