0

During making setup file i am getting these errors i think all problem is due to missing of .net Framework in dependencies folder

enter image description here

Nahuel Ianni
  • 3,177
  • 4
  • 23
  • 30
Alamgir Khan
  • 87
  • 1
  • 2
  • 9
  • what errors are you getting. Could help.. –  Mar 01 '17 at 09:25
  • Sir i am adding screenshot but don't know why it not appearing only links are appearing – Alamgir Khan Mar 01 '17 at 09:27
  • Please click on the link you will see the errors – Alamgir Khan Mar 01 '17 at 09:29
  • Possible duplicate of [Unable to compile vdproj with devenv - 'targeting 'x64' is not compatible with the project's target platform 'x86''](http://stackoverflow.com/questions/6956601/unable-to-compile-vdproj-with-devenv-targeting-x64-is-not-compatible-with-t) And also do mention 'What did you try?'. – Shridhar R Kulkarni Mar 01 '17 at 09:47

1 Answers1

1

The problem is not with your .net framework. Its with your version of log4net. The version you have included is exclusive to x64 systems while you are trying to make a installer that works with x86 systems.

Either switch your project architecture to x64 (you can do this in the build properties of your project file). Or find a version of log4net that allows for x86 execution.

Nick Otten
  • 702
  • 7
  • 17