-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathOdataClientGrandNode.csproj
More file actions
37 lines (30 loc) · 1.06 KB
/
OdataClientGrandNode.csproj
File metadata and controls
37 lines (30 loc) · 1.06 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<None Remove="Connected Services\OData Service\Csdl.xml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Connected Services\OData Service\Csdl.xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.OData.Client" Version="7.6.4" />
<PackageReference Include="Microsoft.OData.Core" Version="7.6.4" />
<PackageReference Include="Microsoft.OData.Edm" Version="7.6.4" />
<PackageReference Include="Microsoft.Spatial" Version="7.6.4" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
</ItemGroup>
<ItemGroup>
<WCFMetadata Include="Connected Services" />
</ItemGroup>
<ItemGroup>
<None Update="bill.jpg">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="steve.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>