Skip to content

Commit

Permalink
feat: add logo and banner
Browse files Browse the repository at this point in the history
  • Loading branch information
bsdayo committed Oct 21, 2023
1 parent ade5426 commit cf36f5b
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div align="center">

# Satori.NET
![Satori.NET](./assets/logo.png)

[Satori 协议](https://satori.js.org/zh-CN/) .NET SDK

Expand Down
Binary file added assets/banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 9 additions & 4 deletions src/Satori.Client/Satori.Client.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

<PropertyGroup>
<Title>Satori.Client</Title>
<Version>1.0.0-alpha.2</Version>
<Version>1.0.0-alpha.3</Version>
<Description>Client library for Satori Protocol v1.</Description>
<Authors>bsdayo</Authors>
<PackageIcon>logo.png</PackageIcon>
</PropertyGroup>

<PropertyGroup>
Expand All @@ -14,12 +15,16 @@
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\Satori.Protocol\Satori.Protocol.csproj" />
<ProjectReference Include="..\Satori.Protocol\Satori.Protocol.csproj"/>
</ItemGroup>

<ItemGroup>
<PackageReference Include="System.Text.Json" Version="8.0.0-rc.2.23479.6" />
<PackageReference Include="Websocket.Client" Version="5.0.0" />
<PackageReference Include="System.Text.Json" Version="8.0.0-rc.2.23479.6"/>
<PackageReference Include="Websocket.Client" Version="5.0.0"/>
</ItemGroup>

<ItemGroup>
<None Include="../../assets/logo.png" Pack="true" PackagePath="/"/>
</ItemGroup>

</Project>
9 changes: 7 additions & 2 deletions src/Satori.Protocol/Satori.Protocol.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

<PropertyGroup>
<Title>Satori.Protocol</Title>
<Version>1.0.0-alpha.2</Version>
<Version>1.0.0-alpha.3</Version>
<Description>Model definitions for Satori Protocol v1.</Description>
<Authors>bsdayo</Authors>
<PackageIcon>logo.png</PackageIcon>
</PropertyGroup>

<PropertyGroup>
Expand All @@ -18,7 +19,11 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="HtmlAgilityPack" Version="1.11.54" />
<PackageReference Include="HtmlAgilityPack" Version="1.11.54"/>
</ItemGroup>

<ItemGroup>
<None Include="../../assets/logo.png" Pack="true" PackagePath="/"/>
</ItemGroup>

</Project>

0 comments on commit cf36f5b

Please sign in to comment.