Skip to content

Commit

Permalink
First pass implementation
Browse files Browse the repository at this point in the history
 - Focus on plug & play, stability, and efficiency
 - Just handles basic text messages back and forth
 - Only direct message chat channels
 - Plenty of TODOs to resolve
  • Loading branch information
AngryAnt committed Dec 22, 2019
1 parent 9b739d3 commit 234b653
Show file tree
Hide file tree
Showing 12 changed files with 1,487 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Keybase.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<AssemblyName>Keybase.net</AssemblyName>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Utf8Json" Version="1.3.7" />
</ItemGroup>

<ItemGroup>
<Reference Include="framebunker.Utilities, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>Dependencies\framebunker.Utilities.dll</HintPath>
</Reference>
</ItemGroup>

</Project>
16 changes: 16 additions & 0 deletions Keybase.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@

Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Keybase", "Keybase.csproj", "{2D36AF6C-C8C0-4BE5-AA01-D540CB288806}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{2D36AF6C-C8C0-4BE5-AA01-D540CB288806}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2D36AF6C-C8C0-4BE5-AA01-D540CB288806}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2D36AF6C-C8C0-4BE5-AA01-D540CB288806}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2D36AF6C-C8C0-4BE5-AA01-D540CB288806}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
14 changes: 14 additions & 0 deletions License.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Copyright 2019 Emil "AngryAnt" Johansen

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit
persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Loading

0 comments on commit 234b653

Please sign in to comment.