Skip to content

Commit f4620a8

Browse files
committed
Merging latest from master.
2 parents 17b2de4 + 052ecc4 commit f4620a8

File tree

35 files changed

+458
-41
lines changed

35 files changed

+458
-41
lines changed

.github/workflows/dotnet-core-cov.yml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,20 @@ jobs:
2424
steps:
2525
- uses: actions/checkout@v2
2626

27-
# - name: Setup .NET Core 3.1
28-
# uses: actions/setup-dotnet@v1
29-
# with:
30-
# dotnet-version: 3.1.x
27+
- name: Setup .NET Core 2.1
28+
uses: actions/setup-dotnet@v1
29+
with:
30+
dotnet-version: 2.1.807
31+
32+
- name: Setup .NET Core 3.1
33+
uses: actions/setup-dotnet@v1
34+
with:
35+
dotnet-version: 3.1.301
36+
37+
- name: Setup .NET 5
38+
uses: actions/setup-dotnet@v1
39+
with:
40+
dotnet-version: '5.0.100-rc.2.20479.15'
3141

3242
- name: Install dependencies
3343
run: dotnet restore

.github/workflows/dotnet-core-linux.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,25 +12,25 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
version: [netcoreapp2.1,netcoreapp3.1]
15+
version: [netcoreapp2.1,netcoreapp3.1,net5.0]
1616

1717
steps:
1818
- uses: actions/checkout@v2
1919

2020
- name: Setup .NET Core 2.1
2121
uses: actions/setup-dotnet@v1
2222
with:
23-
dotnet-version: 2.1.811
23+
dotnet-version: 2.1.x
2424

2525
- name: Setup .NET Core 3.1
2626
uses: actions/setup-dotnet@v1
2727
with:
28-
dotnet-version: 3.1.403
28+
dotnet-version: 3.1.x
2929

