Wrox Programmer Forums
|
ASP.NET 1.0 and 1.1 Professional For advanced ASP.NET 1.x coders. Beginning-level questions will be redirected to other forums. NOT for "classic" ASP 3 or the newer ASP.NET 2.0 and 3.5
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 1.0 and 1.1 Professional section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old October 15th, 2007, 02:18 AM
Authorized User
 
Join Date: Jun 2006
Posts: 88
Thanks: 0
Thanked 0 Times in 0 Posts
Default vb.net realeted question

HI ALL

I HAVE CREATED ONE VB.NET APPLICATION.I HAVE SEEN SO MANY FILES IN MY FOLDER WHEN I CREATEDAPPLICATION.BUT I WANT TO KNOW THAT WHAT IS THE ACTUAL USE OF RESX FILE,PDB FILE.
WHAT IS THE DIFFERENCE BETWEEN SOLUTION OBJECT AND VB.NET PROJECT?
 WHEN I CREATED APPLICATION ONE ASSEMBLYINFO FILE IS ALREADY CREATED IN MY PRJECT.HOW TO DESCRIBE IT?AND WHAT IS THE ACTUAL USE OF THIS FILE?

IT'S URGENT.PLS REPLY AS EARLY AS POSSIBLE IF U KNOW.

THANKS
MONIKA
 
Old October 15th, 2007, 08:29 AM
planoie's Avatar
Friend of Wrox
 
Join Date: Aug 2003
Posts: 5,407
Thanks: 0
Thanked 16 Times in 16 Posts
Default

Have you tried Google? You should be able to find all the answers you seek there.

But in the mean time:

- Solution file: Collection of .NET projects. Projects can be different .NET languages.

- Project file: Collection of code files that will compile into a single assembly (.dll or .exe). All code in a single project must be the same language.

- Assemblyinfo.*: Code file containing meta data decorators for the assembly. These decorators decorate the assembly with additional information that describes them (i.e. Company, application name, assembly name, culture info, version, etc.) The file itself has comments that describe some of this.

- *.RESX: XML Based resources. This resources can be used in many ways. They can be compiled directly into the assembly or deployed as they are to provide post compile changes. You should really google this one because it's a more complex subject in itself.

- *.PDB: This is a database of meta data about the assembly. It primarily exists for debugging. It contains links between execution instructions in the compiled code and the original source lines. This is what allows you to see humanly meaningful error output that tells you the line of code and line number information when code breaks. They are not, however, essential to the execution of your assemblies and can be disposed.

-Peter





Similar Threads
Thread Thread Starter Forum Replies Last Post
VB and ASP.NET question RomeyRome BOOK: Beginning Visual Basic 2005 ISBN: 978-0-7645-7401-6 2 December 20th, 2007 07:20 PM
VB.net question farsfar2 VS.NET 2002/2003 1 March 31st, 2005 06:29 AM
VB.Net question on Windows VB.Net datagrids dmsousa VS.NET 2002/2003 1 January 19th, 2005 02:45 PM
VB.NET question loganscott2000 VS.NET 2002/2003 8 May 4th, 2004 05:27 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.