Skip to content

Commit

Permalink
Include XML documentation in package
Browse files Browse the repository at this point in the history
  • Loading branch information
nblumhardt committed Aug 28, 2023
1 parent ce6989a commit 343f98c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
Binary file added asset/seq-apps-runtime.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/Seq.Apps/Apps/Event.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ public Event(string id, uint eventType, DateTime timestamp, TData data)
public string Id { get; }


/// <summary>
/// The event timestamp.
/// </summary>
[Obsolete("Use `Timestamp` instead."), EditorBrowsable(EditorBrowsableState.Never)]
public DateTime TimestampUtc => Timestamp;
}
Expand Down
10 changes: 7 additions & 3 deletions src/Seq.Apps/Seq.Apps.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,21 @@
<TargetFramework>netstandard2.0</TargetFramework>
<VersionPrefix>2023.4.0</VersionPrefix>
<RootNamespace>Seq</RootNamespace>
<GenerateXmlDocumentation>true</GenerateXmlDocumentation>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Description>C# API for Seq creating hosted apps.</Description>
<Authors>Datalust Pty Ltd</Authors>
<PackageTags>seq</PackageTags>
<PackageIconUrl>https://getseq.net/images/seq-nuget.png</PackageIconUrl>
<PackageIcon>seq-apps-runtime.png</PackageIcon>
<PackageProjectUrl>https://github.com/datalust/seq-apps-runtime</PackageProjectUrl>
<PackageLicenseUrl>https://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Serilog" Version="3.0.1" />
</ItemGroup>

<ItemGroup>
<None Include="../../asset/seq-apps-runtime.png" Pack="true" Visible="false" PackagePath="" />
</ItemGroup>
</Project>

0 comments on commit 343f98c

Please sign in to comment.