@@ -82,7 +82,7 @@ public async Task GetProjectDotnetDependencys_WithProjectAssetsFile_ReturnsDotne
8282 var mockPackageFileService = new Mock < IPackagesFileService > ( ) ;
8383 var mockProjectAssetsFileService = new Mock < IProjectAssetsFileService > ( ) ;
8484 mockProjectAssetsFileService
85- . Setup ( s => s . GetDotnetDependencys ( It . IsAny < string > ( ) , It . IsAny < string > ( ) , It . IsAny < bool > ( ) , It . IsAny < bool > ( ) ) )
85+ . Setup ( s => s . GetDotnetDependencys ( It . IsAny < string > ( ) , It . IsAny < string > ( ) , It . IsAny < bool > ( ) ) )
8686 . Returns ( new HashSet < DotnetDependency >
8787 {
8888 new DotnetDependency { Name = "Package" , Version = "1.2.3" } ,
@@ -93,7 +93,7 @@ public async Task GetProjectDotnetDependencys_WithProjectAssetsFile_ReturnsDotne
9393 mockPackageFileService . Object ,
9494 mockProjectAssetsFileService . Object ) ;
9595
96- var packages = await projectFileService . GetProjectDotnetDependencysAsync ( XFS . Path ( @"c:\Project\Project.csproj" ) , "" , false , false , "" , "" ) . ConfigureAwait ( true ) ;
96+ var packages = await projectFileService . GetProjectDotnetDependencysAsync ( XFS . Path ( @"c:\Project\Project.csproj" ) , "" , false , "" , "" ) . ConfigureAwait ( true ) ;
9797
9898 Assert . Collection ( packages ,
9999 item => {
@@ -117,7 +117,7 @@ public async Task GetProjectDotnetDependencys_WithProjectAssetsFileWithoutRestor
117117 var mockPackageFileService = new Mock < IPackagesFileService > ( ) ;
118118 var mockProjectAssetsFileService = new Mock < IProjectAssetsFileService > ( ) ;
119119 mockProjectAssetsFileService
120- . Setup ( s => s . GetDotnetDependencys ( It . IsAny < string > ( ) , It . IsAny < string > ( ) , It . IsAny < bool > ( ) , It . IsAny < bool > ( ) ) )
120+ . Setup ( s => s . GetDotnetDependencys ( It . IsAny < string > ( ) , It . IsAny < string > ( ) , It . IsAny < bool > ( ) ) )
121121 . Returns ( new HashSet < DotnetDependency >
122122 {
123123 new DotnetDependency { Name = "Package" , Version = "1.2.3" } ,
@@ -129,7 +129,7 @@ public async Task GetProjectDotnetDependencys_WithProjectAssetsFileWithoutRestor
129129 mockProjectAssetsFileService . Object ) ;
130130 projectFileService . DisablePackageRestore = true ;
131131
132- var packages = await projectFileService . GetProjectDotnetDependencysAsync ( XFS . Path ( @"c:\Project\Project.csproj" ) , "" , false , false , "" , "" ) . ConfigureAwait ( true ) ;
132+ var packages = await projectFileService . GetProjectDotnetDependencysAsync ( XFS . Path ( @"c:\Project\Project.csproj" ) , "" , false , "" , "" ) . ConfigureAwait ( true ) ;
133133
134134 Assert . Collection ( packages ,
135135 item => {
@@ -153,7 +153,7 @@ public async Task GetProjectDotnetDependencys_WithProjectAssetsFile_ReturnsMulti
153153 var mockPackageFileService = new Mock < IPackagesFileService > ( ) ;
154154 var mockProjectAssetsFileService = new Mock < IProjectAssetsFileService > ( ) ;
155155 mockProjectAssetsFileService
156- . Setup ( s => s . GetDotnetDependencys ( It . IsAny < string > ( ) , It . IsAny < string > ( ) , It . IsAny < bool > ( ) , It . IsAny < bool > ( ) ) )
156+ . Setup ( s => s . GetDotnetDependencys ( It . IsAny < string > ( ) , It . IsAny < string > ( ) , It . IsAny < bool > ( ) ) )
157157 . Returns ( new HashSet < DotnetDependency >
158158 {
159159 new DotnetDependency { Name = "Package1" , Version = "1.2.3" } ,
@@ -166,7 +166,7 @@ public async Task GetProjectDotnetDependencys_WithProjectAssetsFile_ReturnsMulti
166166 mockPackageFileService . Object ,
167167 mockProjectAssetsFileService . Object ) ;
168168
169- var packages = await projectFileService . GetProjectDotnetDependencysAsync ( XFS . Path ( @"c:\Project\Project.csproj" ) , "" , false , false , "" , "" ) . ConfigureAwait ( true ) ;
169+ var packages = await projectFileService . GetProjectDotnetDependencysAsync ( XFS . Path ( @"c:\Project\Project.csproj" ) , "" , false , "" , "" ) . ConfigureAwait ( true ) ;
170170 var sortedPackages = new List < DotnetDependency > ( packages ) ;
171171 sortedPackages . Sort ( ) ;
172172
@@ -199,15 +199,15 @@ public async Task GetProjectDotnetDependencys_WithPackagesConfig_ReturnsDotnetDe
199199 ) ;
200200 var mockProjectAssetsFileService = new Mock < IProjectAssetsFileService > ( ) ;
201201 mockProjectAssetsFileService
202- . Setup ( s => s . GetDotnetDependencys ( It . IsAny < string > ( ) , It . IsAny < string > ( ) , It . IsAny < bool > ( ) , It . IsAny < bool > ( ) ) )
202+ . Setup ( s => s . GetDotnetDependencys ( It . IsAny < string > ( ) , It . IsAny < string > ( ) , It . IsAny < bool > ( ) ) )
203203 . Returns ( new HashSet < DotnetDependency > ( ) ) ;
204204 var projectFileService = new ProjectFileService (
205205 mockFileSystem ,
206206 mockDotnetUtilsService . Object ,
207207 mockPackageFileService . Object ,
208208 mockProjectAssetsFileService . Object ) ;
209209
210- var packages = await projectFileService . GetProjectDotnetDependencysAsync ( XFS . Path ( @"c:\Project\Project.csproj" ) , "" , false , false , "" , "" ) . ConfigureAwait ( true ) ;
210+ var packages = await projectFileService . GetProjectDotnetDependencysAsync ( XFS . Path ( @"c:\Project\Project.csproj" ) , "" , false , "" , "" ) . ConfigureAwait ( true ) ;
211211
212212 Assert . Collection ( packages ,
213213 item => {
@@ -241,15 +241,15 @@ public async Task GetProjectDotnetDependencys_WithPackagesConfig_ReturnsMultiple
241241 ) ;
242242 var mockProjectAssetsFileService = new Mock < IProjectAssetsFileService > ( ) ;
243243 mockProjectAssetsFileService
244- . Setup ( s => s . GetDotnetDependencys ( It . IsAny < string > ( ) , It . IsAny < string > ( ) , It . IsAny < bool > ( ) , It . IsAny < bool > ( ) ) )
244+ . Setup ( s => s . GetDotnetDependencys ( It . IsAny < string > ( ) , It . IsAny < string > ( ) , It . IsAny < bool > ( ) ) )
245245 . Returns ( new HashSet < DotnetDependency > ( ) ) ;
246246 var projectFileService = new ProjectFileService (
247247 mockFileSystem ,
248248 mockDotnetUtilsService . Object ,
249249 mockPackageFileService . Object ,
250250 mockProjectAssetsFileService . Object ) ;
251251
252- var packages = await projectFileService . GetProjectDotnetDependencysAsync ( XFS . Path ( @"c:\Project\Project.csproj" ) , "" , false , false , "" , "" ) . ConfigureAwait ( true ) ;
252+ var packages = await projectFileService . GetProjectDotnetDependencysAsync ( XFS . Path ( @"c:\Project\Project.csproj" ) , "" , false , "" , "" ) . ConfigureAwait ( true ) ;
253253 var sortedPackages = new List < DotnetDependency > ( packages ) ;
254254 sortedPackages . Sort ( ) ;
255255
0 commit comments