-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGetValueFromAPI.csproj
More file actions
48 lines (48 loc) · 1.95 KB
/
GetValueFromAPI.csproj
File metadata and controls
48 lines (48 loc) · 1.95 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
40
41
42
43
44
45
46
47
48
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net481</TargetFramework>
<OutputType>Library</OutputType>
<RootNamespace>GetValueFromAPIExample</RootNamespace>
<AssemblyName>GetValueFromAPIExample</AssemblyName>
<Company>Acumatica</Company>
<Copyright>Copyright © 2005-2025 Acumatica, Inc. All rights reserved.</Copyright>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<OutputPath>CustomizationProject\bin/</OutputPath>
</PropertyGroup>
<ItemGroup>
<Reference Include="Autofac">
<HintPath>..\..\Acumatica Sites\25r193\Bin\Autofac.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Microsoft.Extensions.Http">
<HintPath>..\..\Acumatica Sites\25r193\Bin\Microsoft.Extensions.Http.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="PX.Common">
<HintPath>..\..\..\Acumatica Sites\25r193\Bin\PX.Common.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="PX.Common.Std">
<HintPath>..\..\..\Acumatica Sites\25r193\Bin\PX.Common.Std.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="PX.CS.Contracts">
<HintPath>..\..\..\Acumatica Sites\25r193\Bin\PX.CS.Contracts.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="PX.Data">
<HintPath>..\..\..\Acumatica Sites\25r193\Bin\PX.Data.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="PX.Objects">
<HintPath>..\..\..\Acumatica Sites\25r193\Bin\PX.Objects.DLL</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
</Project>