src/Google.Cloud.Functions.Templates/templates/event-function-fs/MyFunction.fsproj (14 lines of code) (raw):

<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>net8.0</TargetFramework> </PropertyGroup> <ItemGroup> <Compile Include="Function.fs" /> <None Include="appsettings*.json" CopyToOutputDirectory="PreserveNewest" /> </ItemGroup> <ItemGroup> <PackageReference Include="Google.Cloud.Functions.Hosting" Version="2.2.1" /> <PackageReference Include="Google.Events.Protobuf" Version="1.7.0" /> </ItemGroup> </Project>