mirror of https://github.com/dotnet/tye.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
973 B
23 lines
973 B
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<AzureFunctionsVersion>v3</AzureFunctionsVersion>
|
|
<RootNamespace>worker_function</RootNamespace>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Storage" Version="3.0.10" />
|
|
<PackageReference Include="Microsoft.Azure.Functions.Extensions" Version="1.0.0" />
|
|
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="3.0.3" />
|
|
<PackageReference Include="dapper" Version="2.0.30" />
|
|
<PackageReference Include="npgsql" Version="4.1.3.1" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Update="host.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="local.settings.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
</Project>
|