What is the current status of the Helios project? [closed] - asp.net

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Exactly one year ago there were some posts from Microsoft about project Helios. This was an OWIN implementation to self host your servers using IIS in a light way. The last Nuget package is from march 2014 Project Helios.
Does somebody know what is the current status of this project? Did they include it in the ASP.NET vNext implementation?

According to these comments on GitHub there will be another release. However, a few days ago someone else on the team told me there wasn't another release planned so I'm not sure who's right. Hopefully they do another update for those of us unable to migrate to vNext at the moment.
Project Helios is now part of ASP.NET vNext and is how you host your applications in IIS. The vNext NuGet package was renamed to Microsoft.AspNet.Server.IIS

Related

ASP.NET Core deployment methods [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I am going to deploy 2 ASP.NET Core 2.2 web applications onto an IIS environment. I was wondering if there were any options in the market to facilitate automatic deployment?
For my previous application that was in PHP, I could use a service called Deploybot that took my code from GitHub and pushed it onto a server. I really enjoyed that one because setup was straightforward and I could easily rollback or deploy new code due to it being tied to my GitHub branch.
Are there any similar tools I can use for .NET Core? So far I've seen Jenkins as a recommendation. Are there any other services that perform similarly to Deploybot but for .NET Core applications?
My current planned method is to use WebDeploy and publish the applications straight from Visual Studio. But the problem is that it won't have a proper link to GitHub.
Azure DevOps, Jenkins, TeamCity, TravisCI, AppVeyor. These are just a few of the tools that you can use to facilitate CD (Continuous Deployment) from sources like GitHub, BitBucket, git, tfs, etc.
I've used both AzureDevOps and AppVeyor in the past, and found both of them to be really good at what they do. Although, I've only used Azure DevOps in a professional setting and AppVeyor for personal projects.
I've written about how to set up AppVeyor with .NET Core in the past - here is a link to that article.

What are the alternative of IIS? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
What are the alternative of IIS? What would be pros and cons of using any server other than IIS for Asp.net application Hosting?
You can try UltiDev Cassini which is a "free, light-weight and re-distributable web server that can host ASP.NET 3.5, 3.0, 2.0 and 1.1 applications and static HTML sites". (It is based on the original Cassini web server).
now there is UltiDev Web Server Pro UWS which supports ASP.NET 4, 3.x, 2.0 and 1.1.
I dont think there is pros of using UltiDev over IIS

How to publish "web site" in the network? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am using Visual Studio 2010, This is an ASP.NET web site,
I already finish my website. Now I'm trying to publish to the Internet or maybe in my office for others to see. How do I publish it? I tried Google but project and website are different method. I see project is easier and there are a lot of tutorials for it, but I'm using a website project.
Check the following links:
ASP.Net Deployment Overview
VS2010 Web Deployment

Open Source .Net Web Registration Form Generator [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Anybody know of / have experience with .net web registration form generator, that is free and/or open source?
Something like a very simple version of InfoPath web forms.
AspxFormsGen 3.5 is a tool that
automatically generates (ASP.Net 3.5
Generator) ASP.Net 3.5 Standard
WebForms (.aspx) in C# 3.5 or VB 9.0
and their accompanying CodeFile
(.aspx.cs or .aspx.vb). It generates
WebForms with CRUD (Create, Retrieve,
Update, Delete) functionalities using
the latest Linq-to-SQL and
LinqDataSource, based on the tables in
your MS SQL 2000/2005 Database, all in
One Click. Download.
There are some good open source web-based Content Management Systems that has customizable profiling and excellent community contributed modules for free. Some of them are:
Umbraco (Recommended)
Dotnetnuke

switching to open source solutions [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I'm a ASP.NET MVC Visual Studio, SQL Server web developer. I would like to switch to equivalent open source solutions. Please help me out.
You probably want to look into Mono, MonoDevelop, and MySQL to get started. You can run all of these on your existing Windows machines, and then later move them to Linux machines if you're satisfied with how well they work for you.
As mentioned you should look at Mono and MonoDevelop.
If you are satisfied with ASP.NET MVC, then Mono supports it too. Or you can try open source MonoRail form Castle Project.
As for the database backend I would rather suggest PostgreSQL. For flamewars why that choice look on the net ;)
Visit http://www.codeplex.com/ to get an idea of possible open source solutions under .NET
If you want to move to Linux then you should definitely use Mono which fully supports ASP.NET MVC. You will have plenty of choices to replace IIS, for example Apache with mod_mono, Nginx or Lighttpd. Instead of SQL Server you can use mainstream RDBMSs like MySQL or PostgreSQL. And talk about development is here How to development in Visual Studio and then deploy apps to Linux machine (OS - Ubuntu, web server - Nginx).

Resources