beaugunderson / notational-ferocity

📝 a semi-clone of Notational Velocity for Windows
5 stars 2 forks source link

Extensions project is missing #7

Closed gyurisc closed 12 years ago

gyurisc commented 12 years ago

I checked out your project and tried to compile it. Visual Studio.NET cannot load the Extensions project as it is missing from the repository.

beaugunderson commented 12 years ago

Hey gyurisc, sorry about that! I must have neglected to add it to the project as a submodule. I'll do that soon, but for now the easiest workaround would be to grab it from here and put it into the project tree manually:

https://github.com/beaugunderson/BeauGunderson.Extensions

gyurisc commented 12 years ago

Thanks, I will try to compile your app.

gyurisc commented 12 years ago

Hi Beau,

Checked the extensions project and added to the project tree, but still having the following problems when compiling:

Error 2 'System.IO.FileInfo' does not contain a definition for 'FindInFile' and no extension method 'FindInFile' accepting a first argument of type 'System.IO.FileInfo' could be found (are you missing a using directive or an assembly reference?) C:\Users\kgyuris\dev\github\notational-ferocity\NotationalFerocity\IO\DiskSearcher.cs 63 22 NotationalFerocity

Error 1 'System.IO.DirectoryInfo' does not contain a definition for 'TraverseTree' and no extension method 'TraverseTree' accepting a first argument of type 'System.IO.DirectoryInfo' could be found (are you missing a using directive or an assembly reference?) C:\Users\kgyuris\dev\github\notational-ferocity\NotationalFerocity\IO\DiskSearcher.cs 40 27 NotationalFerocity

beaugunderson commented 12 years ago

OK, I added Extensions to the tree as a submodule and referenced it from the main project.

You will probably need to execute these commands for things to work:

# Get the latest source
git pull

# Initialize the submodule using the .gitmodule file and pull the current commit
git submodule update --init

Let me know if that fixes the issue! :)

gyurisc commented 12 years ago

I managed to build it! Thanks. I can try your app now :)