Skip to content

Commit

Permalink
xml 문서화
Browse files Browse the repository at this point in the history
  • Loading branch information
steamb23 committed Jul 31, 2020
1 parent a7284f9 commit 48752e2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Naramal/Hangul.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public Hangul(Consonant Consonant, Vowel Vowel, FinalConsonant FinalConsonant =
/// <summary>
/// <see cref="Hangul"/> 구조체의 인스턴스를 초기화합니다.
/// </summary>
/// <param name="char"><see cref="Hangul"/> 구조체로 변환될 한글 문자입니다.</param>
/// <param name="character"><see cref="Hangul"/> 구조체로 변환될 한글 문자입니다.</param>
public Hangul(char character)
{
if (CheckHangulSyllable(character))
Expand Down
2 changes: 1 addition & 1 deletion Naramal/Josa.cs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public static string Select(string word, string josa)
/// <returns>변환된 문자열입니다.</returns>
public static string Format(Josa 조사, string format, params object[] args) => string.Format(조사, format, args);

/// <inheritdoc cref="ICustomFormatter.Format(문자열, object, IFormatProvider)"/>
/// <inheritdoc cref="ICustomFormatter.Format(string, object, IFormatProvider)"/>
public string Format(string format, object arg, IFormatProvider formatProvider)
{
// 콜백 유효성 검사
Expand Down
8 changes: 7 additions & 1 deletion Naramal/Naramal.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,18 @@
<Company>SteamB23</Company>
<PackageProjectUrl>https://github.com/steamb23/Naramal</PackageProjectUrl>
<Copyright>Copyright (c) 2020 SteamB23</Copyright>
<Version>1.0.0</Version>
<Version>1.0.1</Version>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<RepositoryUrl>https://github.com/steamb23/Naramal</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<PackageTags>korean;josa;</PackageTags>
<PackageIcon>Icon.png</PackageIcon>
<PackageReleaseNotes></PackageReleaseNotes>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Release\Naramal.xml</DocumentationFile>
<OutputPath>bin\Release\</OutputPath>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 48752e2

Please sign in to comment.