-4

https://github.com/bladecoding/LoLNotes

Does anyone know how I get that to run? I'm pretty sure I need to compile it with something but I just don't know what or how.

Grzegorz Sławecki
  • 1,727
  • 14
  • 27
Chara
  • 33
  • 1
  • 7

1 Answers1

2

This is written in C#, You can compile it using Visual Studio version that would allow You to compile against .NET frameworks 3.5 and 4.0.

Visual Studio 2010 or newer will be enough.

You can download free Visual Studio 2013 for Desktop here

update: Managed to build it. First I removed pre-build event from LoLNotes project properties as this is the one that calls gitExport.exe (I'm pretty sure You don't need it). Then I needed to re-add some certificate file to LoLNotes project as it couldn't find it even though it was there. After that solution builds successfuly.

Grzegorz Sławecki
  • 1,727
  • 14
  • 27
  • Dunno why but that crashes as soon as I try to run it. – Chara Jul 15 '14 at 15:09
  • What crashes? Visual Studio, compiled application or what? – Grzegorz Sławecki Jul 15 '14 at 15:13
  • VS crashes, I got 2010 to work but it gives me this error http://puu.sh/acsxC/07e76b344d.png – Chara Jul 15 '14 at 15:23
  • I can't promise, but I'll try to look into this if I find some time tomorrow. – Grzegorz Sławecki Jul 15 '14 at 16:16
  • So I remove the pre-build event from here: http://puu.sh/adNrf/b902c728d7.png correct? How exactly do I add the certificate files? I've got no experience with this. – Chara Jul 16 '14 at 12:37
  • You right click LoLNotes project in solution explorer, then properties -> build events and just clear the text in pre-build event. Then if You got an error about missing file You go in solution explorer to that file, right click and unload from project, then right click on the folder and "Add existing item". – Grzegorz Sławecki Jul 16 '14 at 12:42
  • Works fine now, but how do I compile it to a standalone .exe? – Chara Jul 16 '14 at 13:49
  • After the build succeeds all binaries that are made by this solution should be in /bin/debug or /bin/release folder in LoLNotes project folder. – Grzegorz Sławecki Jul 16 '14 at 14:48