Skip to content

Commit

Permalink
Update 2023
Browse files Browse the repository at this point in the history
  • Loading branch information
maroontress-tomohisa committed Dec 30, 2023
1 parent 821ccb0 commit 3f41305
Show file tree
Hide file tree
Showing 449 changed files with 198,806 additions and 38 deletions.
91 changes: 91 additions & 0 deletions BomSweeper-CSharp/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-9TQ6JWBKEK"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'G-9TQ6JWBKEK');
</script>
</script>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Top | BomSweeper.CSharp</title>
<link rel="canonical" href="https://maroontress.github.io/BomSweeper-CSharp/index.html" />
<link rel="stylesheet" type="text/css" href="/css/markdown.css">
<link rel="apple-touch-icon" sizes="120x120" href="/images/logo-v2-120x120.png">
<link rel="apple-touch-icon" sizes="180x180" href="/images/logo-v2-180x180.png">
<link rel="icon" type="image/x-icon" href="/images/logo-v2.ico">
<link rel="mask-icon" href="/images/logo-v2-mask-icon.svg" color="#800000">
<script src="/js/highlight.min.js"></script>
<script>hljs.highlightAll();</script>
<script src="/js/toc.js"></script>
</head>
<body>
<div class="logo">
<b>Maroontress Fast Software</b>
</div>
<div class="container">
<div class="main-container">
<section>
<main class="content">
<div class="project-logo">BomSweeper.CSharp</div>
<div id="toc-level" data-values="H2,H3"></div>
<p>BomSweeper is a command-line tool that finds the files starting with a UTF-8 Byte Order Mark (BOM) in the directory tree and removes a BOM from those files.</p>
<h2>Get started</h2>
<p>BomSweeper is available as
<a href="https://www.nuget.org/packages/BomSweeper.GlobalTool/">the <img src="https://maroontress.github.io/images/NuGet-logo.png" alt="NuGet-logo"> NuGet package</a>,
so it can be installed as follows:</p>
<pre><code class="language-bash">dotnet tool install -g BomSweeper.GlobalTool
</code></pre>
<h3>Example</h3>
<pre><code class="language-bash">bomsweeper '**/*.cs' '**/*.csproj'
</code></pre>
<p>BomSweeper finds <code>.cs</code> and <code>.csproj</code> files starting with a UTF-8 BOM in the
current directory and subdirectories. BomSweeper exits 0 if no file is found,
and &gt;0 otherwise.</p>
<pre><code class="language-bash">bomsweeper -R '**/*.cs'
</code></pre>
<p>BomSweeper finds <code>.cs</code> files in the current directory and subdirectories,
and remove a UTF-8 BOM from the files if any. BomSweeper exits 0,
and &gt;0 if an error occurs.</p>
<h2>Documents</h2>
<ul>
<li><a href="https://github.com/maroontress/BomSweeper.CSharp/blob/master/README.md">README</a></li>
<li><a href="releasenotes.html">Release notes</a></li>
</ul>
<h2>How to contribute</h2>
<p>Please send us pull requests or issues from
<a href="https://github.com/maroontress/BomSweeper.CSharp">the <img src="https://maroontress.github.io/images/GitHub-logo.png" alt="GitHub icon"> GitHub repository</a>.</p>
</main>
</section>
</div>
<div class="left-container">
<nav>
<div>
<a href="/">Projects</a>
</div>
<div>
<span>&#x25BE;</span>
</div>
<div>
<span class="project-name"><a href="index.html">BomSweeper.CSharp</a></span>
</div>
<ul>
<li class="selected">
Top
</li>
<ul id="toc-placeholder">
</ul>
<li>
<a href="releasenotes.html">Release Notes</a>
</li>
</ul>
</nav>
</div>
</div>
</body>
</html>
124 changes: 124 additions & 0 deletions BomSweeper-CSharp/releasenotes.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,124 @@
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-9TQ6JWBKEK"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'G-9TQ6JWBKEK');
</script>
</script>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Release Notes | BomSweeper.CSharp</title>
<link rel="canonical" href="https://maroontress.github.io/BomSweeper-CSharp/releasenotes.html" />
<link rel="stylesheet" type="text/css" href="/css/markdown.css">
<link rel="apple-touch-icon" sizes="120x120" href="/images/logo-v2-120x120.png">
<link rel="apple-touch-icon" sizes="180x180" href="/images/logo-v2-180x180.png">
<link rel="icon" type="image/x-icon" href="/images/logo-v2.ico">
<link rel="mask-icon" href="/images/logo-v2-mask-icon.svg" color="#800000">
<script src="/js/highlight.min.js"></script>
<script>hljs.highlightAll();</script>
<script src="/js/toc.js"></script>
</head>
<body>
<div class="logo">
<b>Maroontress Fast Software</b>
</div>
<div class="container">
<div class="main-container">
<section>
<main class="content">
<div class="project-logo">BomSweeper.GlobalTool</div>
<div id="toc-level" data-values="H2"></div>
<h1>Release Notes</h1>
<!--
## x.y.z (yyyy-mm-dd)
abstract
### Requirements to run
- Visual Studio 2019 (16.0) or .NET Core 2.2 (2.2.203)
### Requirements to build
- Visual Studio 2019 (16.0) or .NET Core 2.2 (2.2.203)
### New
### Removed
### Changed
### Fixed
### Known issue
-->
<h2>1.0.1 (2020-06-02)</h2>
<p>Update target framework .NET Core 3.1.</p>
<h3>Requirements to run</h3>
<ul>
<li>.NET Core 3.1 (3.1.300)</li>
</ul>
<h3>Requirements to build</h3>
<ul>
<li>Visual Studio 2019 (16.5) or .NET Core 3.1 (3.1.300)</li>
</ul>
<h3>New</h3>
<ul>
<li>Add <code>-V</code> (<code>--version</code>) option to show version.</li>
</ul>
<h3>Fixed</h3>
<ul>
<li>Fix BomSweeper to handle <code>UnauthorizedAccessException</code>.</li>
</ul>
<h3>Changed</h3>
<ul>
<li>Update target framework .NET Core 3.1.</li>
</ul>
<hr>
<h2>1.0.0 (2019-04-30)</h2>
<p>Initial release.</p>
<h3>Requirements to run</h3>
<ul>
<li>.NET Core 2.2 (2.2.203)</li>
</ul>
<h3>Requirements to build</h3>
<ul>
<li>Visual Studio 2019 (16.0) or .NET Core 2.2 (2.2.203)</li>
</ul>
<h3>New</h3>
<ul>
<li>Find the files matching the specified patterns and starting with a UTF-8 BOM in the current directory and subdirectories.</li>
<li>Remove a UTF-8 BOM from the files matching the specified patterns.</li>
</ul>
</main>
</section>
</div>
<div class="left-container">
<nav>
<div>
<a href="/">Projects</a>
</div>
<div>
<span>&#x25BE;</span>
</div>
<div>
<span class="project-name"><a href="index.html">BomSweeper.CSharp</a></span>
</div>
<ul>
<li>
<a href="index.html">Top</a>
</li>
<li class="selected">
Release Notes
</li>
<ul id="toc-placeholder">
</ul>
</ul>
</nav>
</div>
</div>
</body>
</html>
15 changes: 15 additions & 0 deletions Bulldoc/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Bulldoc

Bulldoc is a documentation generator for C# similar to [DocFX][docfx],
generating the HTML documents from C# source codes.
The appearances of the generated documents imitate the style of
[.NET API Browser][dotnet-api-browser].

## Get started

## Examples

[docfx]:
https://dotnet.github.io/docfx/
[dotnet-api-browser]:
https://docs.microsoft.com/en-us/dotnet/api/
Loading

0 comments on commit 3f41305

Please sign in to comment.