-
Notifications
You must be signed in to change notification settings - Fork 1
/
TheBugTracker.csproj
67 lines (62 loc) · 3.21 KB
/
TheBugTracker.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
59
60
61
62
63
64
65
66
67
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>aspnet-TheBugTracker-1aeca4b0-968d-492f-aa6c-ce075ba6f05b</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Views\ProjectPriorities\**" />
<Compile Remove="Views\TicketAttachments\**" />
<Compile Remove="Views\TicketComments\**" />
<Compile Remove="Views\TicketHistories\**" />
<Compile Remove="Views\TicketPriorities\**" />
<Compile Remove="Views\TicketStatus\**" />
<Compile Remove="Views\TicketTypes\**" />
<Content Remove="Views\ProjectPriorities\**" />
<Content Remove="Views\TicketAttachments\**" />
<Content Remove="Views\TicketComments\**" />
<Content Remove="Views\TicketHistories\**" />
<Content Remove="Views\TicketPriorities\**" />
<Content Remove="Views\TicketStatus\**" />
<Content Remove="Views\TicketTypes\**" />
<EmbeddedResource Remove="Views\ProjectPriorities\**" />
<EmbeddedResource Remove="Views\TicketAttachments\**" />
<EmbeddedResource Remove="Views\TicketComments\**" />
<EmbeddedResource Remove="Views\TicketHistories\**" />
<EmbeddedResource Remove="Views\TicketPriorities\**" />
<EmbeddedResource Remove="Views\TicketStatus\**" />
<EmbeddedResource Remove="Views\TicketTypes\**" />
<None Remove="Views\ProjectPriorities\**" />
<None Remove="Views\TicketAttachments\**" />
<None Remove="Views\TicketComments\**" />
<None Remove="Views\TicketHistories\**" />
<None Remove="Views\TicketPriorities\**" />
<None Remove="Views\TicketStatus\**" />
<None Remove="Views\TicketTypes\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Controllers\ProjectPrioritiesController.cs" />
<Compile Remove="Controllers\TicketAttachmentsController.cs" />
<Compile Remove="Controllers\TicketCommentsController.cs" />
<Compile Remove="Controllers\TicketHistoriesController.cs" />
<Compile Remove="Controllers\TicketPrioritiesController.cs" />
<Compile Remove="Controllers\TicketStatusController.cs" />
<Compile Remove="Controllers\TicketTypesController.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MailKit" Version="4.1.0" />
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="7.0.7" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="7.0.10" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="7.0.10" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.10" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.10">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="7.0.9" />
<PackageReference Include="MimeKit" Version="4.1.0" />
<PackageReference Include="Npgsql" Version="7.0.4" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.4" />
</ItemGroup>
</Project>