2018-10-06 02:05:00 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
2018-10-04 21:13:32 +02:00
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2018-10-06 02:05:00 +02:00
|
|
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
2018-10-04 21:13:32 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Folder Include="wwwroot\" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2019-03-12 22:23:38 +01:00
|
|
|
|
<PackageReference Include="AutoMapper" Version="8.0.0" />
|
2018-10-06 02:05:00 +02:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.9" />
|
2018-10-07 15:15:11 +02:00
|
|
|
|
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.0.4" />
|
2019-03-09 15:03:08 +01:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
|
2018-10-05 00:18:37 +02:00
|
|
|
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="2.1.2" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2019-03-12 22:23:38 +01:00
|
|
|
|
<ProjectReference Include="..\LaDOSE.DTO\LaDOSE.DTO.csproj" />
|
2018-10-05 00:18:37 +02:00
|
|
|
|
<ProjectReference Include="..\LaDOSE.Entity\LaDOSE.Entity.csproj" />
|
2018-10-06 13:05:38 +02:00
|
|
|
|
<ProjectReference Include="..\LaDOSE.Service\LaDOSE.Business.csproj" />
|
2018-10-04 21:13:32 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2018-10-06 02:55:29 +02:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Content Update="appsettings.json">
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2018-10-06 02:05:00 +02:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Update="localhost.pfx">
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2018-10-04 21:13:32 +02:00
|
|
|
|
</Project>
|