user1320370
user1320370

Reputation: 95

Netbeans there is a way to create an empty project?

I 'am a Visual Studio (VB.net / C#) programmer and I have installed Netbeans.

When I open a new project 'Java application' don't create a new EMPTY project but add the project to the other previous projects.

In Visual Studio (and all other IDEs) if I choose 'new project' after I see ONLY my new project and not all projects.

How can I do to create only a new empty project with Netbeans ?

P.S.

I don't want use Eclipse becouse I need a Visual Ide (form in particual) and Netbeans see better for this point.

Thank you !

Upvotes: 1

Views: 5066

Answers (4)

Luis Carlos
Luis Carlos

Reputation: 375

There's no explicit form for doing that. As a workaround you can create a project of any type according what you will want to do (Java, C++, PHP, HTML, etc), and then delete the resources created automatically except "nbproject" folder. With this approach you have something similar to an empty project. I recently used this trick for group some modules created for PrestaShop and then push them to Git VCS as if it were a single project, when actually each module is an independent project folder.

enter image description here

Upvotes: 0

Gangnus
Gangnus

Reputation: 24484

  • In Tools-Plugins install Freeform project Extras.
  • Create
    • Java Free-form project or
    • empty Ant-based project or
    • Skeletal Ant-based project

Upvotes: 1

Puce
Puce

Reputation: 38152

Use:

File->Project Group->New Group...

Upvotes: 0

Johm Don
Johm Don

Reputation: 639

Right click on the other projects and choose "Close Project"

Upvotes: 0

Related Questions