Skip to content

Commit 5bd1bec

Browse files
Upgrade to .NET 8 (#2)
* Upgrade to dotnet 8 * Added global json file --------- Co-authored-by: Renato Golia <[email protected]>
1 parent f0e1ac1 commit 5bd1bec

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

global.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"sdk": {
3+
"version": "8.0.0",
4+
"rollForward": "latestMinor"
5+
}
6+
}

src/CloneDynamoDbTable/CloneDynamoDbTable.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFrameworks>net5.0;net6.0</TargetFrameworks>
5+
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
66
<AssemblyName>dotnet-clone-dynamodb-table</AssemblyName>
77
</PropertyGroup>
88

tests/Tests.CloneDynamoDbTable/Tests.CloneDynamoDbTable.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>net5.0;net6.0</TargetFrameworks>
4+
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
55

66
<IsPackable>false</IsPackable>
77
</PropertyGroup>

0 commit comments

Comments
 (0)