Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Collins <pecolli@microsoft.com>2022-07-22 03:20:54 +0300
committerGitHub <noreply@github.com>2022-07-22 03:20:54 +0300
commitc8a15bfde97b35ba55dbb0d4fdddc2ddb66084db (patch)
treea212e9c8ce088e5cb15636f25f36d48ae7f4e27e /Directory.Build.props
parent461da7b8188ad1d217f82ceb4c23df049ca2f466 (diff)
[mdoc] Multitarget net471 and net6.0 (#639)
Adds `net6.0` as a target framework to mdoc. The artifacts from the `net6.0` build will be output to `bin/$(Configuration)-net6.0`. Mono.Cecil has been bumped from `0.10.0-beta5` to `0.10.0`. This update appears to have introduced a change in behavior in F# doc generation, and the expected output in `PatternMatchingExamples.xml` has been updated to reflect that. The mdoc NuGet package has been updated to include both `net471` and `net6.0` tools. This can be considered a breaking change, as the path of mdoc.exe has been changed to include a folder named after its target framework.
Diffstat (limited to 'Directory.Build.props')
-rw-r--r--Directory.Build.props5
1 files changed, 3 insertions, 2 deletions
diff --git a/Directory.Build.props b/Directory.Build.props
index 0558f4d4..80437e56 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -1,9 +1,10 @@
<Project>
<PropertyGroup>
<NuGetVersionFSharpCore>4.3.4</NuGetVersionFSharpCore>
- <NuGetVersionMonoCecil>0.10.0-beta5</NuGetVersionMonoCecil>
+ <NuGetVersionMonoCecil>0.10.0</NuGetVersionMonoCecil>
<NuGetVersionNUnit>3.10.1</NuGetVersionNUnit>
- <NuGetVersionNUnit3TestAdapter>3.13.0</NuGetVersionNUnit3TestAdapter>
+ <NuGetVersionNUnit3TestAdapter>3.17.0</NuGetVersionNUnit3TestAdapter>
+ <NuGetVersionMicrosoftNETTestSdk>16.11.0</NuGetVersionMicrosoftNETTestSdk>
<NuGetVersionQuickIONET>2.6.2.0</NuGetVersionQuickIONET>
<NuGetVersionSharpZipLib>1.3.3</NuGetVersionSharpZipLib>
<NuGetVersionSystemConfigurationConfigurationManager>6.0.0</NuGetVersionSystemConfigurationConfigurationManager>