VFPBuild to build Visual FoxPro Applications Using MSBuild
Comments (5)
Tags: Codeplex, MSBuild, VFP, VFPBuild, Visual Studio
This entry was posted on Monday, November 5th, 2007 and is filed under Software Development. You can follow any responses to this entry through RSS 2.0. You can leave a response, or trackback from your own site.
This website uses valid XHTML, CSS2.1, and RSS markup because I belive in Web Standards.
Follow me on Twitter
Tod means Fox © 2006-2009 All Rights Reserved. Sitemap
This work by
blog.todmeansfox.com is licensed under a
Creative Commons Attribution 3.0 License.
Tod means Fox is a Business Intelligence and Data Warehousing blog with a focus on Data Integration and Dimensional Modeling,
serving a wide array of topics ranging from database design and data profiling to data quality and data mining,
over technologies such as SQL Server 2005 and Visual FoxPro.
Arclite theme by digitalnature | powered by WordPress
#1 by peters at August 16th, 2008
| Quote
please I have code in foxpro and I want to add function to make the code generate number like strings of alphabets and numbers
please how do icompile this code using visual studio 2007 edition to accomplish my task.
? thank you
#2 by Tod McKenna at August 17th, 2008
| Quote
Is your question on how to generate a number from a string of characters or is your question about how to compile this so it can be used by .NET?
#3 by uZi at May 3rd, 2011
| Quote
Hello, I try this and well it works,but in the build script, work with absolute paths, how can get this run with relative paths in the xml config.
best regards
#4 by uZi at May 3rd, 2011
| Quote
well, with parameters in command line works fine, i’ll give you my results soon
regards
#5 by uZi at May 4th, 2011
| Quote
Hello Again, finally i get the IC with VFPBuild run smooth, but i have to change del class in the vfpprojectbuilder, i change the lines that update the .pjx file this is my change:
Use (This.cProject) In 0 Alias MyProject
Select MyProject
Locate For MyProject.Type=’H’
If Found() && look for the Project record
Replace MyProject.Name With m.cProjectPath + m.cProjectFile + Chr(0), ;
MyProject.HomeDir With m.cProjectPath + Chr(0), ;
MyProject.reserved1 With m.cProjectPath + m.cProjectFile + Chr(0), ;
Myproject.sccdata WITH “” + Chr(0)
Endif
Go Top && return to the top of the table
because when vfp.application launch modify project statement it’s hang because trigger a message box with a error or user intervention caused by sccdata or reserved1 fields.
then in my IC server, i have to configure the builder agent with a user account instead of local system account.
With your code and samples i get new ideas how to improve in my peculiar enviroment..
thanks by your posts.