This repository has been archived on 2023-10-28. You can view files and clone it, but cannot push or open issues or pull requests.
pwt-0x01-ng/pwt-0x01-ng.csproj

30 lines
1.0 KiB
XML
Raw Normal View History

2020-10-26 21:58:35 +01:00
<Project Sdk="Microsoft.NET.Sdk.Web">
2020-12-28 14:50:19 +01:00
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
2020-10-26 21:58:35 +01:00
2020-12-28 14:50:19 +01:00
<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.EntityFrameworkCore" Version="3.1.10" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="3.1.4" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="3.1.10" />
</ItemGroup>
2020-10-26 21:58:35 +01:00
2020-12-28 14:50:19 +01:00
<ItemGroup>
<Folder Include="Areas\Admin\Data" />
<Folder Include="Areas\Admin\Models" />
<Folder Include="Models\Database" />
<Folder Include="wwwroot\images\carousels" />
<Folder Include="wwwroot\images\products" />
2020-12-28 14:50:19 +01:00
</ItemGroup>
2020-10-26 21:58:35 +01:00
</Project>