How to use batch assembly for a VB.NET project in Visual Studio 2008

In Visual Studio 2008, I don’t see the batch build options for VB.NET projects (as for C ++ projects).

I am new to VB.NET, but does it have other options for creating a batch assembly rather than creating a batch file?

0
source share
1 answer

For the button to appear (written from the point of view of Visual Studio 2005, but probably the same, or at least very similar to Visual Studio 2008):

Right-click somewhere in the Visual Studio toolbar and select "Customize ...", then on the "Commands" tab in the "Categories" list, select "Build".

You should now have a list of Build commands in the Commands list, one of which should be Batch Build .... Drag it somewhere to the toolbar.

However, I'm not sure if batch assemblies are supported for Visual Basic, so I'm not sure if this will help you.

+1
source

Source: https://habr.com/ru/post/1203665/


All Articles