-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskManager.csproj
More file actions
82 lines (72 loc) · 4.08 KB
/
TaskManager.csproj
File metadata and controls
82 lines (72 loc) · 4.08 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
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<UserSecretsId>aspnet-TaskManager-DBFA5A47-3724-453A-AB00-C6346A32CE13</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<Compile Remove="wwwroot\ClientApp\build\**" />
<Content Remove="wwwroot\ClientApp\build\**" />
<EmbeddedResource Remove="wwwroot\ClientApp\build\**" />
<None Remove="wwwroot\ClientApp\build\**" />
</ItemGroup>
<ItemGroup>
<None Remove="wwwroot\ClientApp\public\web.txt" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="jQuery" Version="3.4.1" />
<PackageReference Include="Microsoft.AspNet.Identity.Core" Version="2.2.3" />
<PackageReference Include="Microsoft.AspNet.SignalR" Version="2.4.1" />
<PackageReference Include="Microsoft.AspNet.SignalR.Core" Version="2.4.1" />
<PackageReference Include="Microsoft.AspNetCore.Cors" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="3.1.0" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="3.1.0" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="3.1.0" />
<PackageReference Include="Microsoft.AspNetCore.SpaServices.Extensions" Version="3.1.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.1.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.1.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="3.1.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="3.1.0" />
<PackageReference Include="Microsoft.jQuery.Unobtrusive.Ajax" Version="3.2.6" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.1.1" />
<PackageReference Include="Ninject" Version="3.3.4" />
<PackageReference Include="Ninject.Extensions.Conventions" Version="3.3.0" />
<PackageReference Include="PagedList.Mvc" Version="4.5.0" />
<PackageReference Include="SendGrid" Version="9.12.0" />
<PackageReference Include="WebMatrix.WebData" Version="2.0.30506" />
</ItemGroup>
<ItemGroup>
<Folder Include="Models\CalorieModels\" />
<Folder Include="wwwroot\Downloads\" />
<Folder Include="wwwroot\ClientApp\build2\" />
</ItemGroup>
<ItemGroup>
<None Include="wwwroot\ClientApp\.gitignore" />
<None Include="wwwroot\ClientApp\public\favicon.ico" />
<None Include="wwwroot\ClientApp\public\index.html" />
<None Include="wwwroot\ClientApp\README.md" />
<None Include="wwwroot\ClientApp\src\actions\api.js" />
<None Include="wwwroot\ClientApp\src\actions\DayTotal.js" />
<None Include="wwwroot\ClientApp\src\actions\Food.js" />
<None Include="wwwroot\ClientApp\src\actions\store.js" />
<None Include="wwwroot\ClientApp\src\App.js" />
<None Include="wwwroot\ClientApp\src\App.test.js" />
<None Include="wwwroot\ClientApp\src\components\Counter.js" />
<None Include="wwwroot\ClientApp\src\components\FetchData.js" />
<None Include="wwwroot\ClientApp\src\components\FoodChart.js" />
<None Include="wwwroot\ClientApp\src\components\FoodForm.js" />
<None Include="wwwroot\ClientApp\src\components\Foods.js" />
<None Include="wwwroot\ClientApp\src\components\Home.js" />
<None Include="wwwroot\ClientApp\src\components\Layout.js" />
<None Include="wwwroot\ClientApp\src\components\NavMenu.css" />
<None Include="wwwroot\ClientApp\src\components\NavMenu.js" />
<None Include="wwwroot\ClientApp\src\components\useForm.js" />
<None Include="wwwroot\ClientApp\src\custom.css" />
<None Include="wwwroot\ClientApp\src\index.js" />
<None Include="wwwroot\ClientApp\src\reducers\DayTotal.js" />
<None Include="wwwroot\ClientApp\src\reducers\Food.js" />
<None Include="wwwroot\ClientApp\src\reducers\index.js" />
<None Include="wwwroot\ClientApp\src\registerServiceWorker.js" />
<None Include="wwwroot\ClientApp\src\utils\getCurrentDate.js" />
<None Include="wwwroot\Downloads\ResumeTest.txt" />
</ItemGroup>
</Project>