A file that was part of a project that is no longer being used.

  • Thread starter Thread starter Mr.Magic
  • Start date Start date
M

Mr.Magic

Is there any way to remove a file from a VSS project as part of the current
configuration but leave it there so that you can get it with older versions
of the software.

So I had file a.cs which I have now replaced with b.cs and c.cs. I want to
not include a.cs anymore in the VS project and also not have it as part of
my builds in VSS (the real concern is when I go to create a label for the
'current' versions, I don't want this included.)

Any thoughts?

TIA - Jeff.
 
Is there any way to remove a file from a VSS project as part of the
current configuration but leave it there so that you can get it with
older versions of the software.

Use source control. You can then pin the older version so you can pull it
out, if you need to bug fix. In the new version, you simply dump the file.

Peace and Grace,

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

Twitter: @gbworld
Blog: http://gregorybeamer.spaces.live.com

*******************************************
| Think outside the box! |
*******************************************
 
I don't understand what you mean by 'pin' the older version. What I really
want to do is have the file in VSS as part of my older labels but not part
of the new/current ones.

TIA - Jeff
 
Mr.Magic said:
Is there any way to remove a file from a VSS project as part of the current
configuration but leave it there so that you can get it with older versions
of the software.

So I had file a.cs which I have now replaced with b.cs and c.cs. I want to
not include a.cs anymore in the VS project and also not have it as part of
my builds in VSS (the real concern is when I go to create a label for the
'current' versions, I don't want this included.)

Any thoughts?

TIA - Jeff.

I believe that setting the "Build Action" property of the source file to
"None" may do what you are looking for in the scenario.

Mike
 
I don't understand what you mean by 'pin' the older version. What I
really want to do is have the file in VSS as part of my older labels
but not part of the new/current ones.

Here is an MSDN article on pinning:
http://msdn.microsoft.com/en-us/library/xa4cy26x(VS.80).aspx

I don't currently use SourceSafe, but I believe there is a pin to label
feature in the product.

Peace and Grace,

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

Twitter: @gbworld
Blog: http://gregorybeamer.spaces.live.com

*******************************************
| Think outside the box! |
*******************************************
 
Back
Top