Skip to content

Commit

Permalink
Add missing files before release
Browse files Browse the repository at this point in the history
  • Loading branch information
linvi committed Oct 14, 2015
1 parent b164ebe commit 57937fa
Show file tree
Hide file tree
Showing 6 changed files with 56 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@
/packages
/Developer Tools/temp*
/Developer Tools/TweetinviAPI/lib
/Examplinvi.Web/App_Data
/Examplinvi.Web/App_Data
*.zip
6 changes: 6 additions & 0 deletions Examplinvi.UniversalApp/Examplinvi.UniversalApp.csproj.user
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<UseSimulator>false</UseSimulator>
</PropertyGroup>
</Project>
14 changes: 14 additions & 0 deletions Tweetinvi.Core/Parameters/ICustomRequestParameters.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;

namespace Tweetinvi.Core.Parameters
{
public interface ICustomRequestParameters
{
List<Tuple<string, string>> CustomQueryParameters { get; }
string FormattedCustomQueryParameters { get; }

void AddCustomQueryParameter(string name, string value);
void ClearCustomQueryParameters();
}
}
13 changes: 13 additions & 0 deletions Tweetinvi.Core/Parameters/ITimelineRequestParameters.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
namespace Tweetinvi.Core.Parameters
{
public interface ITimelineRequestParameters : ICustomRequestParameters
{
int MaximumNumberOfTweetsToRetrieve { get; set; }

long SinceId { get; set; }
long MaxId { get; set; }

bool TrimUser { get; set; }
bool IncludeEntities { get; set; }
}
}
15 changes: 15 additions & 0 deletions Tweetinvi.Security/app.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Threading.Tasks" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-2.6.10.0" newVersion="2.6.10.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Runtime" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-2.6.10.0" newVersion="2.6.10.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
6 changes: 6 additions & 0 deletions Tweetinvi.Security/packages.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.Bcl" version="1.1.10" targetFramework="portable4-net4+sl5+win8+wp8" />
<package id="Microsoft.Bcl.Build" version="1.0.21" targetFramework="portable4-net4+sl5+win8+wp8" />
<package id="Microsoft.Net.Http" version="2.2.29" targetFramework="portable4-net4+sl5+win8+wp8" />
</packages>

0 comments on commit 57937fa

Please sign in to comment.