-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEDIFabricInOrderProcessor.csproj
25 lines (25 loc) · 1.18 KB
/
EDIFabricInOrderProcessor.csproj
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>netcoreapp2.1</TargetFramework>
<AzureFunctionsVersion>v2</AzureFunctionsVersion>
<RootNamespace>EDIFabricInOrderProcessor</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Azure.Services.AppAuthentication" Version="1.2.0-preview3" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.ServiceBus" Version="3.1.0-beta2" />
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="1.0.28" />
<PackageReference Include="EdiFabric.Templates.X12" Version="1.1.0" />
<PackageReference Include="EdiFabric.Framework" Version="9.8.4" />
<PackageReference Include="Microsoft.Azure.Management.Logic" Version="4.1.0" />
<PackageReference Include="Microsoft.Azure.Common" Version="2.2.1" />
</ItemGroup>
<ItemGroup>
<None Update="host.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="local.settings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
</None>
</ItemGroup>
</Project>