-
Notifications
You must be signed in to change notification settings - Fork 159
/
Copy pathCoreWiki.Notifications.csproj
34 lines (27 loc) · 1.2 KB
/
CoreWiki.Notifications.csproj
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>netcoreapp2.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Hosting.Abstractions" Version="2.1.1" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor" Version="2.1.3" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="2.1.1" />
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="2.1.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="2.1.1" />
<PackageReference Include="Microsoft.Extensions.Options" Version="2.1.1" />
<PackageReference Include="sendgrid" Version="9.24.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CoreWiki.Notifications.Abstractions\CoreWiki.Notifications.Abstractions.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Templates\Shared\" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Templates\**\*.cshtml" />
</ItemGroup>
<ItemGroup>
<None Remove="Templates\ConfirmationEmail.cshtml" />
<None Remove="Templates\ForgotPasswordEmail.cshtml" />
</ItemGroup>
</Project>