File tree Expand file tree Collapse file tree 5 files changed +11
-6
lines changed
Expand file tree Collapse file tree 5 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 4444 <SystemSecurityClaimsPackageVersion >4.3.0</SystemSecurityClaimsPackageVersion >
4545 <SystemSecurityCryptographyAlgorithmsPackageVersion >4.3.0</SystemSecurityCryptographyAlgorithmsPackageVersion >
4646 <SystemSecurityPrincipalPackageVersion >4.3.0</SystemSecurityPrincipalPackageVersion >
47- <SystemDataSqlClientPackageVersion >4.3.0</SystemDataSqlClientPackageVersion >
4847 <SystemThreadingTasksParallelPackageVersion >4.3.0</SystemThreadingTasksParallelPackageVersion >
4948 <SystemThreadingThreadPackageVersion >4.3.0</SystemThreadingThreadPackageVersion >
5049 <SystemThreadingThreadPoolPackageVersion >4.3.0</SystemThreadingThreadPoolPackageVersion >
Original file line number Diff line number Diff line change 640640 <PackageReference Include =" System.Reflection.Metadata" Version =" 1.6.0" />
641641 </ItemGroup >
642642 <ItemGroup Condition =" '$(TargetFramework)' == 'netstandard2.0'" >
643- <PackageReference Include =" System.Data.SqlClient" Version =" 4.3.0" />
644643 <PackageReference Include =" System.Diagnostics.Process" Version =" 4.1.0" />
645644 <PackageReference Include =" System.Diagnostics.TraceSource" Version =" 4.0.0" />
646645 <PackageReference Include =" System.Reflection.Emit" Version =" 4.3.0" />
Original file line number Diff line number Diff line change 11#### 27.0.1
2- * Integrate visualfsharp master from 5a5ca976ec296d02551e79c3eb8e8db809e4304d to b0292b8a3138f02e4df7019c5955e86d10d90681
2+ * Integrate visualfsharp master from 5a5ca976ec296d02551e79c3eb8e8db809e4304d to 2c8497bb097d5c5d3ef12f355594873838a48494
33 * Notable improvements include:
44 * Anonymous Record support for expressions
55 * Union Case Naming fixes
6+ * Trimming of the nuget package dependencies from 26.0.1
67
78#### 26.0.1
89 * Integrate visualfsharp master to 99e307f3a3ef2109ba6542ffc58affe76fc0e2a0
Original file line number Diff line number Diff line change @@ -21,7 +21,14 @@ let isMono = false
2121#endif
2222
2323
24- let dotnetExePath = DotNetCli.InstallDotNetSDK " 2.1.403"
24+ let dotnetExePath =
25+ // Build.cmd normally downloads a dotnet cli to: <repo-root>\artifacts\toolset\dotnet
26+ // check if there is one there to avoid downloading an additional one here
27+ let pathToCli = Path.Combine(__ SOURCE_ DIRECTORY__, @" ..\artifacts\toolset\dotnet\dotnet.exe" )
28+ if File.Exists( pathToCli) then
29+ pathToCli
30+ else
31+ DotNetCli.InstallDotNetSDK " 2.1.403"
2532
2633let runDotnet workingDir args =
2734 let result =
Original file line number Diff line number Diff line change @@ -1854,8 +1854,7 @@ let DefaultReferencesForScriptsAndOutOfProjectSources(assumeDotNetFramework) =
18541854 yield Path.Combine( Path.GetDirectoryName( typeof< System.Object>. Assembly.Location), " mscorlib.dll" ) // mscorlib
18551855 yield typeof< System.Console>. Assembly.Location // System.Console
18561856 yield typeof< System.Collections.BitArray>. Assembly.Location // System.Collections
1857- yield typeof< System.Data.SqlClient.SqlCommand>. Assembly.Location // System.Data.SqlClient
1858- yield typeof< System.ComponentModel.PropertyChangedEventArgs>. Assembly.Location // System.ObjectModel
1857+ yield typeof< System.ComponentModel.PropertyChangedEventArgs>. Assembly.Location // System.ObjectModel
18591858 yield typeof< System.IO.File>. Assembly.Location // System.IO.FileSystem
18601859 yield typeof< System.IO.TextWriter>. Assembly.Location // System.IO
18611860 yield typeof< System.Linq.Enumerable>. Assembly.Location // System.Linq
You can’t perform that action at this time.
0 commit comments