views:

64

answers:

0

I have a project using TXTextControl. This project contains a [myproject].exe.licenses file.

Originally, I had a set of NAnt scripts that compile the executable and other assemblies. The script used to build the executable has the following lines:

<resources>
    <include name="${working.folder}\*.licenses" />
</resources>

We've replaced our NAnt scripts with msbuild scripts. However, when I include the following lines in the vbproj file:

<EmbeddedResource Include="[myproject].exe.licenses">
</EmbeddedResource>

I get licensing errors when trying to use the application.

Is in the vbproj file equivalent to in the NAnt script? Am I missing something?