2021-05-28 20:52:56 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
|
|
<RootNamespace>Retroactiune</RootNamespace>
|
2021-06-05 16:39:47 +00:00
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
|
|
<NoWarn>1591</NoWarn>
|
2021-05-28 20:52:56 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-05-29 17:02:16 +00:00
|
|
|
<PackageReference Include="AutoMapper" Version="10.1.1" />
|
|
|
|
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="8.1.1" />
|
|
|
|
<PackageReference Include="MongoDB.Driver" Version="2.12.3" />
|
2021-07-16 17:49:46 +00:00
|
|
|
<PackageReference Include="prometheus-net" Version="4.2.0" />
|
|
|
|
<PackageReference Include="prometheus-net.AspNetCore" Version="4.2.0" />
|
2021-07-17 12:55:22 +00:00
|
|
|
<PackageReference Include="Sentry.AspNetCore" Version="3.8.1" />
|
2021-05-28 20:52:56 +00:00
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="5.6.3" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2021-06-21 14:46:44 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\Retroactiune.Core\Retroactiune.Core.csproj" />
|
|
|
|
<ProjectReference Include="..\Retroactiune.Infrastructure\Retroactiune.Infrastructure.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2021-05-28 20:52:56 +00:00
|
|
|
|
|
|
|
</Project>
|