Visual Basic
Visual C#
Visual FoxPro
SQL Server
Game Technologies
VS Express Editions
Visual Studio
.NET Development
Microsoft ISV
Windows Forms
Windows Vista
Smart Device
Windows Live
Architecture
VS Team System
Software Development Network>> Windows Forms>> copy txt file to compile location
copy txt file to compile location
Hot Topic
Beginner Question - SQL Server and Crystal Reports
RichTextBox double-click on text doesn't work correctly
How to fade in and fade out a splash screen ?
Cross-thread control manipulation
Automated Printer Install
Datagridview and Excel question
install: incorrect syntax near the keyword "ON"
Problem with C++ Forms in .net 2003
Adding text to a Calendar day, is it Possible?
Implementing Page Break
Windows Forms
disalbe items in listbox
Simple open source utility for generating simple reports
Property Grid Troubles
Search Web Service
Possible Bug of the TableLayoutPanel?
.NET erasing my hand written code!?! Please help
How to read from dll.config when hosting UserControls in IE
Data Binding in TierDeveloper
Trouble with owner-draw for ListBox control
How to test if the form is alrady open?
copy txt file to compile location
I have an application with a txt file that I have added through "Add exsisting Item".
When I compile the application, I want to copy this txt file to the compile destination where the exe resides.
Anyone know how to do this
Answer this question
copy txt file to compile location
Priddin
You can use a Post-build event. See under project properties -> build events
use something like this
cd $(ProjectDir)
copy YourTextFile.txt $(TargetDir)
Brian
copy txt file to compile location
Answer this question
copy txt file to compile location
Priddin
use something like this
cd $(ProjectDir)
copy YourTextFile.txt $(TargetDir)
Brian