-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Use centralized package versioning - Update packages to latest - Fix build warnings / errors from package updates - Move to net6 SDK in global.json and GitHub Actions - Move benchmarks/samples/test projects to net6.0 - Kill appveyor Builds - Determinstic Builds - Add support for builds on `main` branch Co-authored-by: Nick Craver <[email protected]>
- Loading branch information
1 parent
199994e
commit abd634a
Showing
15 changed files
with
108 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<Project> | ||
<!-- | ||
Note: this is *setting* the versions only, not including any actual packages. | ||
There's a <PackageVersion Include="..." /> in the place it's actually needed only | ||
(e.g. the .csproj or a Directory.Build.props), then this central spot updates all of | ||
those includes to the same version just before the package restore step runs. | ||
That means this central file defines all versions used, and serves to sync them all up. | ||
--> | ||
<ItemGroup> | ||
<PackageVersion Include="BenchmarkDotNet" Version="0.13.1" /> | ||
<PackageVersion Include="coverlet.collector" Version="3.1.0" /> | ||
<PackageVersion Include="Microsoft.Diagnostics.NETCore.Client" Version="0.2.61701" /> | ||
<PackageVersion Include="Microsoft.Diagnostics.Tracing.TraceEvent" Version="2.0.55" /> | ||
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" /> | ||
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0" /> | ||
<PackageVersion Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0" /> | ||
<PackageVersion Include="Microsoft.Extensions.Hosting.Abstractions" Version="6.0.0" /> | ||
<PackageVersion Include="Microsoft.Extensions.Options" Version="6.0.0" /> | ||
<PackageVersion Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2" /> | ||
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.0.0" /> | ||
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="1.1.1" /> | ||
<PackageVersion Include="Nerdbank.GitVersioning" Version="3.4.244" /> | ||
<PackageVersion Include="Pipelines.Sockets.Unofficial" Version="2.2.2" /> | ||
<PackageVersion Include="System.Buffers" Version="4.5.1" /> | ||
<PackageVersion Include="System.Collections.Immutable" Version="6.0.0" /> | ||
<PackageVersion Include="System.Text.Json" Version="6.0.1" /> | ||
<PackageVersion Include="xunit" Version="2.4.1" /> | ||
<PackageVersion Include="xunit.runner.visualstudio" Version="2.4.1" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"sdk": { | ||
"version": "3.1.100", | ||
"version": "6.0.101", | ||
"rollForward": "latestMajor", | ||
"allowPrerelease": false | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions
12
tests/StackExchange.Metrics.Tests/StackExchange.Metrics.Tests.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp3.1</TargetFramework> | ||
<TargetFramework>net6.0</TargetFramework> | ||
|
||
<IsPackable>false</IsPackable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" /> | ||
<PackageReference Include="xunit" Version="2.4.0" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" /> | ||
<PackageReference Include="coverlet.collector" Version="1.0.1" /> | ||
<PackageReference Include="Microsoft.Extensions.DependencyInjection" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" /> | ||
<PackageReference Include="xunit" /> | ||
<PackageReference Include="xunit.runner.visualstudio" /> | ||
<PackageReference Include="coverlet.collector" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\StackExchange.Metrics\StackExchange.Metrics.csproj" /> | ||
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="3.1.1" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters