Showing results for publish - .NET Blog

Aug 27, 2018
1
0

ASP.NET Core 2.2.0-preview1: Endpoint Routing

Glenn Condron [MSFT]
Glenn Condron [MSFT]

Endpoint Routing in 2.2 What is it? We're making a big investment in routing starting in 2.2 to make it interoperate more seamlessly with middleware. For 2.2 this will start with us making a few changes to the routing model, and adding some minor features. In 3.0 the plan is to introduce a model where routing and middleware operate together natur...

ASP.NETASP.NET Core
Aug 23, 2018
0
0

ASP.NET Core 2.2.0-preview1: SignalR Java Client

Sourabh Shirhatti [MSFT]
Sourabh Shirhatti [MSFT]

This post was authored by Mikael Mengistu. In ASP.NET Core 2.2 we are introducing a Java Client for SignalR. The first preview of this new client is available now. This client supports connecting to an ASP.NET Core SignalR Server from Java code, including Android apps. The API for the Java client is very similar to that of the already existing .N...

ASP.NETASP.NET Core
Sep 22, 2013
0
0

Web Publish how to automate multi-project publish with file system

Sayed Ibrahim Hashimi
Sayed Ibrahim Hashimi

The other day I received an email from a customer with a question which I’ve summarized as below. I have a solution containing multiple web projects. One of the projects, _RootSite, is the top level website which I want to publish. It’s an MVC project. I also have other web projects in the same solution. These other projects are apps themselves...

ASP.NET
Aug 22, 2013
0
0

Web Publishing a simpler way to exclude files/folders from being published

Sayed Ibrahim Hashimi
Sayed Ibrahim Hashimi

I’ve written a few blog posts on how to exclude files from publishing/packaging. In each of these posts you’d have to be familiar with MSBuild and the Web Publish process. I’ve been looking for a much simpler way to exclude files/folder from publishing. When using git you can easily exclude files and folders using a .gitignore file. Inside the .gi...

ASP.NET
Jul 23, 2013
0
0

Publish HTML/JS website to Linux/Apache using Visual Studio

Xinyang Qiu
Xinyang Qiu

We received a question about how to use Visual Studio to deploy HTML/JS website to Linux / Apache.  To do it, you need to create an empty ASP.NET website project in Visual Studio (File->New Web Site…) and then include all the HTML/JS files. 1. Right click on the website Project, select “Publish Web Site”. 2. Drop down t...

ASP.NET
Jun 7, 2011
0
0

Walkthrough: deploy a web application with SQL CE 4.0 database to IIS host with SQL Server.

Web Development Tools Microsoft
Web Development Tools Microsoft

With VS2010 sp1, we added SQL CE 4.0 support. You can view more information about SQL CE 4.0 from the following sites: Here is a walk through of how to deploy a SQL CE database to SQL Server database using web application publish. 1. Create a web application 2. Add a SQL CE 4.0 database via “Add New item”: 3. In server explorer,...

ASP.NET
May 5, 2010
0
0

Hosting for ASP.NET 4.0 & Web Deploy from ORCS Web, DiscountASP, and MaximumASP

Web Development Tools Microsoft
Web Development Tools Microsoft

Visual Web Developer 2010 Express offers a great set of features for deploying web applications seamlessly.  One of the key features is the ability to publish your web application from VS 2010 to a remote hosted web server along with its dependencies like SQL Server database using “Web One Click Publish”.  VS 2010 integrates M...

ASP.NET
Apr 22, 2010
0
0

Web Deployment: Excluding Files and Folders via the Web Application’s Project File

Web Development Tools Microsoft
Web Development Tools Microsoft

Web Deployment (see this posting for an overview) offers a set of pre-determined options to allow users to include the most common sets of files for deployment.  These options are as follows and can be found under the “Items to deploy” section on the Package / Publish Web property page.   Only files needed to run this application: ...

ASP.NET
Apr 20, 2010
0
0

One-Click Publish – What’s New Since Beta 2

Web Development Tools Microsoft
Web Development Tools Microsoft

Publishing using MSDeploy In-Process Deployment or Remote Agent Through the Beta 2 release, VS 2010 had only supported publishing to servers using MSDeploy's IIS deployment handler technology integrated with the “Web Management Service”, a.k.a. WMSVC. As long as you had an account on a hosting server using WMSVC,...

ASP.NET
Mar 24, 2010
0
0

Extending the Web Publishing Pipeline to package database project deployed SQL file

Web Development Tools Microsoft
Web Development Tools Microsoft

A Visual Studio solution file may contain both database project and a web application project.  When deploying (not building) the database project, it can generate a .sql file containing the full sql file or an incremental upgrade file against a database.  This blogs walkthrough one way to package database project generated sql file into ...

ASP.NET