21 lines
970 B
XML
21 lines
970 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<Import Project="..\..\build\common.props" />
|
|
<Import Project="..\..\build\hostingstartup.targets" />
|
|
|
|
<PropertyGroup>
|
|
<Description>ASP.NET Core lightup integration with Application Insights.</Description>
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<OutputType>Exe</OutputType>
|
|
<PackageTags>aspnetcore;ApplicationInsights;Analytics;Telemetry;AppInsights</PackageTags>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="$(AppInsightsVersion)" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Hosting.Abstractions" Version="$(AspNetCoreVersion)" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Razor.Runtime" Version="$(AspNetCoreVersion)" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="$(AspNetCoreVersion)" />
|
|
</ItemGroup>
|
|
|
|
</Project> |