functions/helloworld/HelloWorldFSharp/HelloWorldFSharp.fsproj (12 lines of code) (raw):

<!-- [START functions_fsharp_project] --> <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>net6.0</TargetFramework> </PropertyGroup> <ItemGroup> <Compile Include="Function.fs" /> </ItemGroup> <ItemGroup> <PackageReference Include="Google.Cloud.Functions.Hosting" Version="2.2.1" /> </ItemGroup> </Project> <!-- [END functions_fsharp_project] -->