473,395 Members | 1,677 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Settings and Configurations in the .vbproj file

Can
I am trying to create a .dll file using VB.Net Standard using the info from
this website http://www.devcity.net/Articles/111/1/vbnet_se_dll.aspx

My problem is when I open up the .vbproj file in Notepad I don't get all the
setting attributes. Instead I get this

<VisualStudioProject>
<VisualBasic LastOpenVersion = "7.10.3077" >
<Build>
<Settings ReferencePath = "C:\Documents and Settings\DONOCB\My
Documents\Visual Studio Projects\CardiacSurgery\CardiacSurgeryData\" >
<Config
Name = "Debug"
EnableASPDebugging = "false"
EnableASPXDebugging = "false"
EnableUnmanagedDebugging = "false"
EnableSQLServerDebugging = "false"
RemoteDebugEnabled = "false"
RemoteDebugMachine = ""
StartAction = "Project"
StartArguments = ""
StartPage = ""
StartProgram = ""
StartURL = ""
StartWorkingDirectory = ""
StartWithIE = "false"
/>
<Config
Name = "Release"
EnableASPDebugging = "false"
EnableASPXDebugging = "false"
EnableUnmanagedDebugging = "false"
EnableSQLServerDebugging = "false"
RemoteDebugEnabled = "false"
RemoteDebugMachine = ""
StartAction = "Project"
StartArguments = ""
StartPage = ""
StartProgram = ""
StartURL = ""
StartWorkingDirectory = ""
StartWithIE = "false"
/>
</Settings>
</Build>
<OtherProjectSettings
CopyProjectDestinationFolder = ""
CopyProjectUncPath = ""
CopyProjectOption = "0"
ProjectView = "ProjectFiles"
ProjectTrust = "0"
/>
</VisualBasic>
</VisualStudioProject>

What am I doing wrong?
Nov 21 '05 #1
6 5346
"Can" <Ca*@discussions.microsoft.com> schrieb:
I am trying to create a .dll file using VB.Net Standard using the info from
this website http://www.devcity.net/Articles/111/1/vbnet_se_dll.aspx

My problem is when I open up the .vbproj file in Notepad I don't get all
the
setting attributes.


Extend the 'Settings' as shown in the article above.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Nov 21 '05 #2
Can
Sometimes I am stunned but I can't see how to extend the 'Settings' anywhere
in the article
http://www.devcity.net/Articles/111/1/vbnet_se_dll.aspx

I went in under Project -> 'ProjectName' Properties
and expanded the Settings

The only other thing I got was the reference path
<Settings ReferencePath = "C:\Documents and Settings\DONOCB\My
Documents\Visual Studio Projects\CardiacSurgery\CardiacSurgeryData\" >
<Config
Name = "Debug"
EnableASPDebugging = "false"
"Herfried K. Wagner [MVP]" wrote:
"Can" <Ca*@discussions.microsoft.com> schrieb:
I am trying to create a .dll file using VB.Net Standard using the info from
this website http://www.devcity.net/Articles/111/1/vbnet_se_dll.aspx

My problem is when I open up the .vbproj file in Notepad I don't get all
the
setting attributes.


Extend the 'Settings' as shown in the article above.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Nov 21 '05 #3
I think you may be opening the wrong file. For some reason the extensions
don't show when you are using Explorer to find files. If you are opening
the file named "MYFILE.VBPROJ" you are actually opening MYFILE.VBPROJ.USER."
Try opening the file just named "MYFILE" but has the description of "Visual
Basic .NET Project."

Bobbo
_________________________________________________
"Can" <Ca*@discussions.microsoft.com> wrote in message
news:F6**********************************@microsof t.com...
I am trying to create a .dll file using VB.Net Standard using the info from
this website http://www.devcity.net/Articles/111/1/vbnet_se_dll.aspx

My problem is when I open up the .vbproj file in Notepad I don't get all
the
setting attributes. Instead I get this

