-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathODXProxy.Client.csproj
More file actions
39 lines (31 loc) · 1.33 KB
/
ODXProxy.Client.csproj
File metadata and controls
39 lines (31 loc) · 1.33 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
30
31
32
33
34
35
36
37
38
39
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageId>ODXProxy.Client</PackageId>
<Version>0.1.0</Version>
<Authors>Julian Wajong</Authors>
<Company>TERRAKERNEL PTE. LTD.</Company>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Description>A .NET client library for the ODXProxy Gateway to interact with Odoo instances.</Description>
<PackageTags>odoo;odx;proxy;client</PackageTags>
<PackageProjectUrl>https://github.com/your-org/ODXProxyClient-Net</PackageProjectUrl>
<!-- gitrepos -->
<RepositoryUrl>https://github.com/your-org/ODXProxyClient-Net.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<!-- include README.md -->
<PackageReadmeFile>README.md</PackageReadmeFile>
<!-- docs -->
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- allow debug -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<!-- C# implementation of ULID -->
<PackageReference Include="Ulid" Version="1.3.3" />
</ItemGroup>
</Project>