Subversion Repository Public Repository

insightly-api

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProjectGuid>{9D109BD4-0C01-43B5-B63B-1C22D4539C1F}</ProjectGuid>
    <OutputType>Library</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>TS.Insightly.API</RootNamespace>
    <AssemblyName>Insightly</AssemblyName>
    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
    <FileAlignment>512</FileAlignment>
    <TargetFrameworkProfile />
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>false</Optimize>
    <OutputPath>bin\Debug\</OutputPath>
    <DefineConstants>DEBUG;TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
    <DocumentationFile>bin\Debug\Insightly.XML</DocumentationFile>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
    <OutputPath>bin\Release\</OutputPath>
    <DefineConstants>TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
    <DocumentationFile>bin\Release\Insightly.XML</DocumentationFile>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="Ninject">
      <HintPath>..\packages\Ninject.3.0.1.10\lib\net40\Ninject.dll</HintPath>
    </Reference>
    <Reference Include="RestSharp">
      <HintPath>..\packages\RestSharp.104.2.0\lib\net4\RestSharp.dll</HintPath>
    </Reference>
    <Reference Include="System" />
    <Reference Include="System.Core" />
    <Reference Include="System.Runtime.Serialization" />
    <Reference Include="System.Xml.Linq" />
    <Reference Include="System.Data.DataSetExtensions" />
    <Reference Include="Microsoft.CSharp" />
    <Reference Include="System.Data" />
    <Reference Include="System.Xml" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="Contract\Address.cs" />
    <Compile Include="Contract\Contact.cs" />
    <Compile Include="Contract\ContactInfo.cs" />
    <Compile Include="Contract\Link.cs" />
    <Compile Include="Contract\Organisation.cs" />
    <Compile Include="Contract\Project.cs" />
    <Compile Include="Controller\ContactController.cs" />
    <Compile Include="Controller\ControllerBase.cs" />
    <Compile Include="Controller\OrganisationController.cs" />
    <Compile Include="Controller\ProjectController.cs" />
    <Compile Include="Exception\ContactException.cs" />
    <Compile Include="Exception\OrganisationException.cs" />
    <Compile Include="Exception\ResponseException.cs" />
    <Compile Include="ICModule\ApiModule.cs" />
    <Compile Include="InsightlyAPI.cs" />
    <Compile Include="Interface\IApi.cs" />
    <Compile Include="Interface\IContactController.cs" />
    <Compile Include="Interface\IOrganisationController.cs" />
    <Compile Include="Interface\IProjectController.cs" />
    <Compile Include="Properties\AssemblyInfo.cs" />
    <Compile Include="Utility\EnumHelper.cs" />
  </ItemGroup>
  <ItemGroup>
    <None Include="packages.config" />
  </ItemGroup>
  <ItemGroup />
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
       Other similar extension points exist, see Microsoft.Common.targets.
  <Target Name="BeforeBuild">
  </Target>
  <Target Name="AfterBuild">
  </Target>
  -->
</Project>

Commits for insightly-api/trunk/Insightly/TS.Insightly.API.csproj

Diff revisions: vs.
Revision Author Commited Message
15 Diff Diff HadleyHope picture HadleyHope Tue 01 Oct, 2013 13:47:15 +0000

Refactored, added Ninject to load controllers for each part of the API.
InsightlyAPI class is now a true facade for the API.

13 Diff Diff HadleyHope picture HadleyHope Mon 30 Sep, 2013 15:02:03 +0000

Added basics for Project.

12 Diff Diff HadleyHope picture HadleyHope Wed 25 Sep, 2013 08:15:31 +0000

Added link DTO.

10 Diff Diff HadleyHope picture HadleyHope Tue 24 Sep, 2013 12:06:30 +0000

Added basic organisation functionality, at the moment cannot link organisation to contact.

9 Diff Diff HadleyHope picture HadleyHope Tue 24 Sep, 2013 10:12:34 +0000

Added AddNewContactIfNotExists that checks for existing email, first and last names before adding a contact.

8 Diff Diff HadleyHope picture HadleyHope Mon 23 Sep, 2013 12:51:00 +0000

Changed project to target .NET 4 framework, so it works with the production website.

5 Diff Diff HadleyHope picture HadleyHope Mon 23 Sep, 2013 09:01:00 +0000

Added contact address.

4 Diff Diff HadleyHope picture HadleyHope Fri 20 Sep, 2013 15:08:23 +0000

Added code and tests to add a basic contact with email address.

3 Diff Diff HadleyHope picture HadleyHope Thu 19 Sep, 2013 14:44:24 +0000

Initial working API retrieving a contact by it’s id and email address.

2 HadleyHope picture HadleyHope Thu 19 Sep, 2013 09:09:16 +0000

Initial check in.