insightly-api
Diff Revisions
13
vs
15
for /trunk/Insightly/TS.Insightly.API.csproj
|
@@ -33,6 +33,9 @@ |
33 |
33 |
|
<DocumentationFile>bin\Release\Insightly.XML</DocumentationFile> |
34 |
34 |
|
</PropertyGroup> |
35 |
35 |
|
<ItemGroup> |
|
36 |
+ |
<Reference Include="Ninject"> |
|
37 |
+ |
<HintPath>..\packages\Ninject.3.0.1.10\lib\net40\Ninject.dll</HintPath> |
|
38 |
+ |
</Reference> |
36 |
39 |
|
<Reference Include="RestSharp"> |
37 |
40 |
|
<HintPath>..\packages\RestSharp.104.2.0\lib\net4\RestSharp.dll</HintPath> |
38 |
41 |
|
</Reference> |
|
@@ -52,19 +55,26 @@ |
52 |
55 |
|
<Compile Include="Contract\Link.cs" /> |
53 |
56 |
|
<Compile Include="Contract\Organisation.cs" /> |
54 |
57 |
|
<Compile Include="Contract\Project.cs" /> |
|
58 |
+ |
<Compile Include="Controller\ContactController.cs" /> |
|
59 |
+ |
<Compile Include="Controller\ControllerBase.cs" /> |
|
60 |
+ |
<Compile Include="Controller\OrganisationController.cs" /> |
|
61 |
+ |
<Compile Include="Controller\ProjectController.cs" /> |
55 |
62 |
|
<Compile Include="Exception\ContactException.cs" /> |
56 |
63 |
|
<Compile Include="Exception\OrganisationException.cs" /> |
57 |
64 |
|
<Compile Include="Exception\ResponseException.cs" /> |
|
65 |
+ |
<Compile Include="ICModule\ApiModule.cs" /> |
58 |
66 |
|
<Compile Include="InsightlyAPI.cs" /> |
|
67 |
+ |
<Compile Include="Interface\IApi.cs" /> |
|
68 |
+ |
<Compile Include="Interface\IContactController.cs" /> |
|
69 |
+ |
<Compile Include="Interface\IOrganisationController.cs" /> |
|
70 |
+ |
<Compile Include="Interface\IProjectController.cs" /> |
59 |
71 |
|
<Compile Include="Properties\AssemblyInfo.cs" /> |
60 |
72 |
|
<Compile Include="Utility\EnumHelper.cs" /> |
61 |
73 |
|
</ItemGroup> |
62 |
74 |
|
<ItemGroup> |
63 |
75 |
|
<None Include="packages.config" /> |
64 |
76 |
|
</ItemGroup> |
65 |
|
- |
<ItemGroup> |
66 |
|
- |
<Folder Include="Controller\" /> |
67 |
|
- |
</ItemGroup> |
|
77 |
+ |
<ItemGroup /> |
68 |
78 |
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> |
69 |
79 |
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. |
70 |
80 |
|
Other similar extension points exist, see Microsoft.Common.targets. |