Temporarily disabled GLWidget from builds

This commit is contained in:
varon 2016-07-18 01:59:29 +02:00
parent cdd5f75e0c
commit ec8104fbda

View file

@ -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})
) )