-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPersonsMVC.csproj
More file actions
46 lines (42 loc) · 2.56 KB
/
PersonsMVC.csproj
File metadata and controls
46 lines (42 loc) · 2.56 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>aspnet-PersonsMVC-4c229193-719b-4598-82bd-a85dd002ff03</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<None Include="wwwroot\jquery-ui-1.14.0\AUTHORS.txt" />
<None Include="wwwroot\jquery-ui-1.14.0\external\jquery\jquery.js" />
<None Include="wwwroot\jquery-ui-1.14.0\images\ui-icons_444444_256x240.png" />
<None Include="wwwroot\jquery-ui-1.14.0\images\ui-icons_555555_256x240.png" />
<None Include="wwwroot\jquery-ui-1.14.0\images\ui-icons_777620_256x240.png" />
<None Include="wwwroot\jquery-ui-1.14.0\images\ui-icons_777777_256x240.png" />
<None Include="wwwroot\jquery-ui-1.14.0\images\ui-icons_cc0000_256x240.png" />
<None Include="wwwroot\jquery-ui-1.14.0\images\ui-icons_ffffff_256x240.png" />
<None Include="wwwroot\jquery-ui-1.14.0\index.html" />
<None Include="wwwroot\jquery-ui-1.14.0\jquery-ui.css" />
<None Include="wwwroot\jquery-ui-1.14.0\jquery-ui.js" />
<None Include="wwwroot\jquery-ui-1.14.0\jquery-ui.min.css" />
<None Include="wwwroot\jquery-ui-1.14.0\jquery-ui.min.js" />
<None Include="wwwroot\jquery-ui-1.14.0\jquery-ui.structure.css" />
<None Include="wwwroot\jquery-ui-1.14.0\jquery-ui.structure.min.css" />
<None Include="wwwroot\jquery-ui-1.14.0\jquery-ui.theme.css" />
<None Include="wwwroot\jquery-ui-1.14.0\jquery-ui.theme.min.css" />
<None Include="wwwroot\jquery-ui-1.14.0\LICENSE.txt" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.17.1" />
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="10.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="10.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="10.0.0" />
<PackageReference Include="Microsoft.Build" Version="18.0.2" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Features" Version="4.14.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="10.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="10.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="9.0.0" />
</ItemGroup>
</Project>