mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-08-04 09:51:28 +00:00
Temporarily disabled GLWidget from builds
This commit is contained in:
parent
cdd5f75e0c
commit
ec8104fbda
|
@ -135,6 +135,7 @@ Target "Build" (fun _ ->
|
||||||
-- "**/OpenTK.iOS.csproj"
|
-- "**/OpenTK.iOS.csproj"
|
||||||
|
|
||||||
!! "src/**/*.??proj"
|
!! "src/**/*.??proj"
|
||||||
|
-- "**/OpenTK.GLWidget.csproj"
|
||||||
|> xamarinFilter
|
|> xamarinFilter
|
||||||
|> MSBuildRelease "" "Rebuild"
|
|> MSBuildRelease "" "Rebuild"
|
||||||
|> ignore
|
|> ignore
|
||||||
|
@ -156,7 +157,7 @@ Target "RunTests" (fun _ ->
|
||||||
// Build a NuGet package
|
// Build a NuGet package
|
||||||
|
|
||||||
Target "NuGet" (fun _ ->
|
Target "NuGet" (fun _ ->
|
||||||
let excludes =
|
let xamExcludes =
|
||||||
if isXamarinPlatform then
|
if isXamarinPlatform then
|
||||||
[]
|
[]
|
||||||
else
|
else
|
||||||
|
@ -167,7 +168,7 @@ Target "NuGet" (fun _ ->
|
||||||
Paket.Pack(fun p ->
|
Paket.Pack(fun p ->
|
||||||
{ p with
|
{ p with
|
||||||
OutputPath = "bin"
|
OutputPath = "bin"
|
||||||
ExcludedTemplates = excludes
|
ExcludedTemplates = "OpenTK.GLWidget" :: xamExcludes
|
||||||
Version = release.NugetVersion
|
Version = release.NugetVersion
|
||||||
ReleaseNotes = toLines release.Notes})
|
ReleaseNotes = toLines release.Notes})
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue