Pregunta

I am thinking about starting an open source project and right now I am deciding what technology stack to use.

At the moment, my main coding experience is using C# and I am wondering if I can build a truly open source application using .Net Core?

I appreciate that this might sound like the answers to this question might be quite opinion-based, so I will be more than happy to correct it and add more details if needed.

¿Fue útil?

Solución

If an application is open-source or not depends on all the copyright licenses that apply to the different parts of the application. Your code must be published under an open-source license and all third-party code that you use must have a compatible license.

The .Net Core framework is licensed under the MIT license, which is a permissive open-source license. This makes it very much possible to build open-source applications using the .Net Core framework.

Otros consejos

I am wondering if I can build a trully open source application using .Net Core?

Yes you can if you chose to. .Net Core is open source itself, covered by the MIT licence and you are free to use it for any purpose (subject to the terms of the MIT licence), including open source projects of your own.

Licenciado bajo: CC-BY-SA con atribución
scroll top