50 строки
2.8 KiB
XML
50 строки
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup Condition="$(OS) == 'Windows_NT'">
|
|
<!-- Including this file will generate both the *.nupkg and *.symbols.nupkg -->
|
|
<!--https://docs.microsoft.com/en-us/nuget/create-packages/symbol-packages-snupkg-->
|
|
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
|
<IncludeSymbols>True</IncludeSymbols>
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<!-- These are the common properties used when generating the nupkg -->
|
|
<!-- https://docs.microsoft.com/en-us/nuget/schema/msbuild-targets -->
|
|
<Company>Microsoft</Company>
|
|
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
|
|
<!-- <PackageVersion>Defined in GlobalStaticVersion.props</PackageVersion> -->
|
|
<Authors>Microsoft</Authors>
|
|
<Owners>Microsoft,AppInsightsSdk</Owners>
|
|
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageProjectUrl>https://go.microsoft.com/fwlink/?LinkId=392727</PackageProjectUrl>
|
|
<PackageIconUrl>http://appanacdn.blob.core.windows.net/cdn/icons/aic.png</PackageIconUrl>
|
|
<RepositoryUrl>https://github.com/Microsoft/ApplicationInsights-dotnet</RepositoryUrl>
|
|
<RepositoryType>Git</RepositoryType>
|
|
<PackageType>Dependency</PackageType>
|
|
<ContentTargetFolders>content</ContentTargetFolders>
|
|
<PackageReleaseNotes>For the release notes please follow http://go.microsoft.com/fwlink/?LinkId=535037</PackageReleaseNotes>
|
|
<!-- <PackageOutputPath>Defined in Directory.Build.props</PackageOutputPath> -->
|
|
<PackageTags>Analytics Azure ApplicationInsights Telemetry Monitoring SDK</PackageTags>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<!-- These Properties are unique to the project and must be set in the csproj -->
|
|
<PackageId>UNDEFINED</PackageId>
|
|
<Title>UNDEFINED</Title>
|
|
<Description>UNDEFINED</Description>
|
|
<!-- <PackageTags>$(PackageTags) newTag1 newTag2</PackageTags> -->
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<!-- Disable auto generation of package attributes. This resolves the 'Duplicate attribute' error.
|
|
Common cause is a hidden AssemblyInfo.cs file in a project -->
|
|
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
|
|
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
|
|
<GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute>
|
|
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute>
|
|
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
|
|
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
|
|
</PropertyGroup>
|
|
</Project> |