source: PostgreSqlDotnetCore/PostgreSqlDotnetCore.csproj@ 784b3ad

main
Last change on this file since 784b3ad was 2aea0fd, checked in by ElenaMoskova <elena.moskova99@…>, 2 months ago

init commit Elena

  • Property mode set to 100644
File size: 3.8 KB
Line 
1<Project Sdk="Microsoft.NET.Sdk.Web">
2
3 <PropertyGroup>
4 <TargetFramework>net7.0</TargetFramework>
5 <Nullable>enable</Nullable>
6 <ImplicitUsings>enable</ImplicitUsings>
7 <UserSecretsId>aspnet-PostgreSqlDotnetCore-89e13ec0-5f64-4098-85e4-8d4f109b66f2</UserSecretsId>
8 </PropertyGroup>
9
10 <ItemGroup>
11 <Content Remove="wwwroot\js\bootstrap.js" />
12 <Content Remove="wwwroot\js\bootstrap.min.js" />
13 <Content Remove="wwwroot\js\jquery-3.4.1.intellisense.js" />
14 <Content Remove="wwwroot\js\jquery-3.4.1.js" />
15 <Content Remove="wwwroot\js\jquery-3.4.1.min.js" />
16 <Content Remove="wwwroot\js\jquery-3.4.1.min.map" />
17 <Content Remove="wwwroot\js\jquery-3.4.1.slim.js" />
18 <Content Remove="wwwroot\js\jquery-3.4.1.slim.min.js" />
19 <Content Remove="wwwroot\js\jquery-3.4.1.slim.min.map" />
20 <Content Remove="wwwroot\js\jquery.validate-vsdoc.js" />
21 <Content Remove="wwwroot\js\jquery.validate.js" />
22 <Content Remove="wwwroot\js\jquery.validate.min.js" />
23 <Content Remove="wwwroot\js\jquery.validate.unobtrusive.js" />
24 <Content Remove="wwwroot\js\jquery.validate.unobtrusive.min.js" />
25 <Content Remove="wwwroot\js\modernizr-2.8.3.js" />
26 </ItemGroup>
27
28 <ItemGroup>
29 <None Include="Views\City\Create.cshtml" />
30 <None Include="Views\City\Delete.cshtml" />
31 <None Include="Views\City\Details.cshtml" />
32 <None Include="Views\City\Edit.cshtml" />
33 <None Include="Views\City\Index.cshtml" />
34 <None Include="Views\Jobs\Create.cshtml" />
35 <None Include="Views\Jobs\Delete.cshtml" />
36 <None Include="Views\Jobs\Details.cshtml" />
37 <None Include="Views\Jobs\Edit.cshtml" />
38 <None Include="Views\Jobs\Index.cshtml" />
39 <None Include="Views\Products\Create.cshtml" />
40 <None Include="Views\Products\Delete.cshtml" />
41 <None Include="Views\Products\Details.cshtml" />
42 <None Include="Views\Products\Edit.cshtml" />
43 <None Include="Views\Products\Index.cshtml" />
44 <None Include="wwwroot\js\bootstrap.js" />
45 <None Include="wwwroot\js\bootstrap.min.js" />
46 <None Include="wwwroot\js\jquery-3.4.1.intellisense.js" />
47 <None Include="wwwroot\js\jquery-3.4.1.js" />
48 <None Include="wwwroot\js\jquery-3.4.1.min.js" />
49 <None Include="wwwroot\js\jquery-3.4.1.min.map" />
50 <None Include="wwwroot\js\jquery-3.4.1.slim.js" />
51 <None Include="wwwroot\js\jquery-3.4.1.slim.min.js" />
52 <None Include="wwwroot\js\jquery-3.4.1.slim.min.map" />
53 <None Include="wwwroot\js\jquery.validate-vsdoc.js" />
54 <None Include="wwwroot\js\jquery.validate.js" />
55 <None Include="wwwroot\js\jquery.validate.min.js" />
56 <None Include="wwwroot\js\jquery.validate.unobtrusive.js" />
57 <None Include="wwwroot\js\jquery.validate.unobtrusive.min.js" />
58 <None Include="wwwroot\js\modernizr-2.8.3.js" />
59 </ItemGroup>
60
61 <ItemGroup>
62 <PackageReference Include="Microsoft.AspNet.Mvc" Version="5.3.0" />
63 <PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="7.0.1" />
64 <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="7.0.15" />
65 <PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="7.0.15" />
66 <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.15" />
67 <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.15" />
68 <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.15">
69 <PrivateAssets>all</PrivateAssets>
70 <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
71 </PackageReference>
72 <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="7.0.11" />
73 <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.1" />
74 </ItemGroup>
75
76 <ItemGroup>
77 <Folder Include="Views\PetCares\" />
78 </ItemGroup>
79
80</Project>
Note: See TracBrowser for help on using the repository browser.