forked from kelly-nelson/ShippedItemInstanceConverter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathShippedItemInstanceConverter.csproj
More file actions
25 lines (25 loc) · 1.14 KB
/
ShippedItemInstanceConverter.csproj
File metadata and controls
25 lines (25 loc) · 1.14 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<AzureFunctionsVersion>v4</AzureFunctionsVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AgGateway.ADAPT.StandardPlugin" Version="0.9.7" />
<PackageReference Include="AgGatewayADAPTFramework" Version="3.1.0" />
<PackageReference Include="AgGatewayADMPlugin" Version="3.0.1" />
<PackageReference Include="AgGatewayISOPlugin" Version="5.6.1" />
<PackageReference Include="AgGatewayShippedItemInstancePlugin" Version="4.1.1" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.OpenApi" Version="0.7.2-preview" />
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="4.0.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
<ItemGroup>
<None Update="host.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="local.settings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
</None>
</ItemGroup>
</Project>