Skip to content

Commit

Permalink
Merge pull request #1043 from frederikja163/frameworkSpecification
Browse files Browse the repository at this point in the history
Add framework specification to paket files.
  • Loading branch information
varon committed Apr 13, 2020
2 parents e26faa0 + 633f80f commit 7389d4b
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 12 deletions.
1 change: 1 addition & 0 deletions OpenTK.sln
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "build", "build", "{471E0D18
build.cmd = build.cmd
build.fsx = build.fsx
build.sh = build.sh
RELEASE_NOTES.md = RELEASE_NOTES.md
EndProjectSection
EndProject
Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Generator", "src\Generator\Generator.fsproj", "{17868C80-6FD6-4A5A-908A-FA4FDCFB416E}"
Expand Down
8 changes: 6 additions & 2 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
### 4.0.0-pre7
* Add framework specification to paket files. (Thanks @frederikja163)

### 4.0.0-pre6
* Fixed GameWindow update frequency (Thanks @MerickOWA)
* Throw an InvalidOperationException if bindings are uninitialized. (Thanks @PJB)
* Fixed GameWindow update frequency (Thanks @MerickOWA)
* Throw an InvalidOperationException if bindings are uninitialized. (Thanks @PJB)


### 4.0.0-pre5
* Added Profile Any (Thanks @arakis)
Expand Down
5 changes: 3 additions & 2 deletions src/OpenToolkit.Graphics/paket
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
type file
id OpenToolkit.Graphics
dependencies
OpenToolkit.Core ~> #VERSION#
OpenToolkit.Mathematics ~> #VERSION#
framework: netstandard2.0
OpenToolkit.Core ~> #VERSION#
OpenToolkit.Mathematics ~> #VERSION#
files
bin\Release\netstandard2.0\OpenToolkit.Graphics.dll ==> lib\netstandard2.0
bin\Release\netstandard2.0\OpenToolkit.Graphics.xml ==> lib\netstandard2.0
Expand Down
5 changes: 3 additions & 2 deletions src/OpenToolkit.Windowing.Common/paket
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
type file
id OpenToolkit.Windowing.Common
dependencies
OpenToolkit.Core ~> #VERSION#
OpenToolkit.Mathematics ~> #VERSION#
framework: netstandard2.0
OpenToolkit.Core ~> #VERSION#
OpenToolkit.Mathematics ~> #VERSION#
files
bin\Release\netstandard2.0\OpenToolkit.Windowing.Common.dll ==> lib\netstandard2.0
bin\Release\netstandard2.0\OpenToolkit.Windowing.Common.xml ==> lib\netstandard2.0
Expand Down
14 changes: 10 additions & 4 deletions src/OpenToolkit.Windowing.Desktop/paket
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
type file
id OpenToolkit.Windowing.Desktop
dependencies
OpenToolkit.Core ~> #VERSION#
OpenToolkit.Mathematics ~> #VERSION#
OpenToolkit.Windowing.Common ~> #VERSION#
OpenToolkit.Windowing.GraphicsLibraryFramework ~> #VERSION#
framework: netcoreapp3.0
OpenToolkit.Core ~> #VERSION#
OpenToolkit.Mathematics ~> #VERSION#
OpenToolkit.Windowing.Common ~> #VERSION#
OpenToolkit.Windowing.GraphicsLibraryFramework ~> #VERSION#
framework: net472
OpenToolkit.Core ~> #VERSION#
OpenToolkit.Mathematics ~> #VERSION#
OpenToolkit.Windowing.Common ~> #VERSION#
OpenToolkit.Windowing.GraphicsLibraryFramework ~> #VERSION#
files
bin\Release\netcoreapp3.0\OpenToolkit.Windowing.Desktop.dll ==> lib\netcoreapp3.0
bin\Release\netcoreapp3.0\OpenToolkit.Windowing.Desktop.xml ==> lib\netcoreapp3.0
Expand Down
8 changes: 6 additions & 2 deletions src/OpenToolkit.Windowing.GraphicsLibraryFramework/paket
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
type file
id OpenToolkit.Windowing.GraphicsLibraryFramework
dependencies
OpenToolkit.Core ~> #VERSION#
opentoolkit.redist.glfw ~> 3.3.0-pre20190419183326
framework: netcoreapp3.0
OpenToolkit.Core ~> #VERSION#
opentoolkit.redist.glfw ~> 3.3.0-pre20190419183326
framework: net472
OpenToolkit.Core ~> #VERSION#
opentoolkit.redist.glfw ~> 3.3.0-pre20190419183326
files
bin\Release\netcoreapp3.0\OpenToolkit.Windowing.GraphicsLibraryFramework.dll ==> lib\netcoreapp3.0
bin\Release\netcoreapp3.0\OpenToolkit.Windowing.GraphicsLibraryFramework.xml ==> lib\netcoreapp3.0
Expand Down

0 comments on commit 7389d4b

Please sign in to comment.