Skip to content

Commit

Permalink
Usage API updates
Browse files Browse the repository at this point in the history
- Added Usage API
- Updated solution to use nuget pacakge restore
- General nuget package updating
  • Loading branch information
Devin Rader committed Oct 14, 2012
1 parent 81e0b8f commit 17fc386
Show file tree
Hide file tree
Showing 81 changed files with 1,280 additions and 126,929 deletions.
201 changes: 168 additions & 33 deletions .gitignore
@@ -1,33 +1,168 @@

#ignore thumbnails created by windows
Thumbs.db
#Ignore files build by Visual Studio
*.obj
*.exe
*.pdb
*.user
*.aps
*.pch
*.vspscc
*_i.c
*_p.c
*.ncb
*.suo
*.tlb
*.tlh
*.bak
*.cache
*.ilk
*.log
[Bb]in
[Dd]ebug*/
*.lib
*.sbr
obj/
[Rr]elease*/
_ReSharper*/
[Tt]est[Rr]esult*
TwilioTest/
TwilioTestPhone/
download/
*.sln.userprefs
#################
## Eclipse
#################

*.pydevproject
.project
.metadata
bin/
tmp/
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings/
.loadpath

# External tool builders
.externalToolBuilders/

# Locally stored "Eclipse launch configurations"
*.launch

# CDT-specific
.cproject

# PDT-specific
.buildpath


#################
## Visual Studio
#################

## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.

# User-specific files
*.suo
*.user
*.sln.docstates

# Build results
[Dd]ebug/
[Rr]elease/
*_i.c
*_p.c
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.vspscc
.builds
*.dotCover

## TODO: If you have NuGet Package Restore enabled, uncomment this
packages/

# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opensdf
*.sdf

# Visual Studio profiler
*.psess
*.vsp

# ReSharper is a .NET coding add-in
_ReSharper*

# Installshield output folder
[Ee]xpress

# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
DocProject/Help/*.HxC
DocProject/Help/*.hhc
DocProject/Help/*.hhk
DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html

# Click-Once directory
publish

# Others
[Bb]in
[Oo]bj
sql
TestResults
*.Cache
ClientBin
stylecop.*
~$*
*.dbmdl
Generated_Code #added for RIA/Silverlight projects

# Backup & report files from converting an old project file to a newer
# Visual Studio version. Backup files are not needed, because we have git ;-)
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML

# Project-Specific

TwilioTest/
TwilioTestPhone/
download/
*.sln.userprefs

############
## Windows
############

# Windows image file caches
Thumbs.db

# Folder config file
Desktop.ini


#############
## Python
#############

*.py[co]

# Packages
*.egg
*.egg-info
dist
build
eggs
parts
bin
var
sdist
develop-eggs
.installed.cfg

# Installer logs
pip-log.txt

# Unit test / coverage reports
.coverage
.tox

#Translations
*.mo

#Mr Developer
.mr.developer.cfg

# Mac crap
.DS_Store
43 changes: 22 additions & 21 deletions Twilio.Client.nuspec
@@ -1,22 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<package>
<metadata>
<id>Twilio.Client</id>
<version>3.4.1</version>
<authors>Twilio</authors>
<description>Twilio Client capability token generator for use with the Twilio Client for browsers JavaScript SDK.</description>
<language>en-US</language>
<projectUrl>http://github.com/twilio/twilio-csharp</projectUrl>
<iconUrl>http://www.twilio.com/packages/company/img/logos_downloadable_round.png</iconUrl>
<licenseUrl>https://github.com/twilio/twilio-csharp/blob/master/LICENSE.txt</licenseUrl>
<tags>REST SMS voice telephony phone twilio twiml</tags>
<dependencies>
<dependency id="JWT" />
</dependencies>
<releaseNotes>
* 3.4.1 - Updated to JSON.NET 4.5
* 3.3.5 - Updated to JSON.NET 4.0.8. Normalizing version number with Twilio.Api
* 3.1.4 - Updated to JSON.NET 4.0.7
</releaseNotes>
</metadata>
<?xml version="1.0" encoding="utf-8"?>
<package>
<metadata>
<id>Twilio.Client</id>
<version>3.4.2</version>
<authors>Twilio</authors>
<description>Twilio Client capability token generator for use with the Twilio Client for browsers JavaScript SDK.</description>
<language>en-US</language>
<projectUrl>http://github.com/twilio/twilio-csharp</projectUrl>
<iconUrl>http://www.twilio.com/packages/company/img/logos_downloadable_round.png</iconUrl>
<licenseUrl>https://github.com/twilio/twilio-csharp/blob/master/LICENSE.txt</licenseUrl>
<tags>REST SMS voice telephony phone twilio twiml</tags>
<dependencies>
<dependency id="JWT" />
</dependencies>
<releaseNotes>
* 3.4.2 - Removed dependancy of JSON, updated reference to JWT
* 3.4.1 - Updated to JSON.NET 4.5
* 3.3.5 - Updated to JSON.NET 4.0.8. Normalizing version number with Twilio.Api
* 3.1.4 - Updated to JSON.NET 4.0.7
</releaseNotes>
</metadata>
</package>
6 changes: 5 additions & 1 deletion Twilio.nuspec
Expand Up @@ -2,7 +2,7 @@
<package>
<metadata>
<id>Twilio</id>
<version>3.5.0</version>
<version>3.5.2</version>
<authors>Twilio</authors>
<description>Twilio REST API helper library</description>
<language>en-US</language>
Expand All @@ -15,6 +15,10 @@
<dependency id="RestSharp" />
</dependencies>
<releaseNotes>
* 3.5.2 - Adding Usage Capability
Enabled NuGet package restore in the solution
Updated project NuGet references
* 3.5.1 - Updated RestSharp
* 3.5.0 - Adding Queue Capability
* 3.4.5 - Fixing package fail
* 3.4.4 - Changed SMS message length validation
Expand Down
6 changes: 6 additions & 0 deletions src/.nuget/NuGet.Config
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<solution>
<add key="disableSourceControlIntegration" value="true" />
</solution>
</configuration>
Binary file added src/.nuget/NuGet.exe
Binary file not shown.

0 comments on commit 17fc386

Please sign in to comment.