-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServerlessCommunity.AzFunc.csproj
More file actions
28 lines (28 loc) · 1.37 KB
/
ServerlessCommunity.AzFunc.csproj
File metadata and controls
28 lines (28 loc) · 1.37 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<AzureFunctionsVersion>v3</AzureFunctionsVersion>
<LangVersion>8</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Storage" Version="3.0.2" />
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="3.0.5" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="Nustache" Version="1.16.0.4" />
<PackageReference Include="ZetaProducerHtmlCompressorStandard" Version="1.0.3" />
</ItemGroup>
<ItemGroup>
<None Update="host.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="local.settings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ServerlessCommunity.Application\ServerlessCommunity.Application.csproj" />
<ProjectReference Include="..\ServerlessCommunity.Config\ServerlessCommunity.Config.csproj" />
<ProjectReference Include="..\ServerlessCommunity.Data.AzStorage\ServerlessCommunity.Data.AzStorage.csproj" />
</ItemGroup>
</Project>