forked from Azure/azure-functions-durable-extension
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDurableFSharp.fsproj
34 lines (29 loc) · 1.21 KB
/
DurableFSharp.fsproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<FSharpCoreImplicitPackageVersion>4.2.3</FSharpCoreImplicitPackageVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="TaskBuilder.fs" Version="1.0.0" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.DurableTask" Version="1.8.3" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Storage" Version="3.0.0" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Twilio" Version="3.0.0" />
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="1.0.26" />
</ItemGroup>
<ItemGroup>
<Compile Include="HttpStart.fs" />
<Compile Include="HttpSyncStart.fs" />
<Compile Include="HelloSequence.fs" />
<Compile Include="BackupSiteContent.fs" />
<Compile Include="Monitor.fs" />
<Compile Include="PhoneVerification.fs" />
</ItemGroup>
<ItemGroup>
<Content Include="host.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="local.settings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>