Skip to content

Commit

Permalink
Net 7.0
Browse files Browse the repository at this point in the history
To resolve:

```
Framework: 'Microsoft.NETCore.App', version '6.0.0' (arm64)
.NET location: /opt/homebrew/Cellar/dotnet/7.0.100/libexec

The following frameworks were found:
  7.0.0 at [/opt/homebrew/Cellar/dotnet/7.0.100/libexec/shared/Microsoft.NETCore.App]
```
  • Loading branch information
nathany authored and ikskuh committed Sep 29, 2023
1 parent 164d789 commit 77a0a4e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
with:
version: master

- name: Install dotnet 6.0
- name: Install dotnet 7.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x' # SDK Version to use; x will use the latest version of the 3.1 channel
dotnet-version: '7.0.x' # SDK Version to use; x will use the latest version of the 3.1 channel

- name: Build the generator
run: dotnet build
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ EXTENSIONS?=

NOTEST?=n

EXE=bin/Debug/net6.0/generator
EXE=bin/Debug/net7.0/generator
GENERATOR?=$(EXE)


Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ This function will load all OpenGL entry points with the help of `get_proc_addre

**NOTE:** Please do not reference `zig-opengl` as a submodule or a package. Generate a binding and copy the output of that into your repository and update the file on demand. The OpenGL Registry is just too huge to be used conveniently.

Cloning submodules is required, so use `--recursive`:

```bash
git clone --recursive https://github.com/MasterQ32/zig-opengl.git
```

## Example

This example uses [ZWL](https://github.com/Aransentin/ZWL/) by @Aransentin.
Expand Down
2 changes: 1 addition & 1 deletion generator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)'=='Release'">
Expand Down

0 comments on commit 77a0a4e

Please sign in to comment.