Skip to content

Commit

Permalink
Add a .NET7 support
Browse files Browse the repository at this point in the history
  • Loading branch information
jiowcl committed Nov 9, 2022
1 parent 395b71b commit 8c6104c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

- Windows 7 above (recommend)
- ThinBasic 1.11.70
- .NET 6
- .NET 7

## NuGet Installation

Expand Down
2 changes: 1 addition & 1 deletion ThinBasic.Example/ThinBasic.Example.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net6.0-windows;net5.0-windows</TargetFrameworks>
<TargetFrameworks>net7.0-windows;net6.0-windows</TargetFrameworks>
<StartupObject>ThinBasic.Example.Program</StartupObject>
<Authors>Jiowcl</Authors>
<Company>Inwazy Technology</Company>
Expand Down
2 changes: 1 addition & 1 deletion ThinBasic.NET/ThinBasic.NET.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0-windows;net5.0-windows</TargetFrameworks>
<TargetFrameworks>net7.0-windows;net6.0-windows</TargetFrameworks>
<Company>Inwazy Technology</Company>
<Copyright>Ji-Feng Tsai</Copyright>
<Description>.Net Wrapper for ThinBasic Programming Language.</Description>
Expand Down
10 changes: 5 additions & 5 deletions ThinBasic.NETTests/ThinBasic.NETTests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0-windows;net5.0-windows</TargetFrameworks>
<TargetFrameworks>net7.0-windows;net6.0-windows</TargetFrameworks>

<IsPackable>false</IsPackable>

Expand Down Expand Up @@ -33,10 +33,10 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
<PackageReference Include="MSTest.TestAdapter" Version="2.2.8" />
<PackageReference Include="MSTest.TestFramework" Version="2.2.8" />
<PackageReference Include="coverlet.collector" Version="3.1.0">
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.0" />
<PackageReference Include="MSTest.TestAdapter" Version="2.2.10" />
<PackageReference Include="MSTest.TestFramework" Version="2.2.10" />
<PackageReference Include="coverlet.collector" Version="3.2.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down

0 comments on commit 8c6104c

Please sign in to comment.