File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
Mocking.Helpers/NSubstitute Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" utf-8" ?>
22<PackageManifest Version =" 2.0.0" xmlns =" http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns : d =" http://schemas.microsoft.com/developer/vsx-schema-design/2011" >
33 <Metadata >
4- <Identity Id =" Mocking.Helpers.DC82BF19-0482-4D47-A1FF-7F4CBBAA44D4" Version =" 1.1.14 .0" Language =" en-US" Publisher =" MrLuje" />
4+ <Identity Id =" Mocking.Helpers.DC82BF19-0482-4D47-A1FF-7F4CBBAA44D4" Version =" 1.0.0 .0" Language =" en-US" Publisher =" MrLuje" />
55 <DisplayName >Mocking.Helpers</DisplayName >
66 <Description xml : space =" preserve" >Collection of features to help working with various mocking framework</Description >
77 <MoreInfo >https://github.com/MrLuje/Mocking.Helpers</MoreInfo >
Original file line number Diff line number Diff line change 22using Microsoft . CodeAnalysis . Completion ;
33using Microsoft . CodeAnalysis . CSharp . Syntax ;
44using System ;
5- using System . Collections . Generic ;
65using System . Linq ;
7- using System . Text ;
86using System . Threading . Tasks ;
97
108namespace Mocking . Helpers . NSubstitute
@@ -40,7 +38,6 @@ public override async Task ProvideCompletionsAsync(CompletionContext context)
4038 var mockedMethodArgumentList = token . Parent as ArgumentListSyntax ;
4139 var mockedMethodInvocation = mockedMethodArgumentList . Ancestors ( )
4240 . OfType < InvocationExpressionSyntax > ( )
43- . Where ( IsSubstituteForMethod )
4441 . FirstOrDefault ( ) ;
4542
4643 if ( mockedMethodInvocation == null ) return ;
You can’t perform that action at this time.
0 commit comments