elCapitano
elCapitano

Reputation:

Modify a .cs file in pre-compile event

I try to modify a .cs class with an external program in the pre-compile-event.

unfortunately the changes in the file are not included in the current compile. What can i do to get the changes from the external program into the compile?

thanks for your help

Upvotes: 2

Views: 530

Answers (1)

Drew Shafer
Drew Shafer

Reputation: 4802

Assuming you're using Visual Studio, make a new project in your solution called "PreBuild" or something like that. Use project dependencies to make sure that your C# project builds after the PreBuild project, then put the command that modifies your .cs class as a build event of PreBuild.

Upvotes: 2

Related Questions