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 019c5af commit a24a2f7
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion OxygenBasic.Example/OxygenBasic.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>OxygenBasic.Example.Program</StartupObject>
<Authors>Jiowcl</Authors>
<Company>Inwazy Technology</Company>
Expand Down
2 changes: 1 addition & 1 deletion OxygenBasic.NET/OxygenBasic.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>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Copyright>Ji-Feng Tsai</Copyright>
<Description>.NET Wrapper for OxygenBasic Programming Language.</Description>
Expand Down
Binary file modified OxygenBasic.NET/oxygen.dll
Binary file not shown.
10 changes: 5 additions & 5 deletions OxygenBasic.NETTests/OxygenBasic.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 @@ -37,10 +37,10 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
<PackageReference Include="MSTest.TestAdapter" Version="2.2.9" />
<PackageReference Include="MSTest.TestFramework" Version="2.2.9" />
<PackageReference Include="coverlet.collector" Version="3.1.2">
<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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
## Environment

- Windows 7 above (recommend)
- OxygenBasic 0.40
- .NET 6
- OxygenBasic 0.50
- .NET 7

## NuGet Installation

Expand Down

0 comments on commit a24a2f7

Please sign in to comment.