2

MIT License gives you permissions to use the software commercially without any restrictions. You need only give credit to the author.

What I am going to use for my project (that will be commercial) that uses this license:

  • VS Code
  • a bunch of extensions

So I need to credit all of the authors of software I will use to write my own code.

Those are my questions.

  1. Do I need to credit in my case, as I only used the "environment" to code.
  2. Where should I credit, considering that the project won't be open-source. Inside the app under credits?

1 Answers1

1

Using a binary program to develop your own software does not affect your source code under the terms of any open source license.

The open source licenses are about copying all or some of the source code used to make an application or library, in your example that is VS Code, and incorporating that projects source code into your applications source code.

This also means you need to keep track of any libraries you use from your source code, as for example, the GPL considers linking to a GPL library as incorporating its source code into your project. Check whether there is a linking exception applied to any GPL libraries that you want to use.

If your project is compiled from source code that only you have written, then you are free to use any licensing terms you want for your end product and give yourself credit wherever you wish.

One note of caution, if a plugin/extension to your IDE or source code editor is used to "inject" source code snippets into the code you are writing, then you should check whether that code requires you to follow any licensing terms.

sambler
  • 1,505
  • 6
  • 6