A .NET library for interacting with the RESTful API of mite, a sleek time tracking webapp.
var uri = new Uri("http://{mydomain}.mite.yo.lk");
var miteConfiguration = new MiteConfiguration(uri, "{my-api-key}");
using (IDataContext context = new MiteDataContext(miteConfiguration))
{
var customer = new Customer();
customer.Name = "Myself";
customer = context.Create(customer);
var project = new Project();
project.Name = "mite.net";
project.Customer = customer;
context.Create(project);
}
If you want to restore the project after you cloned it please run:
00_boot.bat
This will restore all necessary packages for building the project. After that you could run a new build with:
02_build.bat
git config --global core.autocrlf false
or clone with--config core.autocrlf=false
- Hack!
- Make a pull request.