Commit fafe09b maximv
committed
1 parent ee60648 commit fafe09b Copy full SHA for fafe09b
File tree 3 files changed +10
-9
lines changed
3 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 3
3
## v1.2.0 - Feature release
4
4
5
5
- added: #3 Make it to dotnet CLI tool (dotnet-cstomd)
6
- - added: #4 Ability to remove specific lines from the md output #4
6
+ - added: #4 Ability to remove specific lines from the md output (cstomd.config)
7
7
- added: #6 Add the special comments to wrap the section into collapsible details enhancement
8
8
- added: #7 Strip the comment from the line with `//md` enhancement
Original file line number Diff line number Diff line change 7
7
<ToolCommandName >cstomd</ToolCommandName >
8
8
<AssemblyName >cstomd</AssemblyName >
9
9
<PackageId >dotnet-cstomd</PackageId >
10
- <VersionPrefix >1.0 .0</VersionPrefix >
11
- <VersionSuffix >preview-04 </VersionSuffix >
10
+ <VersionPrefix >1.2 .0</VersionPrefix >
11
+ <VersionSuffix ></VersionSuffix >
12
12
<PackageOutputPath >..\.nupkg</PackageOutputPath >
13
13
<GeneratePackageOnBuild >true</GeneratePackageOnBuild >
14
14
<Authors >Maksim Volkau</Authors >
23
23
<PackageTags >cli dotnet dotnet-tool csharp tests markdown documentation live-documentation literate-programming</PackageTags >
24
24
<PackageReleaseNotes >
25
25
<![CDATA[
26
- ## v1.0.0
27
26
28
- Initial version
27
+ ## v1.2.0 - Feature release
29
28
30
- - Converting (copying) a single file with any extension
31
- - Support for the optional configuration file to remove the lines started with the lines in the config file
29
+ - added: #3 Make it to dotnet CLI tool (dotnet-cstomd)
30
+ - added: #4 Ability to remove specific lines from the md output (cstomd.config)
31
+ - added: #6 Add the special comments to wrap the section into collapsible details enhancement
32
+ - added: #7 Strip the comment from the line with `//md` enhancement
32
33
33
34
]]>
34
35
</PackageReleaseNotes >
Original file line number Diff line number Diff line change 3
3
Visual Studio extension to generate a Markdown .md documentation file from the C# .cs file stripping the special symbol comments.
4
4
5
5
This VSIX extension for Visual Studio 2019 contains a CustomTool File Generator,
6
- which generates a markdown file from the .cs file by stripping the comments ` /*md ` and ` md*/ ` .
6
+ which generates a markdown file from the .cs file by stripping the comments ` /*md ` , ` md*/ ` , and ` //md ` .
7
7
8
8
** The tool helps to turn your C# file with markdown comments into documentation file with runnable examples and what not.**
9
9
@@ -22,7 +22,7 @@ which generates a markdown file from the .cs file by stripping the comments `/*m
22
22
- Clone this repo, compile * CsToMd* project, find the * CsToMd.vsix* in output and install it.
23
23
__ Or simply install__ a ` vsix ` extension from the [ release] ( https://github.com/dadhi/CsToMd/releases/tag/1.0.0-preview-01 ) .
24
24
- In properties of your .cs file, set the ` CustomTool ` property to ` CsToMd ` .
25
- - Save the .cs file with ` /*md ` and ` md*/ ` commnents in it (or without - it will work too).
25
+ - Save the .cs file with ` /*md ` and ` md*/ ` comments in it (or without - it will work too).
26
26
- Check the generated .md file under the .cs file in Solution Explorer
27
27
28
28
Play with the example project [ CsToMdTest] ( https://github.com/dadhi/CsToMd/tree/1.0.0-preview-01/CsToMdTest ) in this repo to see how it works.
You can’t perform that action at this time.
0 commit comments