Skip to content

Commit

Permalink
Update to .NET 7.0 with thinBasic 1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
jiowcl committed Jan 31, 2024
1 parent 7b7f0bc commit 3d245a2
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
## Environment

- Windows 7 above (recommend)
- ThinBasic 1.11.70
- .NET 7
- ThinBasic 1.12
- .NET 8

## NuGet Installation

Expand Down Expand Up @@ -39,7 +39,7 @@ Thinbasic.Release(0);

## License

Copyright (c) 2017-2023 Ji-Feng Tsai.
Copyright (c) 2017-2024 Ji-Feng Tsai.
ThinBasic Copyright (c) Eros Olmi [ThinBASIC Interpreter](https://github.com/ThinBASIC).
Code released under the MIT license.

Expand Down
2 changes: 1 addition & 1 deletion ThinBasic.Example/Program.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// ThinBasic.NET - ThinBasic Programming Language for .NET
// Copyright (c) 2019 Jiowcl. All rights reserved.
// Copyright (c) 2019-2024 Jiowcl. All rights reserved.

using System;
using System.IO;
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>net7.0-windows;net6.0-windows</TargetFrameworks>
<TargetFrameworks>net8.0-windows;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/Core/Enums.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// ThinBasic.NET - ThinBasic Programming Language for .NET
// Copyright (c) 2019 Jiowcl. All rights reserved.
// Copyright (c) 2019-2024 Jiowcl. All rights reserved.

namespace ThinBasic.NET.Core
{
Expand Down
2 changes: 1 addition & 1 deletion ThinBasic.NET/Core/Thinbasic.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// ThinBasic.NET - ThinBasic Programming Language for .NET
// Copyright (c) 2019 Jiowcl. All rights reserved.
// Copyright (c) 2019-2024 Jiowcl. All rights reserved.

using System;
using System.Runtime.InteropServices;
Expand Down
Binary file modified ThinBasic.NET/Lib/thinBasic_UI.dll
Binary file not shown.
Binary file modified ThinBasic.NET/Lib/thinCore.dll
Binary file not shown.
6 changes: 3 additions & 3 deletions ThinBasic.NET/ThinBasic.NET.csproj
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net7.0-windows;net6.0-windows</TargetFrameworks>
<TargetFrameworks>net8.0-windows;net7.0-windows;net6.0-windows</TargetFrameworks>
<Company>Inwazy Technology</Company>
<Copyright>Ji-Feng Tsai</Copyright>
<Description>.Net Wrapper for ThinBasic Programming Language.</Description>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<RepositoryUrl>https://github.com/jiowcl/ThinBasic.NET</RepositoryUrl>
<PackageReleaseNotes>1.0.5</PackageReleaseNotes>
<PackageReleaseNotes>1.0.6</PackageReleaseNotes>
<Authors>Jiowcl</Authors>
<PackageProjectUrl>https://github.com/jiowcl/ThinBasic.NET</PackageProjectUrl>
<Platforms>AnyCPU;x86</Platforms>
<Version>1.0.5</Version>
<Version>1.0.6</Version>
<PackageIcon></PackageIcon>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
Expand Down
2 changes: 1 addition & 1 deletion ThinBasic.NETTests/Core/ThinbasicTests.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// ThinBasic.NET - ThinBasic Programming Language for .NET
// Copyright (c) 2019 Jiowcl. All rights reserved.
// Copyright (c) 2019-2024 Jiowcl. All rights reserved.

using Microsoft.VisualStudio.TestTools.UnitTesting;
using System.IO;
Expand Down
8 changes: 4 additions & 4 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>net7.0-windows;net6.0-windows</TargetFrameworks>
<TargetFrameworks>net8.0-windows;net7.0-windows;net6.0-windows</TargetFrameworks>

<IsPackable>false</IsPackable>

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

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
<PackageReference Include="MSTest.TestAdapter" Version="3.1.1" />
<PackageReference Include="MSTest.TestFramework" Version="3.1.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="MSTest.TestAdapter" Version="3.2.0" />
<PackageReference Include="MSTest.TestFramework" Version="3.2.0" />
<PackageReference Include="coverlet.collector" Version="6.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down

0 comments on commit 3d245a2

Please sign in to comment.