1

In your Web.Release.config or Web.Debug.config, right after ...

<?xml version="1.0" encoding="utf-8"?>

you see ...

<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">

When I browse to this URL, I receive the following content:

The resource you are looking for has been removed, had its name changed, or is temporarily unavailable.

Does that mean there's a new URL and I need to update the xmlns or can you just not browse it?

Code Maverick
  • 20,171
  • 12
  • 62
  • 114

1 Answers1

2

That's an XML namespace, not the location of a resource on the web.

It only happens to look like a URL. Some XML namespaces do not look like URLs.

John Saunders
  • 160,644
  • 26
  • 247
  • 397
  • +1 Thanks for the enlightenment, you'd think I'd know that by now. I guess I've never tried to actually browse one until now. – Code Maverick Nov 07 '14 at 19:29