forked from S3bt3r/Zammad.Client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathZammad.Client.csproj
25 lines (25 loc) · 1.09 KB
/
Zammad.Client.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyTitle>Zammad.Client</AssemblyTitle>
<Version>1.0.0</Version>
<NeutralLanguage>en-US</NeutralLanguage>
<Product>Zammad Client</Product>
<Description>Zammad Client Library for .NET</Description>
<Authors>Asesjix</Authors>
<PackageProjectUrl>https://github.com/Asesjix/Zammad-Client</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseUrl>https://raw.githubusercontent.com/Asesjix/Zammad-Client/master/LICENSE</PackageLicenseUrl>
<PackageTags>zammad</PackageTags>
<RepositoryUrl>https://github.com/Asesjix/Zammad-Client</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>TRACE;DEBUG;NETSTANDARD2_0</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
</ItemGroup>
</Project>