-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathLanina.Public.Web.Api.csproj
58 lines (52 loc) · 2.68 KB
/
Lanina.Public.Web.Api.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.2</TargetFramework>
<AspNetCoreHostingModel>inprocess</AspNetCoreHostingModel>
</PropertyGroup>
<ItemGroup>
<None Remove="applicationReceivedMailTemplate.txt" />
<None Remove="google\Google.Apis.Auth.OAuth2.Responses.TokenResponse-user\Google.Apis.Auth.OAuth2.Responses.TokenResponse-user" />
<None Remove="invitationMailTemplate.txt" />
<None Remove="MailTemplates\interviewDateSetMailTemplate.txt" />
<None Remove="MailTemplates\InterviewReminderMailTemplate.txt" />
<None Remove="MailTemplates\invitationForSecondInterviewMailTemplate.txt" />
<None Remove="MailTemplates\rejectApplicantMailTemplate.txt" />
</ItemGroup>
<ItemGroup>
<Content Include="google\Google.Apis.Auth.OAuth2.Responses.TokenResponse-user\Google.Apis.Auth.OAuth2.Responses.TokenResponse-user">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="MailTemplates\invitationForSecondInterviewMailTemplate.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="MailTemplates\interviewDateSetMailTemplate.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="MailTemplates\interviewReminderMailTemplate.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="MailTemplates\rejectApplicantMailTemplate.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="MailTemplates\applicationReceivedMailTemplate.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="MailTemplates\invitationForFirstInterviewMailTemplate.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Google.Apis.Calendar.v3" Version="1.40.1.1611" />
<PackageReference Include="Hangfire.AspNetCore" Version="1.7.3" />
<PackageReference Include="Hangfire.SQLite.Core" Version="1.0.2" />
<PackageReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="2.2.0" PrivateAssets="All" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="2.2.4" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
<PackageReference Include="RestSharp" Version="106.6.9" />
<PackageReference Include="TimePeriodLibrary.NET" Version="2.1.1" />
</ItemGroup>
<ItemGroup>
<Folder Include="Databases\" />
</ItemGroup>
</Project>