473,583 Members | 4,428 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Making A Copy of a Solution

I have a solution. I want to clone it to try some different options. Is
there a way to open Solution A, save it as Solution B and then be able to
try some things in Solution B without affecting Solution A?

--
------------------------------------
Wayne Wengert
wa***@wengert.o rg
Jul 19 '05 #1
3 2374
Hmmm - Do I really want to clone a Project instead of a Solution. I'm
confused on the difference.
"Wayne Wengert" <wa***@wengert. org> wrote in message
news:ev******** ******@TK2MSFTN GP10.phx.gbl...
I have a solution. I want to clone it to try some different options. Is
there a way to open Solution A, save it as Solution B and then be able to
try some things in Solution B without affecting Solution A?

--
------------------------------------
Wayne Wengert
wa***@wengert.o rg

Jul 19 '05 #2
I think you have two options here:

1. If you have Visual SourceSafe, check the code in before starting your
experimentation and then check it out again to try the different options.

2. Assuming the projects within the solution are all sub-folders of the
solution folder (on the hard disk rather than in the solution explorer) then
you can just make a copy of the solution folder and all its sub-folders
somewhere else on your hard disk and work on it independently from there.

A solution is just a collection of projects. A project is a set of files
that build to create an assembly. So if you have two assemblies in your app
you would normally have two projects in your solution. When you start a new
project from the start page you are actually starting a new solution that
contains one project.

I hope this helps.

--
Robert Jarratt
Microsoft
rj******@online .microsoft.com

This posting is provided "AS IS" with no warranties, and confers no rights.
"Wayne Wengert" <wa***@wengert. org> wrote in message
news:e8******** ******@tk2msftn gp13.phx.gbl...
Hmmm - Do I really want to clone a Project instead of a Solution. I'm
confused on the difference.
"Wayne Wengert" <wa***@wengert. org> wrote in message
news:ev******** ******@TK2MSFTN GP10.phx.gbl...
I have a solution. I want to clone it to try some different options. Is
there a way to open Solution A, save it as Solution B and then be able to try some things in Solution B without affecting Solution A?

--
------------------------------------
Wayne Wengert
wa***@wengert.o rg


Jul 19 '05 #3
To be honest I have never tried, but what you can do is just create a new
(blank) solution and then add in the copied projects.

--
Robert Jarratt
Microsoft
rj******@online .microsoft.com

This posting is provided "AS IS" with no warranties, and confers no rights.
"Wayne Wengert" <wa***@wengert. org> wrote in message
news:e$******** ******@TK2MSFTN GP10.phx.gbl...
Thanks. That works. I notice I cannot rename the SLN file and a couple of
others. Is there a way to change a solution name so I don't get things mixed up (which I usually do!)

Wayne

"Robert Jarratt [MSFT]" <rj******@onlin e.microsoft.com > wrote in message
news:Oa******** ******@TK2MSFTN GP10.phx.gbl...
I think you have two options here:

1. If you have Visual SourceSafe, check the code in before starting your
experimentation and then check it out again to try the different options.

2. Assuming the projects within the solution are all sub-folders of the
solution folder (on the hard disk rather than in the solution explorer)

then
you can just make a copy of the solution folder and all its sub-folders
somewhere else on your hard disk and work on it independently from there.
A solution is just a collection of projects. A project is a set of files
that build to create an assembly. So if you have two assemblies in your

app
you would normally have two projects in your solution. When you start a

new
project from the start page you are actually starting a new solution that contains one project.

I hope this helps.

--
Robert Jarratt
Microsoft
rj******@online .microsoft.com

This posting is provided "AS IS" with no warranties, and confers no

rights.
"Wayne Wengert" <wa***@wengert. org> wrote in message
news:e8******** ******@tk2msftn gp13.phx.gbl...
Hmmm - Do I really want to clone a Project instead of a Solution. I'm
confused on the difference.
"Wayne Wengert" <wa***@wengert. org> wrote in message
news:ev******** ******@TK2MSFTN GP10.phx.gbl...
> I have a solution. I want to clone it to try some different options. Is > there a way to open Solution A, save it as Solution B and then be

able to
> try some things in Solution B without affecting Solution A?
>
> --
> ------------------------------------
> Wayne Wengert
> wa***@wengert.o rg
>
>



Jul 19 '05 #4

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

Similar topics

3
307
by: Wayne Wengert | last post by:
I have a solution. I want to clone it to try some different options. Is there a way to open Solution A, save it as Solution B and then be able to try some things in Solution B without affecting Solution A? -- ------------------------------------ Wayne Wengert wayne@wengert.org
85
3230
by: masood.iqbal | last post by:
I know that this topic may inflame the "C language Taleban", but is there any prospect of some of the neat features of C++ getting incorporated in C? No I am not talking out the OO stuff. I am talking about the non-OO stuff, that seems to be handled much more elegantly in C++, as compared to C. For example new & delete, references, consts,...
7
5401
by: Wysiwyg | last post by:
Is there any way to add an embedded resource to a project without copying it to the project's directory? I have shared resources and don't want each project using the images, xml files, etc. to need to be updated with the current copy before being built. I also don't want projects being built with the old copy. Thanks! Bill
90
4363
by: Ben Finney | last post by:
Howdy all, How can a (user-defined) class ensure that its instances are immutable, like an int or a tuple, without inheriting from those types? What caveats should be observed in making immutable instances? -- \ "Love is the triumph of imagination over intelligence." -- |
3
3542
by: markww | last post by:
Hi, I have a wrapper around some 3rd party database library function. The pseudo code looks like the following - it is meant to open a table in a database, extract values from a table, then copy it into my own user defined structures. Since the process of opening and retrieving data from the database is exactly the same for all struct...
10
3422
by: JurgenvonOerthel | last post by:
Consider the classes Base, Derived1 and Derived2. Both Derived1 and Derived2 derive publicly from Base. Given a 'const Base &input' I want to initialize a 'const Derived1 &output'. If the dynamic type of 'input' is Derived1, then 'output' should become a reference to 'input'. Otherwise 'output' should become a reference to the (temporary)...
50
4452
by: Juha Nieminen | last post by:
I asked a long time ago in this group how to make a smart pointer which works with incomplete types. I got this answer (only relevant parts included): //------------------------------------------------------------------ template<typename Data_t> class SmartPointer { Data_t* data; void(*deleterFunc)(Data_t*);
11
6236
by: Rafe | last post by:
Hi, I'm working within an application (making a lot of wrappers), but the application is not case sensitive. For example, Typing obj.name, obj.Name, or even object.naMe is all fine (as far as the app is concerned). The problem is, If someone makes a typo, they may get an unexpected error due accidentally calling the original attribute...
0
8179
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
1
7933
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...
0
8191
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...
0
5372
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3816
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...
0
3841
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2331
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1431
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
1155
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...

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.