Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change Build Action” to “Embedded Resource in c#

Tags:

c#

how to add change .dll file Build Action” to “Embedded Resource in c#.

like image 893
Biswo Avatar asked Dec 12 '22 02:12

Biswo


2 Answers

  1. In the Solution Explorer window in Visual Studio, click on the file you want to modify.
  2. In the Properties windows, change the Build Action to Embedded Resource.
like image 102
StyxRiver Avatar answered Dec 23 '22 12:12

StyxRiver


Choose the resource, and right click on it and open the Properties window. In the Properties window, set the BuildAction to "Embedded Resource"

like image 30
Apparao Avatar answered Dec 23 '22 14:12

Apparao