@@ -425,7 +425,7 @@ docker run --rm -v $PWD:$PWD -w $PWD linuturk/mono-choco $@
425425 altToolPath
426426
427427//TODO:: see if we need to update the runtimes to newer versions of OSs
428- let runtimes = [ " win7 -x86" ; " win7 -x64" ; " osx.10.11 -x64" ; " linux-x64" ]
428+ let runtimes = [ " win -x86" ; " win -x64" ; " osx-x64" ; " linux-x64" ]
429429
430430/// <summary>
431431/// Publishes the build artifacts for the given runtime
@@ -809,7 +809,10 @@ runtimes
809809 { c with
810810 Runtime = Some runtime.Value
811811 Configuration = DotNet.Release
812- OutputPath = Some outDir }
812+ OutputPath = Some outDir
813+ Framework = Some " net6.0"
814+ // DisableInternalBinLog: https://github.com/fsprojects/FAKE/issues/2722
815+ MSBuildParams = { MSBuild.CliArguments.Create() with DisableInternalBinLog = true }}
813816 |> dotnetSimple)
814817 proj
815818
@@ -876,7 +879,9 @@ Target.create "DotNetCreateNuGetPackage" (fun _ ->
876879 { c.MSBuildParams with
877880 Properties =
878881 [ ( " Version" , nugetVersion)
879- ( " PackageReleaseNotes" , release.Notes |> String.toLines) ] } }
882+ ( " PackageReleaseNotes" , release.Notes |> String.toLines) ]
883+ // DisableInternalBinLog: https://github.com/fsprojects/FAKE/issues/2722
884+ DisableInternalBinLog = true } }
880885 |> dotnetSimple)
881886 " Fake.sln"
882887
@@ -916,7 +921,7 @@ Target.create "DotNetCreateChocolateyPackage" (fun _ ->
916921 InstallerType = Choco.ChocolateyInstallerType.SelfContained
917922 Version = chocoVersion
918923 Files =
919- [ System.IO.Path.GetFullPath( nugetDncDir </> @" Fake.netcore\win7 -x86" ) + @" \**" , Some " bin" , None
924+ [ System.IO.Path.GetFullPath( nugetDncDir </> @" Fake.netcore\win -x86" ) + @" \**" , Some " bin" , None
920925 ( System.IO.Path.GetFullPath @" src\VERIFICATION.txt" ), Some " VERIFICATION.txt" , None
921926 ( System.IO.Path.GetFullPath @" License.txt" ), Some " LICENSE.txt" , None ]
922927 OutputDir = chocoReleaseDir }
0 commit comments