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

Commit

Permalink
C# API with V1.0 & V2.0 separate wrappers
Browse files Browse the repository at this point in the history
  • Loading branch information
prasantkrsuman committed Oct 9, 2014
1 parent 0e1e840 commit dadf3d9
Show file tree
Hide file tree
Showing 36 changed files with 802 additions and 59 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
64 changes: 64 additions & 0 deletions V2.0/.gitignore
@@ -0,0 +1,64 @@
#OS junk files
[Tt]humbs.db
*.DS_Store

#Visual Studio files
*.[Oo]bj
*.user
*.aps
*.pch
*.vspscc
*.vssscc
*_i.c
*_p.c
*.ncb
*.suo
*.tlb
*.tlh
*.bak
*.[Cc]ache
*.ilk
*.log
*.lib
*.sbr
*.sdf
*.opensdf
*.unsuccessfulbuild
ipch/
obj/
[Bb]in
[Dd]ebug*/
[Rr]elease*/
Ankh.NoLoad

#MonoDevelop
*.pidb
*.userprefs

#Tooling
_ReSharper*/
*.resharper
[Tt]est[Rr]esult*
*.sass-cache

#Project files
[Bb]uild/

#Subversion files
.svn

# Office Temp Files
~$*

#NuGet
packages/

#ncrunch
*ncrunch*
*crunch*.local.xml

# visual studio database projects
*.dbmdl

#Test files
*.testsettings
File renamed without changes.
13 changes: 13 additions & 0 deletions V2.0/README.md
@@ -0,0 +1,13 @@
# README

This is the official SendinBlue API C# library.

* The primary dependency is Newtonsoft's JSON .NET library.
* This is compatible with .NET 4.0 and above due to the usage of dynamic objects.
* This was developed using Open source SharpDevelop IDE.

## About the setup

* The SendinBlue project is the core wrapper library.
* The test project is a sample C# console application that references the library and gets all campaigns.
* You can explore the source code for all the calls, or well use the IDE autocomplete to explore more.
24 changes: 24 additions & 0 deletions V2.0/mailinblue.sln
@@ -0,0 +1,24 @@

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
# SharpDevelop 4.3
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "mailinblue", "mailinblue\mailinblue.csproj", "{6E918CDB-2EDD-481A-A1E2-82ABA20F71EB}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "test", "test\test.csproj", "{11F50CD3-3B06-4517-9C88-2FB05D568ED1}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{6E918CDB-2EDD-481A-A1E2-82ABA20F71EB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6E918CDB-2EDD-481A-A1E2-82ABA20F71EB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6E918CDB-2EDD-481A-A1E2-82ABA20F71EB}.Release|Any CPU.Build.0 = Release|Any CPU
{6E918CDB-2EDD-481A-A1E2-82ABA20F71EB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{11F50CD3-3B06-4517-9C88-2FB05D568ED1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{11F50CD3-3B06-4517-9C88-2FB05D568ED1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{11F50CD3-3B06-4517-9C88-2FB05D568ED1}.Release|Any CPU.Build.0 = Release|Any CPU
{11F50CD3-3B06-4517-9C88-2FB05D568ED1}.Release|Any CPU.ActiveCfg = Release|Any CPU
EndGlobalSection
EndGlobal

0 comments on commit dadf3d9

Please sign in to comment.