C
cody
Is there a way to do:
#if APP_IS_RUN_IN_VS
path = ".\..\..\..\myfile.rpt";
#else
path = "myfile.rpt";
#endif
I don't want to put the files into debug/bin dir since they woulbe be
deleted on rebuilt then.
#if APP_IS_RUN_IN_VS
path = ".\..\..\..\myfile.rpt";
#else
path = "myfile.rpt";
#endif
I don't want to put the files into debug/bin dir since they woulbe be
deleted on rebuilt then.