Skip to content
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.

Commit

Permalink
update deps & build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewKostousov committed Aug 3, 2020
1 parent 0124e18 commit bca545e
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 11 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## v1.0.20 - 2020.08.03
- Fixed division by zero issue in WeightedSnapshot (PR [#2](https://github.com/skbkontur/Metrics.NET/pull/2)).

## v1.0.15 - 2019.11.13
- Use [SourceLink](https://github.com/dotnet/sourcelink) to help ReSharper decompiler show actual code.

Expand Down
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-19554-01" PrivateAssets="All" />
<PackageReference Include="Nerdbank.GitVersioning" Version="3.0.26" PrivateAssets="All" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
<PackageReference Include="Nerdbank.GitVersioning" Version="3.2.31" PrivateAssets="All" />
</ItemGroup>

</Project>
3 changes: 1 addition & 2 deletions Directory.Build.targets
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,13 @@

<Target Name="SetNuSpecProperties" BeforeTargets="GenerateNuspec" DependsOnTargets="GetBuildVersion">
<PropertyGroup>
<PackageId>$(AssemblyName)</PackageId>
<Authors>iulian.margarintescu, The Recognos Metrics.NET Team</Authors>
<PackageDescription>The library provides support for capturing: Gauges, Counters, Meters, Histograms and Timers. This is Metrics.NET fork for SKB Kontur projects.</PackageDescription>
<PackageTags>metrics</PackageTags>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/skbkontur/Metrics.NET</RepositoryUrl>
<PackageProjectUrl>$(RepositoryUrl)</PackageProjectUrl>
<PackageReleaseNotes>$(RepositoryUrl)/releases/tag/v$(MajorMinorVersion)-release</PackageReleaseNotes>
<PackageReleaseNotes>$(RepositoryUrl)/releases</PackageReleaseNotes>
</PropertyGroup>
</Target>

Expand Down
8 changes: 4 additions & 4 deletions Metrics.Tests/Metrics.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

<PropertyGroup>
<IsPackable>false</IsPackable>
<TargetFrameworks>net48;netcoreapp2.2</TargetFrameworks>
<TargetFrameworks>net48;netcoreapp2.2;netcoreapp3.1</TargetFrameworks>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FluentAssertions" Version="5.9.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.4.0" />
<PackageReference Include="FluentAssertions" Version="5.10.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
<PackageReference Include="NUnit" Version="3.12.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.15.1" />
<PackageReference Include="NUnit3TestAdapter" Version="3.16.1" />
</ItemGroup>

<ItemGroup>
Expand Down
3 changes: 2 additions & 1 deletion Metrics/Metrics.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageId>SkbKontur.Metrics.Net</PackageId>
<AssemblyName>SkbKontur.Metrics.Net</AssemblyName>
<RootNamespace>Metrics</RootNamespace>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand All @@ -10,7 +11,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="System.Diagnostics.PerformanceCounter" Version="4.6.0" />
<PackageReference Include="System.Diagnostics.PerformanceCounter" Version="4.7.0" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk": {
"version": "2.2.402"
"version": "3.1.300"
}
}
1 change: 0 additions & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"$schema": "https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
"version": "1.0",
"assemblyVersion": {
"precision": "build"
Expand Down

0 comments on commit bca545e

Please sign in to comment.