irontelemetry-dotnet/IronTelemetry.Client.csproj

39 lines
1.7 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageOutputPath>C:\Users\logik\Dropbox\Nugets</PackageOutputPath>
<!-- NuGet Package Properties -->
<PackageId>IronTelemetry.Client</PackageId>
<Version>1.1.0</Version>
<Authors>David H Friedel Jr</Authors>
<Company>MarketAlly</Company>
<Description>Client SDK for IronTelemetry - Error monitoring, crash reporting, and user journey tracking. Capture exceptions with stack traces, track multi-step user journeys with nested steps, log breadcrumbs for debugging context, and monitor application health with automatic correlation.</Description>
<PackageTags>telemetry;error-monitoring;crash-reporting;exceptions;diagnostics;apm;observability;user-journeys;breadcrumbs</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>nuget_it.png</PackageIcon>
<Copyright>Copyright (c) 2025 MarketAlly</Copyright>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Text.Json" Version="9.0.0" />
</ItemGroup>
<ItemGroup>
<None Include="nuget_it.png">
<Pack>true</Pack>
<PackagePath>\</PackagePath>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Visible>true</Visible>
</None>
<None Include="README.md" Pack="true" PackagePath="\" Condition="Exists('README.md')" />
</ItemGroup>
</Project>