ASP. NET 5 Beta 7, asp. netbeta
Microsoft also released ASP. NET 5 Road Map (see ASP. NET 5 Schedule and Roadmap: https://github.com/aspnet/home/wiki/roadmap): Beta7 was released in September 2. the previous cross-platform features of DNX mainly depend on Mono on non-Windows platforms ,. NET Core supports extremely limited. This version focuses on implementation based on. the cross-platform development of NET Core provides Mac and Linux platforms based on. NET Core dnx to achieve complete. NET cross-platform development workflow, the first implementation is no longer dependent on Mono. In Microsoft's. NET Web development tools blog published a detailed description: http://blogs.msdn.com/ B /webdev/archive/2015/09/02/announcing-availability-of-asp-net-5-beta7.aspx, mainly includes the following content:
For VS2015 development on Windows, in addition to upgrading DNX to Beta7, you also need to install the new WebToolsExtensions: http://www.microsoft.com/en-us/download/details.aspx? Id = 48738.
Install references in Linux (http://docs.asp.net/en/1.0.0-beta7/getting-started/installing-on-linux.html)
Install reference (http://docs.asp.net/en/1.0.0-beta7/getting-started/installing-on-mac.html) in Mac ).
In addition to fully cross-platform implementations, there are also the following changes and enhancements:
WebHooks is a lightweight HTTP interaction mode. It integrates the SaaS system and web api through a simple publishing/subscription mode. The previous two blogs respectively introduced Saleforce and Slack through ASP. NET WebHooks integration. ASP. NET WebHooks includes the sending and receiving functions (the underlying technology is Web API 2 and MVC 5, and ASP. NET 5 is not yet supported ):
- At the receiving end, a common model is provided for receiving and processing the WebHook from any WebHook provider. It also has built-in Dropbox, GitHub, MailChimp, PayPal, Pusher, Slack, Stripe, Trello, and WordPress providers' implementations. That is to say, it is easy to develop a program to monitor Dropbox file changes or GitHub submissions.
- On the sender side, you can manage and store subscriber information, and send event reminders to appropriate subscriber. This simplifies the development of WebHook senders.
Detailed development instructions can refer to the above three blog, more important is to read the source code (https://github.com/aspnet/WebHooks ).