File tree 2 files changed +8
-15
lines changed 2 files changed +8
-15
lines changed Original file line number Diff line number Diff line change @@ -226,16 +226,10 @@ def __find_build_directory(
226
226
Attempts to get the output directory where the built artifacts are in
227
227
with respect to the current working directory.
228
228
'''
229
- if platform == 'win32' :
230
- pattern = '*/{Configuration}/{TargetFramework}/' .format (
231
- Configuration = configuration ,
232
- TargetFramework = framework
233
- )
234
- else :
235
- pattern = '*{Configuration}/*{TargetFramework}/' .format (
236
- Configuration = configuration ,
237
- TargetFramework = framework
238
- )
229
+ pattern = '**/{Configuration}/{TargetFramework}' .format (
230
+ Configuration = configuration ,
231
+ TargetFramework = framework
232
+ )
239
233
240
234
for path_name in iglob (pattern , recursive = True ):
241
235
if path .isdir (path_name ):
@@ -353,10 +347,9 @@ def __process_arguments(args: list):
353
347
# TODO: Could pull this information from repository.
354
348
SUPPORTED_CHANNELS = [
355
349
'master' , # Default channel
356
- 'release/2.2.2xx' ,
357
- 'release/2.2.1xx' ,
358
- 'release/2.1' ,
359
- 'release/2.0.0' ,
350
+ '2.2' ,
351
+ '2.1' ,
352
+ '2.0' ,
360
353
'LTS' ,
361
354
]
362
355
install_parser .add_argument (
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ def __get_framework_channel_map() -> dict:
63
63
# TODO: Can we do better? For example, read it from csproj?
64
64
return {
65
65
'netcoreapp3.0' : 'master' ,
66
- 'netcoreapp2.2' : 'release/ 2.2.2xx ' ,
66
+ 'netcoreapp2.2' : '2.2' ,
67
67
'netcoreapp2.1' : '2.1' ,
68
68
'netcoreapp2.0' : '2.0' ,
69
69
}
You can’t perform that action at this time.
0 commit comments