2018-10-06 02:05:00 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
2018-10-04 21:13:32 +02:00
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2023-02-25 00:07:38 +01:00
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2019-06-02 17:19:28 +02:00
|
|
|
|
<Platforms>AnyCPU;x64</Platforms>
|
2018-10-04 21:13:32 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Folder Include="wwwroot\" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2020-09-13 22:50:52 +02:00
|
|
|
|
<PackageReference Include="AutoMapper" Version="10.0.0" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="3.1.8" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.8" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="3.1.8" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.1.4" />
|
2023-07-12 05:06:18 +02:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
|
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.11" />
|
2018-10-05 00:18:37 +02:00
|
|
|
|
</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>
|