Skip to content

Commit

Permalink
Update to 7.0.4xx nightlies, enable graph build, and signatures (#1110)
Browse files Browse the repository at this point in the history
  • Loading branch information
baronfel authored Aug 18, 2023
1 parent 72103b5 commit f5d82b2
Show file tree
Hide file tree
Showing 81 changed files with 4,203 additions and 19 deletions.
7 changes: 6 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,10 @@
"https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/github-workflow.json": ".github/workflows/*"
},
"editor.inlayHints.enabled": "offUnlessPressed",
"FSharp.enableAdaptiveLspServer": true
"FSharp.enableAdaptiveLspServer": true,
"files.associations": {
"*.*proj": "msbuild",
"*.props": "msbuild",
"*.targets": "msbuild"
}
}
3 changes: 2 additions & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"sdk": {
"version": "7.0.305"
"version": "7.0.400",
"allowPrerelease": true
}
}
2 changes: 1 addition & 1 deletion paket.lock
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@ NUGET
System.Security.Principal.Windows (>= 5.0)
Microsoft.Win32.SystemEvents (7.0)
Mono.Posix.NETStandard (1.0)
MSBuild.StructuredLogger (2.1.820)
MSBuild.StructuredLogger (2.1.844)
Microsoft.Build.Framework (>= 17.5)
Microsoft.Build.Utilities.Core (>= 17.5)
Newtonsoft.Json (13.0.1)
Expand Down
5 changes: 4 additions & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,16 @@
<Import Project="..\Directory.Build.props" />

<PropertyGroup>
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!-- suppress false positive warning FS2003 about invalid version of AssemblyInformationalVersionAttribute -->
<NoWarn>$(NoWarn);FS2003</NoWarn>
<!-- We've got a prerelease dep on System.CommandLine, and NuGet doesn't like that. NuGet can be quiet in this instance. -->
<NoWarn>$(NoWarn);NU5104</NoWarn>
<!-- Yes we know 'times' is for test only, thanks FSC :) -->
<NoWarn>$(NoWarn);FS0075</NoWarn>
<!-- Implicit convertions for string should be fine https://github.com/fsharp/fslang-design/blob/main/FSharp-6.0/FS-1093-additional-conversions.md#motivation-for-op_implicit-type-directed-conversion -->
<NoWarn>$(NoWarn);FS3391</NoWarn>

<OtherFlags>$(OtherFlags) --test:GraphBasedChecking --test:DumpCheckingGraph</OtherFlags>
</PropertyGroup>
</Project>
Loading

0 comments on commit f5d82b2

Please sign in to comment.