Skip to content
This repository has been archived by the owner on Apr 30, 2020. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerrit "Geaz" Gazic committed Dec 2, 2016
2 parents e38abb3 + 379bbed commit 36c3d11
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
Version 1.1.2
Version 1.2.1

- Some minor bug fixes

Version 1.2.0

- Some minor bug fixes
- Added 'Show Code' option to HTML Exporter

Version 1.1.2

- Some minor bug fixes

Expand Down
2 changes: 1 addition & 1 deletion sharpDox SDK.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>sharpDoxSDK</id>
<version>1.1.2</version>
<version>1.2.0</version>
<title>sharpDox SDK</title>
<authors>Gerrit 'Geaz' Gazic</authors>
<owners>Gerrit 'Geaz' Gazic</owners>
Expand Down
2 changes: 1 addition & 1 deletion src/Core/SharpDox.Core/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@
// übernehmen, indem Sie "*" eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.1.0")]
[assembly: AssemblyFileVersion("1.2.0")]

[assembly: InternalsVisibleTo("SharpDox.Config.Tests")]
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ internal void ResolveAllSeeTokens()
if (cleanedRef.Contains('`'))
{
var splittedName = seeToken.Name.Split('`');
var type = _sdRepository.GetAllTypes().SingleOrDefault(
var type = _sdRepository.GetAllTypes().FirstOrDefault(
t => t.Namespace.Fullname == seeToken.Namespace &&
t.Name == splittedName[0] && t.TypeArguments.Count == int.Parse(splittedName[1]));
t.Name == splittedName[0] && t.TypeArguments.Count == int.Parse(splittedName[1]));

seeToken.Identifier = type?.Identifier;
seeToken.Name = type != null ? type.Name : $"Missing: {seeToken.AttributeValue}";
Expand Down

0 comments on commit 36c3d11

Please sign in to comment.