Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Move a C# Console project to a network share

Status
Not open for further replies.

nsanto17

IS-IT--Management
Mar 14, 2005
616
US
I need to move a C# Console Project to a network share and i am not sure how to do so. I thought of just copying the source folder and moving it to a network share would do it but my changes do not take effect on the network share.

Any advice / pointers would be great. I tried to google it but can't find much about this.

Thanks in advance.

Nick
 
what changes are you expecting to take place? and what do you mean by source files? do you mean the C# files? they don't mean anything to the program itself. C# files need to be compiled into an executable. then deployed.

Jason Meckley
Programmer

faq855-7190
faq732-7259
 
Nick,
Are you actually trying to "deploy" this, so that others can use this?

Normally this involves some form of packaging, usually with setup project. In some cases, just copying the \bin directory after a full compile is sufficient.

You won't be able to get a realtime sync unless you add a post build event to copy the files out to the network share.

Lodlaiden

I haz all the letters: SME, BA, QA, PM, DEV, DBA, UAT, SE, HD
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top