Aperture
Aperture

Reputation: 2427

Where are my asp.net website compiled assembly files stored on my computer?

My website is a "website" type, not a "web application" type.

Upvotes: 0

Views: 4381

Answers (3)

Jesus Ramos
Jesus Ramos

Reputation: 23268

Technically there is no native code because when a web site is built using asp.net it gets run through the JIT so it creates these temporary files, I don't think you'll find dll's or exe's if that's what you're looking for.

Upvotes: 2

citronas
citronas

Reputation: 19365

By default they are located in %Windows Install Folder%\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files

It's possible to force the temp path to a specific location by a property to the compilation tag in the web.config.

<compilation tempDirectory=“E:\ASP.Net Temporary Folder\” debug=“false“>

Source: http://syedgakbar.wordpress.com/2007/11/10/changing-aspnet-temporary-files-folder/ for more.

Upvotes: 3

Philip Smith
Philip Smith

Reputation: 2801

Your files will be at the end of this path somewhere. You may need to choose a different .NET version. In the temporary files folder you will find a gfolder for your project/solution.

C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files

Upvotes: 1

Related Questions