473,738 Members | 4,774 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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

<VisualStudioPr oject>
<VisualBasic LastOpenVersion = "7.10.3077" >
<Build>
<Settings ReferencePath = "C:\Documen ts and Settings\DONOCB \My
Documents\Visua l Studio Projects\Cardia cSurgery\Cardia cSurgeryData\" >
<Config
Name = "Debug"
EnableASPDebugg ing = "false"
EnableASPXDebug ging = "false"
EnableUnmanaged Debugging = "false"
EnableSQLServer Debugging = "false"
RemoteDebugEnab led = "false"
RemoteDebugMach ine = ""
StartAction = "Project"
StartArguments = ""
StartPage = ""
StartProgram = ""
StartURL = ""
StartWorkingDir ectory = ""
StartWithIE = "false"
/>
<Config
Name = "Release"
EnableASPDebugg ing = "false"
EnableASPXDebug ging = "false"
EnableUnmanaged Debugging = "false"
EnableSQLServer Debugging = "false"
RemoteDebugEnab led = "false"
RemoteDebugMach ine = ""
StartAction = "Project"
StartArguments = ""
StartPage = ""
StartProgram = ""
StartURL = ""
StartWorkingDir ectory = ""
StartWithIE = "false"
/>
</Settings>
</Build>
<OtherProjectSe ttings
CopyProjectDest inationFolder = ""
CopyProjectUncP ath = ""
CopyProjectOpti on = "0"
ProjectView = "ProjectFil es"
ProjectTrust = "0"
/>
</VisualBasic>
</VisualStudioPro ject>

What am I doing wrong?
Nov 21 '05 #1
6 5373
"Can" <Ca*@discussion s.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:\Documen ts and Settings\DONOCB \My
Documents\Visua l Studio Projects\Cardia cSurgery\Cardia cSurgeryData\" >
<Config
Name = "Debug"
EnableASPDebugg ing = "false"
"Herfried K. Wagner [MVP]" wrote:
"Can" <Ca*@discussion s.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.VBP ROJ" you are actually opening MYFILE.VBPROJ.U SER."
Try opening the file just named "MYFILE" but has the description of "Visual
Basic .NET Project."

Bobbo
_______________ _______________ _______________ ____
"Can" <Ca*@discussion s.microsoft.com > wrote in message
news:F6******** *************** ***********@mic rosoft.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

<VisualStudioPr oject>
<VisualBasic LastOpenVersion = "7.10.3077" >
<Build>
<Settings ReferencePath = "C:\Documen ts and Settings\DONOCB \My
Documents\Visua l Studio Projects\Cardia cSurgery\Cardia cSurgeryData\" >
<Config
Name = "Debug"
EnableASPDebugg ing = "false"
EnableASPXDebug ging = "false"
EnableUnmanaged Debugging = "false"
EnableSQLServer Debugging = "false"
RemoteDebugEnab led = "false"
RemoteDebugMach ine = ""
StartAction = "Project"
StartArguments = ""
StartPage = ""
StartProgram = ""
StartURL = ""
StartWorkingDir ectory = ""
StartWithIE = "false"
/>
<Config
Name = "Release"
EnableASPDebugg ing = "false"
EnableASPXDebug ging = "false"
EnableUnmanaged Debugging = "false"
EnableSQLServer Debugging = "false"
RemoteDebugEnab led = "false"
RemoteDebugMach ine = ""
StartAction = "Project"
StartArguments = ""
StartPage = ""
StartProgram = ""
StartURL = ""
StartWorkingDir ectory = ""
StartWithIE = "false"
/>
</Settings>
</Build>
<OtherProjectSe ttings
CopyProjectDest inationFolder = ""
CopyProjectUncP ath = ""
CopyProjectOpti on = "0"
ProjectView = "ProjectFil es"
ProjectTrust = "0"
/>
</VisualBasic>
</VisualStudioPro ject>

What am I doing wrong?

Nov 21 '05 #4
"Can" <Ca*@discussion s.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 = ""
AssemblyKeyCont ainerName = ""
AssemblyName = ...
AssemblyOrigina torKeyFile = ""
AssemblyOrigina torKeyMode = "None"
DefaultClientSc ript = "JScript"
DefaultHTMLPage Layout = "Grid"
DefaultTargetSc hema = "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.VBP ROJ" you are actually opening MYFILE.VBPROJ.U SER."
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
4802
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 another component's source code files that I downloaded which was free. Is there a way to work with these files without a .SLN and .VBPROJ file? I have attempted to re-create a .VBPROJ file by attaching the relevant files but this was not successful...
7
16567
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 for doing this, but they are (in my opinion) more complicated than I require. I found a method that uses IsolatedStorageFile and IsolatedStorageFileStream, which works correctly. That is, it stores the settings in XML format to a file located...
6
1647
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 to open the vbProj at this new location, I get the error message that it can't open the app because some components may be missing. If I create the same project at the new location from scratch, it runs fine. Is there a configuration or some...
2
1921
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 thinking that should read 2005 Unable to open project after that. Chgd back to 2003. Unable to open. Err unable to read xxx.vbproj(218,16)
1
2047
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. What is the problem and how may I do to modify the file without deteriorating its format? Thank you!
2
1719
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 that the Project Settings where specific for a build type so you could connect to a Dev DB for developemnt and likewise when publishing a live build.
6
2809
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 key like 'libPath'. As far as winform and asp.net share the same common base class for settings, SettingsBase, how to manage this ? For winform the value should be set in app.config and for web site in
3
1331
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 when giving some demos -- God bless you for the help
1
3222
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 modifying it but with no success. Any ideas?
0
8969
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8788
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9335
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9263
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9208
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6751
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4570
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
2745
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2193
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.