Skip to main content

In our environment, we have two separate folders for copybooks.

We are trying to specify these two copybook paths in the MsBuild .RSP file with some variation of the following statement:

/p:MFDependencyPaths=L:\\URISYS\\COMPCOPY

The above only shows one of the paths.  When we try this (folder paths separarted by a semi-colon):

/p:MFDependencyPaths=L:\\URISYS\\COMPCOPY; L:\\URISYS\\STATECPY 

or when we try this (two statements):

/p:MFDependencyPaths=L:\\URISYS\\COMPCOPY; L:\\URISYS\\STATECPY 

/p:MFDependencyPaths=L:\\URISYS\\STATECPY 

... we get various errors.

How do you specify multiple copybook paths in the .RSP file for MsBuild ???

Thanks 

In our environment, we have two separate folders for copybooks.

We are trying to specify these two copybook paths in the MsBuild .RSP file with some variation of the following statement:

/p:MFDependencyPaths=L:\\URISYS\\COMPCOPY

The above only shows one of the paths.  When we try this (folder paths separarted by a semi-colon):

/p:MFDependencyPaths=L:\\URISYS\\COMPCOPY; L:\\URISYS\\STATECPY 

or when we try this (two statements):

/p:MFDependencyPaths=L:\\URISYS\\COMPCOPY; L:\\URISYS\\STATECPY 

/p:MFDependencyPaths=L:\\URISYS\\STATECPY 

... we get various errors.

How do you specify multiple copybook paths in the .RSP file for MsBuild ???

Thanks 

Hello,  When can we expect an answer to this question?

Thanks


In our environment, we have two separate folders for copybooks.

We are trying to specify these two copybook paths in the MsBuild .RSP file with some variation of the following statement:

/p:MFDependencyPaths=L:\\URISYS\\COMPCOPY

The above only shows one of the paths.  When we try this (folder paths separarted by a semi-colon):

/p:MFDependencyPaths=L:\\URISYS\\COMPCOPY; L:\\URISYS\\STATECPY 

or when we try this (two statements):

/p:MFDependencyPaths=L:\\URISYS\\COMPCOPY; L:\\URISYS\\STATECPY 

/p:MFDependencyPaths=L:\\URISYS\\STATECPY 

... we get various errors.

How do you specify multiple copybook paths in the .RSP file for MsBuild ???

Thanks 

Sorry, this one got past us.

It appears like there is a space between the two paths which shouldn't be there and also since the semi-colon character is the MSBuild property separator the path needs to be enclosed in quotes:

Try:

/p:MFDependencyPaths=”L:\\URISYS\\COMPCOPY;L:\\URISYS\\STATECPY”


In our environment, we have two separate folders for copybooks.

We are trying to specify these two copybook paths in the MsBuild .RSP file with some variation of the following statement:

/p:MFDependencyPaths=L:\\URISYS\\COMPCOPY

The above only shows one of the paths.  When we try this (folder paths separarted by a semi-colon):

/p:MFDependencyPaths=L:\\URISYS\\COMPCOPY; L:\\URISYS\\STATECPY 

or when we try this (two statements):

/p:MFDependencyPaths=L:\\URISYS\\COMPCOPY; L:\\URISYS\\STATECPY 

/p:MFDependencyPaths=L:\\URISYS\\STATECPY 

... we get various errors.

How do you specify multiple copybook paths in the .RSP file for MsBuild ???

Thanks 

That works!  Great!  Thanks, Chris!