-
Notifications
You must be signed in to change notification settings - Fork 0
/
ERPXTpl.csproj
36 lines (32 loc) · 1.45 KB
/
ERPXTpl.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>ERPXTpl</RootNamespace>
<PackageProjectUrl></PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/BElluu/ERPXT.PL</RepositoryUrl>
<PackageTags>erp;api;erpxt</PackageTags>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<Authors>Bartłomiej Komendarczuk</Authors>
<Product>$(AssemblyName)</Product>
<PackageId>$(AssemblyName)</PackageId>
<Description>A library that is to facilitate the use of the ERP XT API without unnecessary implementation.</Description>
<Copyright>https://choosealicense.com/licenses/mit/</Copyright>
<Version>1.1.0</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Http" Version="6.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="System.Text.Json" Version="6.0.1" />
<None Include="LICENSE" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>