Do I have to pay a fee to develop or deploy a .NET

2020-02-17 10:02发布

问题:

I have heard that .NET is not free and that I have to pay Microsoft if I develop a .NET application. Is this true? If so:

  1. What do I have to pay?

  2. I'm a subscriber to the MSDN via the Academic Alliance (we download a variety of Microsoft Software products for free, like VS2008 and Windows Server 2008). Do I have to pay for the software that I make with these tools?

  3. What about web apps with ASP.NET? Is there a payment due when I host my application or do I just pay for the technology?

EDIT:

So what you are saying is that it's the same to develop a web application using ASP.NET or PHP (ignoring technical issues, just payment side), all what I have to pay is the hosting fees?

EDIT 2:

.NET rules :)

回答1:

There is nothing about .NET that requires you to pay.

Often, you will hear that it is not free, but this is referring to the GNU concept of "Free" as in "freedom", not free as in price (or, in their words, .net is free as in beer but not free as in freedom).

You can use your student license to create .net applications. You can also download VS 2008 Express Edition, which is fully functional to develop.

Alternatively, you can develop in .NET using non-Microsoft products. Mono includes a completely separate, free runtime. There are even free IDEs available, such as SharpDevelop.

--- EDIT ----

Yes. You can use .NET to develop and deploy a website, an application, or anything else. There is nothing in the technology itself that requires payment. The only thing that requires payment is certain tools (such as Visual Studio Professional Edition or the Visual Studio Team Editions). There are lots of ways to develop with .NET for free.

For free ASP.NET development, you have two options. The first is to use the Mono Project's ASP.NET Implementation to run your site. This is completely free, and handles asp.net sites.

However, if you are paying for hosting, your host is paying the licensing fees for Microsoft IIS and the hosting of asp.net sites. The cost to you is included as part of the hosting.



回答2:

You have heard incorrectly.

You can develop .NET apps for free. The compilers/SDK are free and can be downloaded from Microsoft. The framework/runtime is free for your users.

The higher end versions of Visual Studio are not free, but Express versions are available for free.



回答3:

The .net Framework is free to download and develop against. Visual Studio .net costs money except for express edition, which is free, but includes the .net Framework. The cost depends on the flavor.

ASP .net is similar--you're not paying for the framework, you're paying for a copy of Windows with IIS.



回答4:

Developing in .NET is free in terms of cost. The framework and the SDK cost nothing.

The tools you might use to develop a .NET application are not always free. The command line compiler that is included with every .NET framework install is free. The Visual Studio Express editions are free (and can do quite a lot). Visual Studio Standard/Professional/Team Suite is not free, it's an application you need to buy,

Your Academic Alliance versions of Visual Studio (likely Professional) however have specific restrictions. If you develop something using the AA licenced version of Visual Studio, you cannot sell it or use it for commercial purposes, or use it as part of the infrasture of any entity (including your school), until you have purchased a regular licence for the tools you used.

Basically the Academic Alliance licence says you can use the full version of Visual Studio for free, but only for learning or research. If you want to turn your research project into part of a business you'll need to pay for the products you used.

If you are trying to turn your research project into a business startup you might also look at BizSpark. You'll still need to pay your Visual Studio costs (unless you used Express), but Microsoft will cover the costs of all your server licences (Windows Server, Sql Server, etc) in the hopes that your startup will become a successful business (if you are successful after 3 years you need to pay for the tens of thousands of dollars in licences you got for free, if you fail you only lose the $100 enrollment fee)



回答5:

Of course you have to pay. Nothing in life is free

:)

EDIT: But seriously, everyone else is correct, .net is totally free, only the professional tools cost money. Sorry if I upset anyone with my sarcasm.



回答6:

.NET is free in the sense that you don't have to pay for it. The framework and the SDK, including the compilers can all be downloaded for no charge from Microsoft. .NET is not free, in the sense that you can not modify it and then re-distribute it like you could an open source framework. You also have to pay if you want to use a commecial IDE like Visual Studio. Although there are express versions that are free.



回答7:

Yes you have to pay for the operating systems at a minimum to develop on. Before the mono zealots chime in it's in no way shape or form at the same level of maturatiy as it's windows counterpart. After the OS cost then it's the matter of what level of IDE support you need. Yes there are free ones ( the express editions and bare bones sdk installers ) but I'd wager you'll want at least VS pro which costs.



回答8:

I want to emphasize here, fee of VS or other development tools is not the fee of .net framework. sdk, libraries so the .net framework are all free.



回答9:

You can build commercial applications with you academic Visual Studio. who knows if the app was built in VS pro or VS academic?



回答10:

To build apps with Microsoft .NET, you have to license Windows, which is not free, though it is often built-in to the cost of the PC, and often it is a cost you have already paid!

To run apps with Microsoft .NET, again, you must have a license for Windows.

There is no cost to use the .NET SDK to build an app. There is no cost to deploy an app that uses .NET. There are free tools you can use to build apps. VS Express, emacs, Reflector, SharpDevelop, etc etc. There are also premium for-fee tools. Visual Studio can get very expensive in the Pro versions.

Mono is a version of .NET that runs on Windows and non-Windows platforms.



回答11:

it's free to develop with c# & ASP.NET, but to deploy your website on IIS you have to pay(as a part of the hosting fee) as said before, and I think it's much more expensive to host ASP.NET than PHP, etc.

Am I wrong? how much should you pay for hosting an ASP.NET website?