52 lines
2.1 KiB
XML
52 lines
2.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<RuntimeFrameworkVersion>2.0.0</RuntimeFrameworkVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Dapper" Version="1.50.5" />
|
|
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.1.0-rc1-final" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="2.1.0-rc1-final" PrivateAssets="All" />
|
|
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.1.0-rc1-final" PrivateAssets="All" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Folder Include="Views\Catalog\" />
|
|
<Folder Include="wwwroot\fonts\" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ApplicationCore\ApplicationCore.csproj" />
|
|
<ProjectReference Include="..\Infrastructure\Infrastructure.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<DotNetCliToolReference Include="Microsoft.EntityFrameworkCore.Tools" Version="2.0.0" />
|
|
<DotNetCliToolReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet" Version="2.0.0" />
|
|
<DotNetCliToolReference Include="Microsoft.Extensions.SecretManager.Tools" Version="2.0.0" />
|
|
<DotNetCliToolReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Tools" Version="2.0.0" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="wwwroot\images\products\1.png" />
|
|
<None Include="wwwroot\images\products\10.png" />
|
|
<None Include="wwwroot\images\products\11.png" />
|
|
<None Include="wwwroot\images\products\12.png" />
|
|
<None Include="wwwroot\images\products\2.png" />
|
|
<None Include="wwwroot\images\products\3.png" />
|
|
<None Include="wwwroot\images\products\4.png" />
|
|
<None Include="wwwroot\images\products\5.png" />
|
|
<None Include="wwwroot\images\products\6.png" />
|
|
<None Include="wwwroot\images\products\7.png" />
|
|
<None Include="wwwroot\images\products\8.png" />
|
|
<None Include="wwwroot\images\products\9.png" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Update="appsettings.json">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
</Project>
|