<VisualStudioProject>
<VisualBasic LastOpenVersion = "7.10.3077" >
<Build>
<Settings ReferencePath = "C:\Documents and Settings\DONOCB\My
Documents\Visual Studio Projects\CardiacSurgery\CardiacSurgeryData\" >
<Config
Name = "Debug"
EnableASPDebugging = "false"
EnableASPXDebugging = "false"
EnableUnmanagedDebugging = "false"
EnableSQLServerDebugging = "false"
RemoteDebugEnabled = "false"
RemoteDebugMachine = ""
StartAction = "Project"
StartArguments = ""
StartPage = ""
StartProgram = ""
StartURL = ""
StartWorkingDirectory = ""
StartWithIE = "false"
/>
<Config
Name = "Release"
EnableASPDebugging = "false"
EnableASPXDebugging = "false"
EnableUnmanagedDebugging = "false"
EnableSQLServerDebugging = "false"
RemoteDebugEnabled = "false"
RemoteDebugMachine = ""
StartAction = "Project"
StartArguments = ""
StartPage = ""
StartProgram = ""
StartURL = ""
StartWorkingDirectory = ""
StartWithIE = "false"
/>
</Settings>
</Build>
<OtherProjectSettings
CopyProjectDestinationFolder = ""
CopyProjectUncPath = ""
CopyProjectOption = "0"
ProjectView = "ProjectFiles"
ProjectTrust = "0"
/>
</VisualBasic>
</VisualStudioProject>

What am I doing wrong?

Nov 21 '05 #4
"Can" <Ca*@discussions.microsoft.com> schrieb:
Sometimes I am stunned but I can't see how to extend the 'Settings'
anywhere
in the article
http://www.devcity.net/Articles/111/1/vbnet_se_dll.aspx
Replace the opening 'Settings' element with something similar to this:

\\\
<Settings
ApplicationIcon = ""
AssemblyKeyContainerName = ""
AssemblyName = ...
AssemblyOriginatorKeyFile = ""
AssemblyOriginatorKeyMode = "None"
DefaultClientScript = "JScript"
DefaultHTMLPageLayout = "Grid"
DefaultTargetSchema = "IE50"
DelaySign = "false"
OutputType = "Library"
OptionCompare = "Binary"
OptionExplicit = "On"
OptionStrict = "On"
RootNamespace = ...
StartupObject = ...

///

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Nov 21 '05 #5
Can
You got it. I was opening the wrong file. Thanks.

"Robert S. Liles" wrote:
I think you may be opening the wrong file. For some reason the extensions
don't show when you are using Explorer to find files. If you are opening
the file named "MYFILE.VBPROJ" you are actually opening MYFILE.VBPROJ.USER."
Try opening the file just named "MYFILE" but has the description of "Visual
Basic .NET Project."

Bobbo
_________________________________________________


Nov 21 '05 #6
No problem. I did that myself and finally figured it out by getting mad and
opening every file in the directory.>G<

Bobbo
Nov 21 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Allan Cammish | last post by:
Dear All I have the source code for a component that I purchased and although the source code files are for VB.NET, there is no .SLN or .VBPROJ file included. I have seen this before with...
7
by: Kirk | last post by:
Hello, I am trying to find a VB.NET method that will allow me to save and read an application's settings in a separate file located on any drive, any folder. I have found a couple of methods...
6
by: Rich | last post by:
Hello, When I copy a VB web app from my workstation to my laptop (which has the exact same software as the workstation) or to a different virtual directory on the same workstation and then try...
2
by: GW | last post by:
After the conversion and fixing some errs VS2005 threw, project ran OK. Opened xxx.vbproj file after the conversion to VS2005 from VS2003. Changed (usng wordpad) ../msbuild/2003 to 2005...
1
by: LB | last post by:
Hi, I want to modify my file ".vbproj". I use XML dlls of Visual Studio and that causes to modify the format of the file .vbproj and that causes problems at the compile time on another servor....
2
by: Bishman | last post by:
Hi, Quick question: Is it possible to use different Solution Configurations ( Release / Build ) in order to determine which DB you are connecting to ( Dev vs Live) I would have thought...
6
by: WT | last post by:
Hello, Using VS2005. I have an assembly library that can be called from a Web site asp.net application or from a winform application. From this library I need to retrieve a path using simply a...
3
by: =?Utf-8?B?VGltb3Rp?= | last post by:
Can any one tell me about how i can share my Desktop VS settings match with the laptop settings.. So that both my systems will be of same configurations and don't have to find the difficulty...
1
by: Antuan | last post by:
I have to modify a website using Visual Studio 2003. The problem is that the vbproj file is missing! So now I can't open the project. I have tried to copy another projects vbproj file and...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.