forked from simplefx/Simple.OData
-
Notifications
You must be signed in to change notification settings - Fork 198
Expand file tree
/
Copy pathSimple.OData.Client.V3.Adapter.csproj
More file actions
36 lines (29 loc) · 1.17 KB
/
Simple.OData.Client.V3.Adapter.csproj
File metadata and controls
36 lines (29 loc) · 1.17 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
<DocumentationFile>$(DocumentationFile)\$(AssemblyName).xml</DocumentationFile>
<StrongNamePublicKey>$(StrongNamePublicKey)</StrongNamePublicKey>
</PropertyGroup>
<PropertyGroup>
<PackageId>Simple.OData.V3.Client</PackageId>
<Summary>Simple.OData.Client helps you interact with OData APIs that comply with any version of the OData standard.</Summary>
<Description>
$(Summary) This package contains everything you need to connect to OData v1 through v3 APIs.
Commonly used types:
Simple.OData.Client.ODataClient
</Description>
<PackageTags>$(PackageTags);v3;</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Data.OData" Version="[5.*, 6.0.0)" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Simple.OData.Client.Core\Simple.OData.Client.Core.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>