generated from akkadotnet/build-system-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
46 lines (45 loc) · 2.22 KB
/
Directory.Build.props
File metadata and controls
46 lines (45 loc) · 2.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<Project>
<PropertyGroup>
<Copyright>Copyright © 2015-$([System.DateTime]::Now.Year) Petabridge</Copyright>
<Authors>Petabridge</Authors>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<VersionPrefix>1.0.0-beta2</VersionPrefix>
<PackageReleaseNotes>- [migrated TCP statistics to use an `ObservableGauge<long>`](https://github.com/petabridge/OpenTelemetry.Sockets/pull/14)</PackageReleaseNotes>
</PropertyGroup>
<PropertyGroup>
<!-- Visual Studio C# settings -->
<NetStandardLibVersion>netstandard2.0</NetStandardLibVersion>
<NetLibVersion>net8.0</NetLibVersion>
<NetCoreTestVersion>net9.0</NetCoreTestVersion>
</PropertyGroup>
<!-- GitHub SourceLink -->
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
</ItemGroup>
<!-- NuGet package properties -->
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)\petabridge_logo_square.png" Pack="true" PackagePath="\" />
<None Include="$(MSBuildThisFileDirectory)\README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<!-- NuGet .nupkg options -->
<PropertyGroup>
<PackageReleaseNotes>1.5.25 June 17 2024
* [Updated Akka.NET to 1.5.25](https://github.com/akkadotnet/akka.net/releases/tag/1.5.25)
</PackageReleaseNotes>
<PackageTags>otel, opentelemetry, tcp, sockets, tcp metrics, socket metrics</PackageTags>
<PackageProjectUrl>https://github.com/petabridge/OpenTelemetry.TcpSockets</PackageProjectUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageIcon>petabridge_logo_square.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<!-- Optional: Embed source files that are not tracked by the source control manager in the PDB -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!-- Optional: Build symbol package (.snupkg) to distribute the PDB containing Source Link -->
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
</Project>