Skip to content

Commit 77a0a4e

Browse files
nathanyikskuh
authored andcommitted
Net 7.0
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] ```
1 parent 164d789 commit 77a0a4e

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
with:
2323
version: master
2424

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

3030
- name: Build the generator
3131
run: dotnet build

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ EXTENSIONS?=
33

44
NOTEST?=n
55

6-
EXE=bin/Debug/net6.0/generator
6+
EXE=bin/Debug/net7.0/generator
77
GENERATOR?=$(EXE)
88

99

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ This function will load all OpenGL entry points with the help of `get_proc_addre
1616

1717
**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.
1818

19+
Cloning submodules is required, so use `--recursive`:
20+
21+
```bash
22+
git clone --recursive https://github.com/MasterQ32/zig-opengl.git
23+
```
24+
1925
## Example
2026

2127
This example uses [ZWL](https://github.com/Aransentin/ZWL/) by @Aransentin.

generator.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-
<TargetFramework>net6.0</TargetFramework>
5+
<TargetFramework>net7.0</TargetFramework>
66
</PropertyGroup>
77

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

0 commit comments

Comments
 (0)