-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFluentPollingTriggerBuilder.csproj
More file actions
31 lines (27 loc) · 1.29 KB
/
FluentPollingTriggerBuilder.csproj
File metadata and controls
31 lines (27 loc) · 1.29 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Company>TheNetw.org</Company>
<Authors>jan.skala@thenetw.org</Authors>
<Description>Utills for LogicApps. Fluent Async polling trigger. Create a polling trigger on your backend API and call it from Logic Apps.</Description>
<Product>Networg Utilities LogicApp utills</Product>
<RepositoryUrl>https://github.com/NETWORG/Utilities.LogicApps.FluentPollingTriggerBuilder</RepositoryUrl>
<NeutralLanguage>en</NeutralLanguage>
<PackageLicenseExpression></PackageLicenseExpression>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Http.Extensions" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Abstractions" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.2" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>