Skip to content
This repository has been archived by the owner on Dec 25, 2020. It is now read-only.

ccellar/mite.net

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

mite.net

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);
}  

How to build

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

Contributing

  1. git config --global core.autocrlf false or clone with --config core.autocrlf=false
  2. Hack!
  3. Make a pull request.

Build Status

Build status

About

.NET API client library for mite

Resources

License

Stars

Watchers

Forks

Packages

No packages published