-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathzulip-csharp.csproj
40 lines (34 loc) · 1.42 KB
/
zulip-csharp.csproj
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
30
31
32
33
34
35
36
37
38
39
40
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>ZulipAPI</RootNamespace>
<Version>0.2.1</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<RepositoryUrl>https://github.com/zulip/zulip-csharp</RepositoryUrl>
<PackageProjectUrl>https://zulip.org/</PackageProjectUrl>
<Copyright>MIT License</Copyright>
<Authors>penCsharpener</Authors>
<Company>Zulip</Company>
<PackageIconUrl>https://raw.githubusercontent.com/zulip/zulip-csharp/e26ae9be0d12b0f1e00196141ae66ea90ae890ac/Resources/Logo/zulip-csharp_logo.ico</PackageIconUrl>
<PackageId>ZulipAPI</PackageId>
<Product>ZulipAPI</Product>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>RELEASE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.5.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="RestSharp" Version="106.6.9" />
</ItemGroup>
<ItemGroup>
<None Include="..\LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>