File tree Expand file tree Collapse file tree 7 files changed +12
-12
lines changed
FSharp.DependencyManager.Paket Expand file tree Collapse file tree 7 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -72,10 +72,10 @@ let mutable dotnetExePath = "dotnet"
7272
7373let buildDir = " bin"
7474let buildDirNet461 = buildDir @@ " net461"
75- let buildDirNetCore = buildDir @@ " netcoreapp2 .1"
75+ let buildDirNetCore = buildDir @@ " netcoreapp3 .1"
7676let buildDirBootstrapper = " bin_bootstrapper"
7777let buildDirBootstrapperNet461 = buildDirBootstrapper @@ " net461"
78- let buildDirBootstrapperNetCore = buildDirBootstrapper @@ " netcoreapp2 .1"
78+ let buildDirBootstrapperNetCore = buildDirBootstrapper @@ " netcoreapp3 .1"
7979let tempDir = " temp"
8080let buildMergedDir = buildDir @@ " merged"
8181let paketFile = buildMergedDir @@ " paket.exe"
@@ -222,7 +222,7 @@ Target "Publish" (fun _ ->
222222 DotNetCli.Publish ( fun c ->
223223 { c with
224224 Project = " src/Paket"
225- Framework = " netcoreapp2 .1"
225+ Framework = " netcoreapp3 .1"
226226 Output = FullName ( currentDirectory </> buildDirNetCore)
227227 ToolPath = dotnetExePath
228228 })
@@ -237,7 +237,7 @@ Target "Publish" (fun _ ->
237237 DotNetCli.Publish ( fun c ->
238238 { c with
239239 Project = " src/Paket.Bootstrapper"
240- Framework = " netcoreapp2 .1"
240+ Framework = " netcoreapp3 .1"
241241 Output = FullName ( currentDirectory </> buildDirBootstrapperNetCore)
242242 ToolPath = dotnetExePath
243243 })
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22
33 <PropertyGroup >
4- <TargetFramework >netstandard2.0 </TargetFramework >
4+ <TargetFramework >netstandard2.1 </TargetFramework >
55 </PropertyGroup >
66
77 <PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Debug|AnyCPU'" >
Original file line number Diff line number Diff line change 22<Project Sdk =" Microsoft.NET.Sdk" >
33 <PropertyGroup >
44 <OutputType >Exe</OutputType >
5- <TargetFramework >netcoreapp2 .1</TargetFramework >
5+ <TargetFramework >netcoreapp3 .1</TargetFramework >
66 </PropertyGroup >
77 <ItemGroup >
88 <Compile Include =" Program.fs" />
Original file line number Diff line number Diff line change 22<Project Sdk =" Microsoft.NET.Sdk" >
33 <PropertyGroup >
44 <OutputType >Exe</OutputType >
5- <TargetFrameworks >net461;netcoreapp2 .1</TargetFrameworks >
5+ <TargetFrameworks >net461;netcoreapp3 .1</TargetFrameworks >
66 <StartupObject >Paket.Bootstrapper.Program</StartupObject >
77 <AssemblyName >paket.bootstrapper</AssemblyName >
88 <ToolCommandName >paketbootstrapper</ToolCommandName >
1616
1717 <PropertyGroup Condition =" '$(PackAsTool)' == 'true'" >
1818 <TargetFrameworks ></TargetFrameworks >
19- <TargetFramework >netcoreapp2 .1</TargetFramework >
19+ <TargetFramework >netcoreapp3 .1</TargetFramework >
2020 </PropertyGroup >
2121
2222 <ItemGroup Condition =" '$(PackAsTool)' == 'true'" >
Original file line number Diff line number Diff line change @@ -780,7 +780,7 @@ module ObservableExtensions =
780780 member __.Subscribe observer =
781781 let rm = e.Subscribe observer in f(); rm }
782782
783- let sample milliseconds source =
783+ let sample ( milliseconds : int ) source =
784784 let relay ( observer : IObserver < 'T >) =
785785 let rec loop () = async {
786786 let! value = Async.AwaitObservable source
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" utf-8" ?>
22<Project Sdk =" Microsoft.NET.Sdk" >
33 <PropertyGroup >
4- <TargetFrameworks >net461;netstandard2.0 </TargetFrameworks >
4+ <TargetFrameworks >net461;netstandard2.1 </TargetFrameworks >
55 <AutoGenerateBindingRedirects Condition =" '$(TargetFramework)' == 'net461' " >true</AutoGenerateBindingRedirects >
66 <Version Condition =" '$(PAKET_PROJ_VERSION)' != ''" >$(PAKET_PROJ_VERSION)</Version >
77 <PackageVersion Condition =" '$(PAKET_PROJ_VERSION)' != ''" >$(PAKET_PROJ_VERSION)</PackageVersion >
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22 <PropertyGroup >
33 <OutputType >Exe</OutputType >
4- <TargetFrameworks >net461;netcoreapp2 .1</TargetFrameworks >
4+ <TargetFrameworks >net461;netcoreapp3 .1</TargetFrameworks >
55 <GenerateAssemblyInfo >false</GenerateAssemblyInfo >
66 <PackageId >Paket</PackageId >
77 <AssemblyName >paket</AssemblyName >
1414 <PropertyGroup Condition =" '$(PackAsTool)' == 'true' " >
1515 <!-- .net tools support netcoreapp only -->
1616 <TargetFrameworks ></TargetFrameworks >
17- <TargetFramework >netcoreapp2 .1</TargetFramework >
17+ <TargetFramework >netcoreapp3 .1</TargetFramework >
1818 </PropertyGroup >
1919 <ItemGroup >
2020 <Compile Include =" AssemblyInfo.fs" />
You can’t perform that action at this time.
0 commit comments