36 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <Project Sdk="Microsoft.NET.Sdk.Web">
 | |
| 
 | |
|   <PropertyGroup>
 | |
|     <TargetFramework>netcoreapp3.1</TargetFramework>
 | |
|     <LangVersion>10</LangVersion>
 | |
|   </PropertyGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <PackageReference Include="Elastic.Apm.EntityFrameworkCore" Version="1.11.1" />
 | |
|     <PackageReference Include="Elastic.Apm.NetCoreAll" Version="1.11.1" />
 | |
|     <PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.16" />
 | |
|     <PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
 | |
|     <PackageReference Include="OpenTelemetry.Contrib.Instrumentation.EntityFrameworkCore" Version="1.0.0-beta2" />
 | |
|     <PackageReference Include="OpenTelemetry.Exporter.Console" Version="1.1.0" />
 | |
|     <PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.1.0" />
 | |
|     <PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.0.0-rc7" />
 | |
|     <PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.0.0-rc7" />
 | |
|     <PackageReference Include="OpenTelemetry.Instrumentation.Http" Version="1.0.0-rc7" />
 | |
|     <PackageReference Include="Serilog.AspNetCore" Version="4.1.0" />
 | |
|     <PackageReference Include="serilog.sinks.console" Version="4.0.0" />
 | |
|     <PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.2" />
 | |
|     <PackageReference Include="Swashbuckle.AspNetCore.Swagger" Version="6.2.2" />
 | |
|     <PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="6.2.2" />
 | |
|     <PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="6.2.2" />
 | |
|   </ItemGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <ProjectReference Include="..\BusinessLogic\LookupLogic\LookupLogic.csproj" />
 | |
|     <ProjectReference Include="..\BusinessLogic\SearchLogic\SearchLogic.csproj" />
 | |
|     <ProjectReference Include="..\Datamodels\Datamodels.csproj" />
 | |
|     <ProjectReference Include="..\Repositories\Repositories.csproj" />
 | |
|   </ItemGroup>
 | |
| 
 | |
| 
 | |
| </Project>
 |