Publish incompleto on Azure websites

0

my question is as follows.

When I go to publish my change in the Azure sites from Visual Studio 2013 I do the "rebuild" and the "clean" before the publication of the site. CSS changes are reflected.

The changes made are basic regarding Css. Probandolo is locally visible but when it is published it does not.

What can I do?

    
asked by TSE 19.10.2016 в 20:36
source

1 answer

0

I managed to get the behavior I am expecting by doing the following. Might not be the best approach, but it is functional and I can not see any major flaws on it.

On Site.Master, replace this line:

<webopt:bundlereference runat="server" path="~/Content/css" />

with these ones:

<link href="~/Content/bootstrap.css" rel="stylesheet" type="text/css" runat="server" />
<link href="~/Content/Site.css" rel="stylesheet" type="text/css" runat="server" />
    
answered by 20.06.2017 в 18:21