-
Notifications
You must be signed in to change notification settings - Fork 622
Expand file tree
/
Copy pathAllReady.NotificationsWebJob.csproj
More file actions
34 lines (29 loc) · 1.43 KB
/
AllReady.NotificationsWebJob.csproj
File metadata and controls
34 lines (29 loc) · 1.43 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
29
30
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net46</TargetFramework>
<AssemblyName>AllReady.NotificationsWebJob</AssemblyName>
<OutputType>Exe</OutputType>
<PackageId>AllReady.NotificationsWebJob</PackageId>
<NetStandardImplicitPackageVersion>1.6.0</NetStandardImplicitPackageVersion>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\AllReady.Core\AllReady.Core.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Azure.WebJobs" Version="2.0.0" />
<PackageReference Include="Microsoft.Azure.WebJobs.Core" Version="2.0.0" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions" Version="2.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Sendgrid" Version="6.1.0" />
<PackageReference Include="SendGrid.SmtpApi" Version="1.3.2" />
<PackageReference Include="Twilio" Version="4.7.2" />
<PackageReference Include="WindowsAzure.Storage" Version="7.2.1" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net46' ">
<Reference Include="System" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>
</Project>