-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVehicles.csproj
30 lines (26 loc) · 1.39 KB
/
Vehicles.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Nullable>disable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>Vehicles</RootNamespace>
</PropertyGroup>
<ItemGroup>
<_ContentIncludedByDefault Remove="Views\VehicleModel\Create.cshtml" />
<_ContentIncludedByDefault Remove="Views\VehicleModel\Delete.cshtml" />
<_ContentIncludedByDefault Remove="Views\VehicleModel\Details.cshtml" />
<_ContentIncludedByDefault Remove="Views\VehicleModel\Edit.cshtml" />
<_ContentIncludedByDefault Remove="Views\VehicleModel\Index.cshtml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AutoMapper" Version="10.1.1" />
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="8.1.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.1">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.SQLite" Version="7.0.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.1" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="7.0.1" />
</ItemGroup>
</Project>