forked from wanderer/pwt-0x01-ng
44 lines
1.8 KiB
XML
44 lines
1.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<OutputPath>bin\Debug</OutputPath>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(RunConfiguration)' == 'Default' ">
|
|
<StartAction>Project</StartAction>
|
|
<LaunchBrowser>false</LaunchBrowser>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="3.1.11" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.11" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="3.1.11" />
|
|
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.1.4" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.1.11" />
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="3.1.11" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="3.1.11" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Areas\Admin\Data" />
|
|
<Folder Include="Areas\Admin\Models" />
|
|
<Folder Include="Areas\Admin\Views" />
|
|
<Folder Include="Areas\Security\Data" />
|
|
<Folder Include="Areas\Security\Models" />
|
|
<Folder Include="Areas\Security\Views" />
|
|
<Folder Include="Areas\Customer\Views" />
|
|
<Folder Include="Migrations\pgsql" />
|
|
<Folder Include="Models\ApplicationServices" />
|
|
<Folder Include="Models\Database" />
|
|
<Folder Include="Models\Database\Conf" />
|
|
<Folder Include="Models\Identity" />
|
|
<Folder Include="Models\Validation" />
|
|
<Folder Include="wwwroot\images\carousels" />
|
|
<Folder Include="wwwroot\images\products" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|