Hello Imar,
On building the solution I get two warnings about two assemblies not found
(WebForms.dll and FriendlyUrls.dll) in a path of the Imar user.
If I look in the packages.config the two .dlls are registered and the "Manage NuGet packages" marks them as installed.
Below the packages.config:
Code:
<packages>
<package id="EntityFramework" version="6.1.1" targetFramework="net451" />
<package id="jQuery" version="2.0.3" targetFramework="net451" />
<package id="Microsoft.AspNet.FriendlyUrls.Core" version="1.0.2" targetFramework="net451" />
<package id="Microsoft.AspNet.ScriptManager.WebForms" version="5.0.0" targetFramework="net451" />
<package id="Modernizr" version="2.7.1" targetFramework="net451" />
</packages>
Below are the two warnings:
Code:
Warning: Unable to update auto-refresh reference 'microsoft.scriptmanager.webforms.dll'. Cannot find assembly 'C:\BegASPNET\Users\Imar\Documents\Visual Studio 2013\Projects\localhost_50404\packages\Microsoft.AspNet.ScriptManager.WebForms.5.0.0\lib\net45\Microsoft.ScriptManager.WebForms.dll'.
Warning: Unable to update auto-refresh reference 'microsoft.aspnet.friendlyurls.dll'. Cannot find assembly 'C:\BegASPNET\Users\Imar\Documents\Visual Studio 2013\Projects\localhost_50404\packages\Microsoft.AspNet.FriendlyUrls.Core.1.0.2\lib\net45\Microsoft.AspNet.FriendlyUrls.dll'.
How can I remove the two warnings ?
Thank you
Antonius