Skip to content

Commit

Permalink
Merge pull request #23 from appwrite/dev
Browse files Browse the repository at this point in the history
Update icon and add readme to package
  • Loading branch information
christyjacob4 authored Jul 6, 2023
2 parents 93ee3ff + 8f48424 commit 84ec810
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@ Appwrite is an open-source backend as a service server that abstract and simplif
Add this reference to your project's `.csproj` file:

```xml
<PackageReference Include="Appwrite" Version="0.4.0" />
<PackageReference Include="Appwrite" Version="0.4.1" />
```

You can install packages from the command line:

```powershell
# Package Manager
Install-Package Appwrite -Version 0.4.0
Install-Package Appwrite -Version 0.4.1
# or .NET CLI
dotnet add package Appwrite --version 0.4.0
dotnet add package Appwrite --version 0.4.1
```


Expand Down Expand Up @@ -81,7 +81,6 @@ You can use the following resources to learn more and get help
- 💬 [Discord Community](https://appwrite.io/discord)
- 🚂 [Appwrite Dart Playground](https://github.com/appwrite/playground-for-dotnet)


## Contribution

This library is auto-generated by Appwrite custom [SDK Generator](https://github.com/appwrite/sdk-generator). To learn more about how you can help us improve this SDK, please check the [contribution guide](https://github.com/appwrite/sdk-generator/blob/master/CONTRIBUTING.md) before sending a pull-request.
Expand Down
Binary file modified icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion src/Appwrite/Appwrite.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net461</TargetFrameworks>
<PackageId>Appwrite</PackageId>
<Version>0.4.0</Version>
<Version>0.4.1</Version>
<Authors>Appwrite Team</Authors>
<Company>Appwrite Team</Company>
<Description>
Appwrite is an open-source self-hosted backend server that abstract and simplify complex and repetitive development tasks behind a very simple REST API
</Description>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/appwrite/sdk-for-dotnet</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
Expand All @@ -22,6 +23,7 @@
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<None Include="..\..\icon.png" Pack="true" PackagePath="$(PackageIcon)"/>
<None Include="..\..\README.md" Pack="true" PackagePath="$(PackageReadmeFile)"/>
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions src/Appwrite/Client.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@ public Client(
_headers = new Dictionary<string, string>()
{
{ "content-type", "application/json" },
{ "user-agent" , "AppwriteDotNetSDK/0.4.0 (${Environment.OSVersion.Platform}; ${Environment.OSVersion.VersionString})"},
{ "user-agent" , "AppwriteDotNetSDK/0.4.1 (${Environment.OSVersion.Platform}; ${Environment.OSVersion.VersionString})"},
{ "x-sdk-name", ".NET" },
{ "x-sdk-platform", "server" },
{ "x-sdk-language", "dotnet" },
{ "x-sdk-version", "0.4.0"}, { "X-Appwrite-Response-Format", "1.0.0" }
{ "x-sdk-version", "0.4.1"}, { "X-Appwrite-Response-Format", "1.0.0" }
};

_config = new Dictionary<string, string>();
Expand Down

0 comments on commit 84ec810

Please sign in to comment.