@@ -425,7 +425,7 @@ docker run --rm -v $PWD:$PWD -w $PWD linuturk/mono-choco $@
425
425
altToolPath
426
426
427
427
//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" ]
429
429
430
430
/// <summary>
431
431
/// Publishes the build artifacts for the given runtime
@@ -809,7 +809,10 @@ runtimes
809
809
{ c with
810
810
Runtime = Some runtime.Value
811
811
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 }}
813
816
|> dotnetSimple)
814
817
proj
815
818
@@ -876,7 +879,9 @@ Target.create "DotNetCreateNuGetPackage" (fun _ ->
876
879
{ c.MSBuildParams with
877
880
Properties =
878
881
[ ( " 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 } }
880
885
|> dotnetSimple)
881
886
" Fake.sln"
882
887
@@ -916,7 +921,7 @@ Target.create "DotNetCreateChocolateyPackage" (fun _ ->
916
921
InstallerType = Choco.ChocolateyInstallerType.SelfContained
917
922
Version = chocoVersion
918
923
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
920
925
( System.IO.Path.GetFullPath @" src\VERIFICATION.txt" ), Some " VERIFICATION.txt" , None
921
926
( System.IO.Path.GetFullPath @" License.txt" ), Some " LICENSE.txt" , None ]
922
927
OutputDir = chocoReleaseDir }
0 commit comments