insight/src/Core/Insight.Infrastructure/Insight.Infrastructure.csproj

33 lines
1.1 KiB
XML
Raw Normal View History

2023-09-21 18:58:32 +02:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<RootNamespace>Insight.Infrastructure</RootNamespace>
<Product>Insight</Product>
<AssemblyVersion>2023.12.14.0</AssemblyVersion>
2023-09-21 18:58:32 +02:00
<ImplicitUsings>true</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>none</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>none</DebugType>
</PropertyGroup>
<ItemGroup>
2023-11-17 17:12:41 +01:00
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="7.0.13" />
<PackageReference Include="MongoDB.Driver" Version="2.23.0" />
2023-09-21 18:58:32 +02:00
<PackageReference Include="AspNetCore.Identity.MongoDbCore" Version="3.1.2" />
2023-11-17 17:12:41 +01:00
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="7.0.3" />
<PackageReference Include="Vaitr.Scheduler" Version="2023.12.6" />
2023-09-21 18:58:32 +02:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Insight.Domain\Insight.Domain.csproj" />
</ItemGroup>
</Project>