473,402 Members | 2,064 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,402 software developers and data experts.

New Project as renamed and chaged old one

Hi, ALL

I've developed some prjoect ( VB.NET ) , let Project1, and created for that
Setup project, let Setup1. Installed it on a clear mashine - PC1. Then I
decided to develop that futher as another product, let Project2. I've copied
and renamed all project files, project itself, product name, namespaces in
all classes..., copied and renamed Setup1 as Setup2 and adjust new one to
the Project2 and created Installation for that. Setup2 become new Upgrade
and Product codes.

I run Setup2 on the PC1. Setup2 removes completely installation of Project1
from the mashine without any question and installs Project2 in different
location...
Why it happend, but projects have different names, different namespaces,
different installation projects?
I would be thankful for any help

Regards

EZ
Jul 21 '05 #1
4 1560
Maybe you have to assign a new Product Code GUID for you new setup project?
Check the properties of your root setup project node.

To get a new GUID: Tools->Create GUID (or just click on ellipsis button
beside current GUID in Product Code property of setup project)

Just a guess,
Greg

"Evgeny Zoldin" <zo****@hotmail.com> wrote in message
news:e1**************@TK2MSFTNGP12.phx.gbl...
Hi, ALL

I've developed some prjoect ( VB.NET ) , let Project1, and created for
that
Setup project, let Setup1. Installed it on a clear mashine - PC1. Then I
decided to develop that futher as another product, let Project2. I've
copied
and renamed all project files, project itself, product name, namespaces in
all classes..., copied and renamed Setup1 as Setup2 and adjust new one to
the Project2 and created Installation for that. Setup2 become new Upgrade
and Product codes.

I run Setup2 on the PC1. Setup2 removes completely installation of
Project1
from the mashine without any question and installs Project2 in different
location...
Why it happend, but projects have different names, different namespaces,
different installation projects?
I would be thankful for any help

Regards

EZ

Jul 21 '05 #2
Thank you for your advice, but they were assigned as new automaticaly when I
changed version of Setup project

"Greg Burns" <greg_burns@DONT_SPAM_ME_hotmail.com> wrote in message
news:#7*************@tk2msftngp13.phx.gbl...
Maybe you have to assign a new Product Code GUID for you new setup project? Check the properties of your root setup project node.

To get a new GUID: Tools->Create GUID (or just click on ellipsis button
beside current GUID in Product Code property of setup project)

Just a guess,
Greg

"Evgeny Zoldin" <zo****@hotmail.com> wrote in message
news:e1**************@TK2MSFTNGP12.phx.gbl...
Hi, ALL

I've developed some prjoect ( VB.NET ) , let Project1, and created for
that
Setup project, let Setup1. Installed it on a clear mashine - PC1. Then I
decided to develop that futher as another product, let Project2. I've
copied
and renamed all project files, project itself, product name, namespaces in all classes..., copied and renamed Setup1 as Setup2 and adjust new one to the Project2 and created Installation for that. Setup2 become new Upgrade and Product codes.

I run Setup2 on the PC1. Setup2 removes completely installation of
Project1
from the mashine without any question and installs Project2 in different location...
Why it happend, but projects have different names, different namespaces,
different installation projects?
I would be thankful for any help

Regards

EZ


Jul 21 '05 #3
Evgeny,

It could be the ProjectGUID in the vbProject (.vbproj) file. Whenever you
copy a project and rename it the actual ProjectGUID does not change.

To change the ProjectGUID you can ecit the .vbproj file in your project
folder. Here is a snipit of what this file looks like:

<VisualStudioProject>
<VisualBasic
ProjectType = "Local"
ProductVersion = "7.10.3077"
SchemaVersion = "2.0"
ProjectGuid = "{00E782DC-3843-47EB-B48B-E835B7EA4D58}"

When you copy a project and change the names you should ALWAYS set a new
ProjectGUID. If you don't and you try to put the new project into a
solution with the old project, Visual Studio will exhibit very unusual
behavior.

-Sam Matzen
"Evgeny Zoldin" <zo****@hotmail.com> wrote in message
news:e1**************@TK2MSFTNGP12.phx.gbl... Hi, ALL

I've developed some prjoect ( VB.NET ) , let Project1, and created for that Setup project, let Setup1. Installed it on a clear mashine - PC1. Then I
decided to develop that futher as another product, let Project2. I've copied and renamed all project files, project itself, product name, namespaces in
all classes..., copied and renamed Setup1 as Setup2 and adjust new one to
the Project2 and created Installation for that. Setup2 become new Upgrade
and Product codes.

I run Setup2 on the PC1. Setup2 removes completely installation of Project1 from the mashine without any question and installs Project2 in different
location...
Why it happend, but projects have different names, different namespaces,
different installation projects?
I would be thankful for any help

Regards

EZ

Jul 21 '05 #4
Thank you Samuel,

your advice was very helpful

Regards
Evgeny

"Samuel L Matzen" <sm*****@slm.com> wrote in message
news:OC*************@TK2MSFTNGP12.phx.gbl...
Evgeny,

It could be the ProjectGUID in the vbProject (.vbproj) file. Whenever you
copy a project and rename it the actual ProjectGUID does not change.

To change the ProjectGUID you can ecit the .vbproj file in your project
folder. Here is a snipit of what this file looks like:

<VisualStudioProject>
<VisualBasic
ProjectType = "Local"
ProductVersion = "7.10.3077"
SchemaVersion = "2.0"
ProjectGuid = "{00E782DC-3843-47EB-B48B-E835B7EA4D58}"
>


When you copy a project and change the names you should ALWAYS set a new
ProjectGUID. If you don't and you try to put the new project into a
solution with the old project, Visual Studio will exhibit very unusual
behavior.

-Sam Matzen
"Evgeny Zoldin" <zo****@hotmail.com> wrote in message
news:e1**************@TK2MSFTNGP12.phx.gbl...
Hi, ALL

I've developed some prjoect ( VB.NET ) , let Project1, and created for

that
Setup project, let Setup1. Installed it on a clear mashine - PC1. Then I
decided to develop that futher as another product, let Project2. I've

copied
and renamed all project files, project itself, product name, namespaces in all classes..., copied and renamed Setup1 as Setup2 and adjust new one to the Project2 and created Installation for that. Setup2 become new Upgrade and Product codes.

I run Setup2 on the PC1. Setup2 removes completely installation of

Project1
from the mashine without any question and installs Project2 in different location...
Why it happend, but projects have different names, different namespaces,
different installation projects?
I would be thankful for any help

Regards

EZ


Jul 21 '05 #5

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

Similar topics

5
by: Evgeny Zoldin | last post by:
Hi, ALL I've developed some prjoect ( VB.NET ) , let Project1, and created for that Setup project, let Setup1. Installed it on a clear mashine - PC1. Then I decided to develop that futher as...
0
by: Doug Bell | last post by:
Hi I had a solution that was working correctly with 2 projects: ScheduleFileDownloads DataAccessTier I wanted to add another project so I copied the folder with DataAccessTier files into a new...
4
by: Doug Bell | last post by:
Hi, I have been having problems getting a Project to reference another project in as VS Solution. I believe that the reason the reference is not accepted is because another project that is...
3
by: Evgeny Zoldin | last post by:
Hi, ALL I've developed some prjoect ( VB.NET ) , let Project1, and created for that Setup project, let Setup1. Installed it on a clear mashine - PC1. Then I decided to develop that futher as...
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: 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
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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
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
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...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.