30-
# For linux, we have to apply a workaround to enable both dotnet versions at same time
31-
- name: .net SxS
32-
run: |
33-
rsync -a ${DOTNET_ROOT/3.1.403/2.1.811}/* $DOTNET_ROOT/
30+
- name: Setup .NET 5
31+
uses: actions/setup-dotnet@v1
32+
with:
33+
dotnet-version: '5.0.100-rc.2.20479.15'
3434

3535
- name: Install dependencies
3636
run: dotnet restore

.github/workflows/dotnet-core-win.yml

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,25 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
version: [net452,net46,net461,netcoreapp2.1,netcoreapp3.1]
15+
version: [net452,net46,net461,netcoreapp2.1,netcoreapp3.1,net5.0]
1616

1717
steps:
1818
- uses: actions/checkout@v2
19-
20-
# - name: Setup .NET Core
21-
# uses: actions/setup-dotnet@v1
22-
# with:
23-
# dotnet-version: 3.1.x
19+
20+
- name: Setup .NET Core 2.1
21+
uses: actions/setup-dotnet@v1
22+
with:
23+
dotnet-version: 2.1.807
24+
25+
- name: Setup .NET Core 3.1
26+
uses: actions/setup-dotnet@v1
27+
with:
28+
dotnet-version: 3.1.301
29+
30+
- name: Setup .NET 5
31+
uses: actions/setup-dotnet@v1
32+
with:
33+
dotnet-version: '5.0.100-rc.2.20479.15'
2434

2535
- name: Install dependencies
2636
run: dotnet restore

.github/workflows/dotnet-core.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,21 @@ jobs:
2222
- uses: actions/checkout@v2
2323
with:
2424
fetch-depth: 0 # fetching all
25+
26+
- name: Setup .NET Core 2.1
27+
uses: actions/setup-dotnet@v1
28+
with:
29+
dotnet-version: 2.1.807
30+
31+
- name: Setup .NET Core 3.1
32+
uses: actions/setup-dotnet@v1
33+
with:
34+
dotnet-version: 3.1.301
35+
36+
- name: Setup .NET 5
37+
uses: actions/setup-dotnet@v1
38+
with:
39+
dotnet-version: '5.0.100-rc.2.20479.15'
2540

2641
- name: Install dependencies
2742
run: dotnet restore

OpenTelemetry.sln

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OpenTelemetry.Exporter.InMe
203203
EndProject
204204
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "extending-the-sdk", "docs\logs\extending-the-sdk\extending-the-sdk.csproj", "{13C10C9A-07E8-43EB-91F5-C2B116FBE0FC}"
205205
EndProject
206-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OpenTelemetry.Shared", "src\OpenTelemetry.Shared\OpenTelemetry.Shared.csproj", "{1E504265-1E32-4C61-8CC5-8FA373E16699}"
206+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OpenTelemetry.Shared", "src\OpenTelemetry.Shared\OpenTelemetry.Shared.csproj", "{1E504265-1E32-4C61-8CC5-8FA373E16699}"
207+
EndProject
208+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestApp.AspNetCore.5.0", "test\TestApp.AspNetCore.5.0\TestApp.AspNetCore.5.0.csproj", "{972396A8-E35B-499C-9BA1-765E9B8822E1}"
207209
EndProject
208210
Global
209211
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -403,6 +405,10 @@ Global
403405
{1E504265-1E32-4C61-8CC5-8FA373E16699}.Debug|Any CPU.Build.0 = Debug|Any CPU
404406
{1E504265-1E32-4C61-8CC5-8FA373E16699}.Release|Any CPU.ActiveCfg = Release|Any CPU
405407
{1E504265-1E32-4C61-8CC5-8FA373E16699}.Release|Any CPU.Build.0 = Release|Any CPU
408+
{972396A8-E35B-499C-9BA1-765E9B8822E1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
409+
{972396A8-E35B-499C-9BA1-765E9B8822E1}.Debug|Any CPU.Build.0 = Debug|Any CPU
410+
{972396A8-E35B-499C-9BA1-765E9B8822E1}.Release|Any CPU.ActiveCfg = Release|Any CPU
411+
{972396A8-E35B-499C-9BA1-765E9B8822E1}.Release|Any CPU.Build.0 = Release|Any CPU
406412
EndGlobalSection
407413
GlobalSection(SolutionProperties) = preSolution
408414
HideSolutionNode = FALSE
@@ -433,6 +439,7 @@ Global
433439
{DB942F5A-D571-4DEA-B1A7-B6BE0E24E6ED} = {E359BB2B-9AEC-497D-B321-7DF2450C3B8E}
434440
{B3F03725-23A0-4582-9526-F6A7E38F35CC} = {3862190B-E2C5-418E-AFDC-DB281FB5C705}
435441
{13C10C9A-07E8-43EB-91F5-C2B116FBE0FC} = {3862190B-E2C5-418E-AFDC-DB281FB5C705}
442+
{972396A8-E35B-499C-9BA1-765E9B8822E1} = {77C7929A-2EED-4AA6-8705-B5C443C8AA0F}
436443
EndGlobalSection
437444
GlobalSection(ExtensibilityGlobals) = postSolution
438445
SolutionGuid = {55639B5C-0770-4A22-AB56-859604650521}

build/Common.nonprod.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<MicrosoftExtensionsLoggingPkgVer>[5.0.0-rc.2.20475.5]</MicrosoftExtensionsLoggingPkgVer>
3434
<MicrosoftExtensionsLoggingAbstractionsPkgVer>[5.0.0-rc.2.20475.5]</MicrosoftExtensionsLoggingAbstractionsPkgVer>
3535
<MicrosoftExtensionsLoggingConsolePkgVer>[5.0.0-rc.2.20475.5]</MicrosoftExtensionsLoggingConsolePkgVer>
36-
<MicrosoftNETTestSdkPkgVer>[16.7.1,17.0)</MicrosoftNETTestSdkPkgVer>
36+
<MicrosoftNETTestSdkPkgVer>[16.9.0-preview-20201020-06]</MicrosoftNETTestSdkPkgVer>
3737
<MoqPkgVer>[4.14.5,5.0)</MoqPkgVer>
3838
<RabbitMQClientPkgVer>[6.1.0,7.0)</RabbitMQClientPkgVer>
3939
<StackExchangeRedisPkgVer>[2.1.58,3.0)</StackExchangeRedisPkgVer>

build/Common.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<MicrosoftAspNetCoreHttpFeaturesPkgVer>[2.1.1,5.0)</MicrosoftAspNetCoreHttpFeaturesPkgVer>
3030
<MicrosoftAspNetTelemetryCorrelationPkgVer>[1.0.7,2.0)</MicrosoftAspNetTelemetryCorrelationPkgVer>
3131
<MicrosoftCodeAnalysisAnalyzersPkgVer>[3.3.1]</MicrosoftCodeAnalysisAnalyzersPkgVer>
32-
<MicrosoftCodeCoveragePkgVer>[16.7.1]</MicrosoftCodeCoveragePkgVer>
32+
<MicrosoftCodeCoveragePkgVer>[16.9.0-preview-20201020-06]</MicrosoftCodeCoveragePkgVer>
3333
<MicrosoftExtensionsHostingAbstractionsPkgVer>[2.1.0,5.0)</MicrosoftExtensionsHostingAbstractionsPkgVer>
3434
<MicrosoftExtensionsLoggingPkgVer>[2.1.0,6.0)</MicrosoftExtensionsLoggingPkgVer>
3535
<MicrosoftExtensionsLoggingConfigurationPkgVer>[2.1.0,6.0)</MicrosoftExtensionsLoggingConfigurationPkgVer>

build/process-codecoverage.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Write-Host $env:USERPROFILE
33
foreach ($file in $files)
44
{
5-
$command = $env:USERPROFILE+ '\.nuget\packages\microsoft.codecoverage\16.7.1\build\netstandard1.0\CodeCoverage\CodeCoverage.exe analyze /output:' + $file.DirectoryName + '\' + $file.Name + '.xml '+ $file.FullName
5+
$command = $env:USERPROFILE+ '\.nuget\packages\microsoft.codecoverage\16.9.0-preview-20201020-06\build\netstandard1.0\CodeCoverage\CodeCoverage.exe analyze /output:' + $file.DirectoryName + '\' + $file.Name + '.xml '+ $file.FullName
66
Write-Host $command
77
Invoke-Expression $command
88
}

test/OpenTelemetry.Exporter.Jaeger.Tests/OpenTelemetry.Exporter.Jaeger.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<Description>Unit test project for Jaeger Exporter for OpenTelemetry</Description>
4-
<TargetFrameworks>netcoreapp2.1;netcoreapp3.1</TargetFrameworks>
4+
<TargetFrameworks>netcoreapp2.1;netcoreapp3.1;net5.0</TargetFrameworks>
55
<TargetFrameworks Condition="$(OS) == 'Windows_NT'">$(TargetFrameworks);net46</TargetFrameworks>
66

77
<IsPackable>false</IsPackable>

test/OpenTelemetry.Exporter.OpenTelemetryProtocol.Tests/OpenTelemetry.Exporter.OpenTelemetryProtocol.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netcoreapp2.1;netcoreapp3.1</TargetFrameworks>
4+
<TargetFrameworks>netcoreapp2.1;netcoreapp3.1;net5.0</TargetFrameworks>
55
<TargetFrameworks Condition="$(OS) == 'Windows_NT'">$(TargetFrameworks);net452;net46</TargetFrameworks>
66
<IsPackable>false</IsPackable>
77
</PropertyGroup>

0 commit comments

Comments
 (0)