Isolating ASP .Net 1.x Applications - Example | how-to | home |
The list of files in the example ASP .Net application:
What happens when the web.manifest
file is in place:
What happens when the web.manifest
file is missing:
The contents of the web.manifest
file:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> <assemblyIdentity name="sample" version="8.0.0.0" type="win32" processorArchitecture="x86"/> <description>Built with: Side-by-Side Manifest Maker (2.2.0.388)</description> <description>Copyright: 2004-2005 © Maze Computer Communications, Inc. All rights reserved.</description> <description>Licensee: Maze Computer Communications, Inc.</description> <description>License: Evaluation - not licensed to make production manifests</description> <dependency> <dependentAssembly> <assemblyIdentity name="aspnet.sample.assembly" version="1.0.0.0" type="win32" processorArchitecture="x86"/> </dependentAssembly> </dependency> </assembly>