-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathAppwrite.csproj
More file actions
29 lines (27 loc) · 1.27 KB
/
Appwrite.csproj
File metadata and controls
29 lines (27 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net462</TargetFrameworks>
<PackageId>Appwrite</PackageId>
<Version>0.24.1</Version>
<Authors>Appwrite Team</Authors>
<Company>Appwrite Team</Company>
<Description>
Appwrite is an open-source self-hosted backend server that abstracts and simplifies 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>
<RepositoryUrl>https://github.com/appwrite/sdk-for-dotnet</RepositoryUrl>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Text.Json" Version="9.0.5" />
<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>