0

There are some build events in C# project (on SVN). Is it possible to disable one of them on my local machine? I've tried to override <PostBuildEvent> section in *.csproj.user, but it does not work, all events perform anyway.

Thanks.

Feofilakt
  • 1,341
  • 2
  • 13
  • 33

1 Answers1

0

You need to create a new build configuration, and use it in your local machine. In your build server, use another build configuration.

Tsahi Asher
  • 1,767
  • 15
  • 28
  • We currently use a lot of configurations already (not only debug|release, but different devices and data providers). I would have to create additional copy of each frequently used of them. – Feofilakt Apr 12 '18 at 07:46