It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Currently writing a C# application it should do backups using GIT in the background.
I'm looking for projects or examples to do that without showing any GUI or bash shell..
When searching cross by GitSharp - https://github.com/henon/GitSharp.
It seems close to what I've looked for yet it isn't active.. (see the pull req')
Would like to get recommendations for open source projects or source code to do that.
libgit2sharp are C# bindings for libgit2, which the official GitHub for Windows client uses. They should be decent.
Try ngit, it have better codebase but no decent docs
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I'm trying to understand how to use MEF.
Could someone point me to or provide an example of loading multiple .dlls from a directory.
Each of those dlls will have the same void method. void start().
There are no values that need to be returned.
Also I would need to make sure the .dlls are ment to be in the folder and not try to load/run if they don't belong.
Thanks
You can read this tutorial , it's very simple
link : http://www.codeproject.com/Articles/432069/Simple-MEF-Application-for-Beginners
For inderstand interest of MEF, i suggest you to read article about PRISM WPF Development With MEF
I published article about subject, link : http://aghilasyakoub.wordpress.com/category/mef-managed-extensibility-framework/
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
Is there a way to make windows standalone program which will have JQuery powering its UI?
Since it will be a file manager, I would need to be able to access local files and folders so using HTML5+CSS+JQuery in browser is not possible due to limitation of access to local file system.
I would be most comfortable using c# and VS2008 environment if possible. Any ideas?
You can use jQuery in HTA applets.
You can give a try to javaFX if you are ready to give a try to java. A sample DatePicker for JavaFX using jQuery UI can be found here DatePicker
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
any one plz tell me how to differentiate the c# and silverlight interms of utility classes,ui controls(ui rendering) and package deployment?
i need to know all these details anyone plz help me out.
The Silverlight classes offered out-of-the-box are listed on MSDN - as are the various C# class libraries.
Assuming that your question comes from wanting to know which C# classes are not available in Silverlight (quite a few as I remember)
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm trying to implement a basic file, image upload utility into a small, simple (built using the Visual Web Developer tutorial) C# MVC3 ASP.Net web site. I have see this utility pointed out here on StackOverFlow a few times:
https://github.com/blueimp/jQuery-File-Upload
...but unsure if I can just slot it into my MVC3 C# Website? (I am very new to attempting to learn MVC3 with C#).
I also see lots of this guides floated around the place:
http://aspzone.com/tech/jquery-file-upload-in-asp-net-mvc-without-using-flash
http://davidsonsousa.net/en/post/how-to-upload-a-file-using-mvc-3-and-ajax
http://tomas.epineer.se/archives/3
Can any of these simply be slotted into my website?
Appreciate any help
Yes. The first two seem to fit perfectly.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
please provide the csharp area in sharepoint. what are the part csharp source is used. how can be document loaded in the sharepoint. whether it can be done through by c sharp.
Almost everything on SP is built into assemblies, so you can't see the C# source. You can use a tool like Reflector to disassemble these assemblies (but they could be obfuscated).
If you want to upload documents through C# have a look at the WebServices. Here's a pretty good tutorial.