15 lines
454 B
XML
15 lines
454 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<OutputType>Exe</OutputType>
|
||
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="Google.Cloud.Functions.Hosting" Version="1.0.0" />
|
||
|
<PackageReference Include="Google.Events.Protobuf" Version="1.0.0" />
|
||
|
<None Include="appsettings*.json" CopyToOutputDirectory="PreserveNewest" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|