-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from LuckyNoS7evin/master
Initial version ready state
- Loading branch information
Showing
24 changed files
with
94 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
################################################################################ | ||
# This .gitignore file was automatically created by Microsoft(R) Visual Studio. | ||
################################################################################ | ||
|
||
/.vs/TwitchLib.Extension/v15 | ||
/TwitchLib.Extension.Core/obj | ||
/TwitchLib.Extension.Core/bin/Debug/netcoreapp2.0 | ||
/TwitchLib.Extension/obj | ||
/TwitchLib.Extension/bin/Debug | ||
/TwitchLib.Extension/.vs/TwitchLib.Extension/v15 | ||
/TwitchLib.Extension/bin/Release | ||
/TwitchLib.Extension.Core/bin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
TwitchLib.Extension.Core/Authentication/TwitchExtensionAuthOptions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,29 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup Label="Globals"> | ||
<SccProjectName>SAK</SccProjectName> | ||
<SccProvider>SAK</SccProvider> | ||
<SccAuxPath>SAK</SccAuxPath> | ||
<SccLocalPath>SAK</SccLocalPath> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp2.0</TargetFramework> | ||
<PackageId>TwitchLib.Extension.Core</PackageId> | ||
<Version>1.0.0</Version> | ||
<Description>Extension component of TwitchLib. This component expands the base Extension Library to include a dot net standard (core) Authentication Middleware and Extension Manager</Description> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<Authors>luckyNoS7evin</Authors> | ||
<Company>swiftyspiffy (cole)</Company> | ||
<PackageIconUrl>https://colejelinek.com/dev/twitchlib.png</PackageIconUrl> | ||
<PackageProjectUrl>https://github.com/TwitchLib/TwitchLib.Extension</PackageProjectUrl> | ||
<PackageLicenseUrl>https://opensource.org/licenses/MIT</PackageLicenseUrl> | ||
<Copyright>Copyright 2017</Copyright> | ||
<PackageReleaseNotes>Version 1 of the Extension library</PackageReleaseNotes> | ||
<RepositoryUrl>https://github.com/TwitchLib/TwitchLib.Extension</RepositoryUrl> | ||
<RepositoryType>Git</RepositoryType> | ||
<PackageTags>twitch extension api c# csharp nbet standard 2.0 authorization extension mamnager</PackageTags> | ||
<NeutralLanguage>en-US</NeutralLanguage> | ||
<AssemblyVersion>2.0.0.0</AssemblyVersion> | ||
<FileVersion>2.0.0.0</FileVersion> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.Authentication" Version="2.0.1" /> | ||
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="5.1.5" /> | ||
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="5.2.1" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\TwitchLib.Extension\TwitchLib.Extension.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Folder Include="Authentication\" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio 15 | ||
VisualStudioVersion = 15.0.27130.2027 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TwitchLib.Extension", "TwitchLib.Extension\TwitchLib.Extension.csproj", "{3707BBF6-ED3D-4044-8110-6C2C5CBEFB56}" | ||
EndProject | ||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TwitchLib.Extension.Core", "TwitchLib.Extension.Core\TwitchLib.Extension.Core.csproj", "{5ED18BCE-3A8B-4C7D-8A9A-4FB25BD241F3}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{3707BBF6-ED3D-4044-8110-6C2C5CBEFB56}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{3707BBF6-ED3D-4044-8110-6C2C5CBEFB56}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{3707BBF6-ED3D-4044-8110-6C2C5CBEFB56}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{3707BBF6-ED3D-4044-8110-6C2C5CBEFB56}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{5ED18BCE-3A8B-4C7D-8A9A-4FB25BD241F3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{5ED18BCE-3A8B-4C7D-8A9A-4FB25BD241F3}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{5ED18BCE-3A8B-4C7D-8A9A-4FB25BD241F3}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{5ED18BCE-3A8B-4C7D-8A9A-4FB25BD241F3}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {8E06B51D-BBC5-431C-A0FE-1B967CA5AB44} | ||
EndGlobalSection | ||
EndGlobal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 0 additions & 3 deletions
3
TwitchLib.Extension/Models/SetExtensionBroadcasterOAuthReceiptRequest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 0 additions & 3 deletions
3
TwitchLib.Extension/Models/SetExtensionRequiredConfigurationRequest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters