Skip to content

Commit

Permalink
V 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-englert committed Feb 6, 2021
1 parent 52bc001 commit a7009c2
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 168 deletions.
165 changes: 0 additions & 165 deletions GLGPL.txt

This file was deleted.

7 changes: 7 additions & 0 deletions RelaseNotes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#### 1.1
- Fix #3: False negative when null forgiving operator is preceded by whitespace.
- Fix #2: Duplicate entries when project targets multiple frameworks
- Fix threading issues

#### 1.0
- Initial release
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public async Task<IReadOnlyCollection<AnalysisResult>> PostProcessAsync(Project
continue;

var affectedResult = results.FirstOrDefault(result =>
diagnostic.Location == result.Node.Operand.GetLocation());
diagnostic.Location.SourceSpan == result.Node.Operand.GetLocation().SourceSpan);

if (affectedResult != null)
{
Expand Down
3 changes: 2 additions & 1 deletion src/Nullable.Extended.sln
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
directory.build.props = directory.build.props
..\LICENSE.txt = ..\LICENSE.txt
..\README.md = ..\README.md
..\RelaseNotes.md = ..\RelaseNotes.md
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Nullable.Extended.Extension", "Nullable.Extended.Extension\Nullable.Extended.Extension\Nullable.Extended.Extension.csproj", "{46A78692-0A62-4894-BD3F-84D8493C4093}"
Expand Down Expand Up @@ -148,7 +149,7 @@ Global
{AAB9260C-5214-406E-BD92-7D744CE9C9E8} = {BC37F1F9-7176-4104-A858-6A6BF9DE6A33}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {7D3F265F-3672-482A-9F3F-6CE8488584C6}
RESX_ShowErrorsInErrorList = False
SolutionGuid = {7D3F265F-3672-482A-9F3F-6CE8488584C6}
EndGlobalSection
EndGlobal
2 changes: 1 addition & 1 deletion src/directory.build.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<PropertyGroup>
<Version>1.0.0</Version>
<Version>1.1.0</Version>
</PropertyGroup>
</Project>

0 comments on commit a7009c2

Please sign in to comment.