Skip to content

Commit 1275e46

Browse files
authored
Upgraded packages to use .NET 5.0 (#249)
1 parent 8ef521f commit 1275e46

File tree

19 files changed

+36
-47
lines changed

19 files changed

+36
-47
lines changed

.github/workflows/build-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Setup .NET Core
1414
uses: actions/setup-dotnet@v1
1515
with:
16-
dotnet-version: 3.1.401
16+
dotnet-version: 5.0.201
1717
- name: Build Reason
1818
run: "echo ref: ${{github.ref}} event: ${{github.event_name}}"
1919
- name: Build Version

.github/workflows/build-osx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Setup .NET Core
1414
uses: actions/setup-dotnet@v1
1515
with:
16-
dotnet-version: 3.1.401
16+
dotnet-version: 5.0.201
1717
- name: Build Reason
1818
run: "echo ref: ${{github.ref}} event: ${{github.event_name}}"
1919
- name: Build Version

.github/workflows/build-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Setup .NET Core
1414
uses: actions/setup-dotnet@v1
1515
with:
16-
dotnet-version: 3.1.401
16+
dotnet-version: 5.0.201
1717
- name: Build Reason
1818
run: "echo ref: ${{github.ref}} event: ${{github.event_name}}"
1919
- name: Build Version

.vscode/launch.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"type": "coreclr",
77
"request": "launch",
88
"preLaunchTask": "Build",
9-
"program": "${workspaceRoot}/samples/Exceptionless.SampleConsole/bin/Debug/netcoreapp3.1/Exceptionless.SampleConsole.dll",
9+
"program": "${workspaceRoot}/samples/Exceptionless.SampleConsole/bin/Debug/net5.0/Exceptionless.SampleConsole.dll",
1010
"args": [],
1111
"cwd": "${workspaceRoot}/samples/Exceptionless.SampleConsole",
1212
"stopAtEntry": false,
@@ -20,7 +20,7 @@
2020
"type": "coreclr",
2121
"request": "launch",
2222
"preLaunchTask": "Build",
23-
"program": "${workspaceRoot}/samples/Exceptionless.SampleAspNetCore/bin/Debug/netcoreapp3.1/Exceptionless.SampleAspNetCore.dll",
23+
"program": "${workspaceRoot}/samples/Exceptionless.SampleAspNetCore/bin/Debug/net5.0/Exceptionless.SampleAspNetCore.dll",
2424
"args": [],
2525
"cwd": "${workspaceRoot}/samples/Exceptionless.SampleAspNetCore",
2626
"stopAtEntry": false,

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ editor design surfaces are available.
3030

3131
1. You will need to install:
3232
1. [Visual Studio 2019](https://visualstudio.microsoft.com/vs/community/)
33-
2. [.NET Core 3.1 SDK with VS Tooling](https://dotnet.microsoft.com/download)
33+
2. [.NET Core 5.x SDK with VS Tooling](https://dotnet.microsoft.com/download)
3434
3. [.NET Framework 4.6.2 Developer Pack](https://dotnet.microsoft.com/download/dotnet-framework/net462)
3535
2. Open the `Exceptionless.Net.sln` Visual Studio solution file.
3636
3. Select `Exceptionless.SampleConsole` as the startup project.
@@ -44,7 +44,7 @@ build windows specific packages.
4444

4545
1. You will need to install:
4646
1. [Visual Studio Code](https://code.visualstudio.com)
47-
2. [.NET Core 3.1 SDK with VS Tooling](https://dotnet.microsoft.com/download)
47+
2. [.NET Core 5.x SDK with VS Tooling](https://dotnet.microsoft.com/download)
4848
2. Open the cloned Exceptionless.Net folder.
4949
3. Run the `Exceptionless.SampleConsole` project by pressing `F5` to start the console.
5050

global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "3.1.100",
3+
"version": "5.0.100",
44
"rollForward": "latestMinor"
55
}
6-
}
6+
}

samples/Exceptionless.SampleAspNetCore/Exceptionless.SampleAspNetCore.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.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.1</TargetFramework>
4+
<TargetFramework>net5.0</TargetFramework>
55
</PropertyGroup>
66

77
<ItemGroup>

samples/Exceptionless.SampleConsole/Exceptionless.SampleConsole.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-
<TargetFramework>netcoreapp3.1</TargetFramework>
4+
<TargetFramework>net5.0</TargetFramework>
55
<AssemblyName>Exceptionless.SampleConsole</AssemblyName>
66
<OutputType>Exe</OutputType>
77
<DefineConstants>$(DefineConstants);NETSTANDARD;NETSTANDARD2_0</DefineConstants>

samples/Exceptionless.SampleHosting/Exceptionless.SampleHosting.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.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.1</TargetFramework>
4+
<TargetFramework>net5.0</TargetFramework>
55
</PropertyGroup>
66

77
<ItemGroup>

samples/Exceptionless.SampleLambda/Exceptionless.SampleLambda.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.1</TargetFramework>
3+
<TargetFramework>net5.0</TargetFramework>
44
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
55
<LangVersion>latest</LangVersion>
66
<AWSProjectType>Lambda</AWSProjectType>

0 commit comments

Comments
 (0)