-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMyAspNetCoreApp.Web.csproj
47 lines (42 loc) · 2.54 KB
/
MyAspNetCoreApp.Web.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="12.0.0" />
<PackageReference Include="jquery-globalize" Version="1.4.2" />
<PackageReference Include="jQuery.Validation.Globalize" Version="1.1.0" />
<PackageReference Include="Microsoft.AspNet.Mvc.Core" Version="6.0.0-rc1-final" />
<PackageReference Include="Microsoft.AspNet.Web.Optimization" Version="1.1.3" />
<PackageReference Include="Microsoft.AspNetCore.Html.Abstractions" Version="2.2.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer.Design" Version="2.0.0-preview1-final" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet" Version="2.0.3" />
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="6.0.10" />
<PackageReference Include="System.Web.Http.Common" Version="4.0.20126.16343" />
<PackageReference Include="Web.Optimization" Version="0.0.8" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Web">
<HintPath>..\..\..\..\..\Program Files (x86)\dotnet\packs\Microsoft.NETCore.App.Ref\6.0.10\ref\net6.0\System.Web.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<_ContentIncludedByDefault Remove="Views\Categories\Create.cshtml" />
<_ContentIncludedByDefault Remove="Views\Categories\Delete.cshtml" />
<_ContentIncludedByDefault Remove="Views\Categories\Details.cshtml" />
<_ContentIncludedByDefault Remove="Views\Categories\Edit.cshtml" />
<_ContentIncludedByDefault Remove="Views\Categories\Index.cshtml" />
</ItemGroup>
</Project>