Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio executes something when i try to build it. How do i find out the code that stays behind this?

As in title, I downloaded a program from github, but when i try to build it, it says:

The command ""E:\LoLNotes\LoLNotes\Properties\GitExport.exe" "E:\LoLNotes\" "E:\LoLNotes\LoLNotes\"" exited with code 2.

GitExport.exe doesn't work because i have no git installed. But i want to know, how do i find a place in program sources, where that code is being executed? Simple ctrl-f and searching through solution doesn't work, so i think it is hidden somewhere in the configuration files maybe? Does anyone have any idea where it could be?

like image 762
ojek Avatar asked Dec 15 '22 17:12

ojek


1 Answers

It's probably a Post or Pre Build Event.

In the project, open "Properties", and look in the Build Events tab.

like image 128
vcsjones Avatar answered May 11 '23 10:05

vcsjones