Merge pull request #1216 from Microsoft/CLM/EnableAppInsightsNuGet
Update AppInsights .Net Core 2 project for packaging
This commit is contained in:
Коммит
2a412277c0
|
@ -1,9 +1,52 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<Version Condition=" '$(PackageVersion)' == '' ">4.2.0-local</Version>
|
||||||
|
<Version Condition=" '$(PackageVersion)' != '' ">$(PackageVersion)</Version>
|
||||||
|
<PackageVersion Condition=" '$(PackageVersion)' == '' ">4.2.0-local</PackageVersion>
|
||||||
|
<PackageVersion Condition=" '$(PackageVersion)' != '' ">$(PackageVersion)</PackageVersion>
|
||||||
|
<Configurations>Debug;Release;Documentation;Debug - NuGet Packages;</Configurations>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netstandard2.0</TargetFramework>
|
<TargetFramework>netstandard2.0</TargetFramework>
|
||||||
|
<PackageId>Microsoft.Bot.Builder.Integration.ApplicationInsights.Core</PackageId>
|
||||||
|
<Description>This library integrates the Microsoft Bot Builder SDK with Application Insights.</Description>
|
||||||
|
<Summary>This library provides integration between the Microsoft Bot Builder SDK and Application Insights.</Summary>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
|
<SignAssembly>true</SignAssembly>
|
||||||
|
<DelaySign>true</DelaySign>
|
||||||
|
<AssemblyOriginatorKeyFile>..\..\..\build\35MSSharedLib1024.snk</AssemblyOriginatorKeyFile>
|
||||||
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<Company>Microsoft</Company>
|
||||||
|
<Authors>microsoft,BotFramework,nugetbotbuilder</Authors>
|
||||||
|
<Product>Microsoft Bot Builder SDK</Product>
|
||||||
|
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
|
||||||
|
<PackageProjectUrl>https://github.com/Microsoft/botbuilder-dotnet</PackageProjectUrl>
|
||||||
|
<PackageIconUrl>http://docs.botframework.com/images/bot_icon.png</PackageIconUrl>
|
||||||
|
<PackageLicenseUrl>https://github.com/Microsoft/BotBuilder/blob/master/LICENSE</PackageLicenseUrl>
|
||||||
|
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
|
||||||
|
<RepositoryUrl>https://github.com/Microsoft/botbuilder-dotnet</RepositoryUrl>
|
||||||
|
<LicenseUrl>https://github.com/Microsoft/BotBuilder-dotnet/blob/master/LICENSE</LicenseUrl>
|
||||||
|
<RepositoryType />
|
||||||
|
<PackageTags>bots;ai;botframework;botbuilder</PackageTags>
|
||||||
|
<NeutralLanguage />
|
||||||
|
<AssemblyName>Microsoft.Bot.Builder.Integration.ApplicationInsights.Core</AssemblyName>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Documentation|AnyCPU'">
|
||||||
|
<DocumentationFile>bin\$(Configuration)\netstandard2.0\Microsoft.Bot.Builder.Integration.ApplicationInsights.Core.xml</DocumentationFile>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
||||||
|
<DocumentationFile>bin\$(Configuration)\netstandard2.0\Microsoft.Bot.Builder.Integration.ApplicationInsights.Core.xml</DocumentationFile>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.5.1" />
|
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.5.1" />
|
||||||
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.1.1" />
|
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.1.1" />
|
||||||
|
|
Загрузка…
Ссылка в новой задаче