@@ -34,7 +34,7 @@ public async Task TestMetadataCommandFromCSProject()
3434 File . Copy ( "Assets/test.cs.sample.1" , sourceFile ) ;
3535
3636 await DotnetApiCatalog . Exec (
37- new ( new MetadataJsonItemConfig { Dest = _outputFolder , Src = new ( new FileMappingItem ( projectFile ) ) { Expanded = true } } ) ,
37+ new ( new MetadataJsonItemConfig { Output = _outputFolder , Src = new ( new FileMappingItem ( projectFile ) ) { Expanded = true } } ) ,
3838 new ( ) , Directory . GetCurrentDirectory ( ) ) ;
3939
4040 CheckResult ( ) ;
@@ -48,7 +48,7 @@ public async Task TestMetadataCommandFromDll()
4848 File . Copy ( "Assets/test.dll.sample.1" , dllFile ) ;
4949
5050 await DotnetApiCatalog . Exec (
51- new ( new MetadataJsonItemConfig { Dest = _outputFolder , Src = new ( new FileMappingItem ( dllFile ) ) { Expanded = true } } ) ,
51+ new ( new MetadataJsonItemConfig { Output = _outputFolder , Src = new ( new FileMappingItem ( dllFile ) ) { Expanded = true } } ) ,
5252 new ( ) , Directory . GetCurrentDirectory ( ) ) ;
5353
5454 CheckResult ( ) ;
@@ -67,7 +67,7 @@ public async Task TestMetadataCommandFromMultipleFrameworksCSProject()
6767 await DotnetApiCatalog . Exec (
6868 new ( new MetadataJsonItemConfig
6969 {
70- Dest = _outputFolder ,
70+ Output = _outputFolder ,
7171 Src = new ( new FileMappingItem ( projectFile ) ) { Expanded = true } ,
7272 Properties = new ( ) { [ "TargetFramework" ] = "net6.0" } ,
7373 } ) ,
@@ -90,7 +90,7 @@ public async Task TestMetadataCommandFromVBProject()
9090 File . Copy ( "Assets/test.vb.sample.1" , sourceFile ) ;
9191
9292 await DotnetApiCatalog . Exec (
93- new ( new MetadataJsonItemConfig { Dest = _outputFolder , Src = new ( new FileMappingItem ( projectFile ) ) { Expanded = true } } ) ,
93+ new ( new MetadataJsonItemConfig { Output = _outputFolder , Src = new ( new FileMappingItem ( projectFile ) ) { Expanded = true } } ) ,
9494 new ( ) , Directory . GetCurrentDirectory ( ) ) ;
9595
9696 Assert . True ( File . Exists ( Path . Combine ( _outputFolder , ".manifest" ) ) ) ;
@@ -154,7 +154,7 @@ public async Task TestMetadataCommandFromCSProjectWithFilterInOption()
154154 await DotnetApiCatalog . Exec (
155155 new ( new MetadataJsonItemConfig
156156 {
157- Dest = _outputFolder ,
157+ Output = _outputFolder ,
158158 Src = new ( new FileMappingItem ( projectFile ) ) { Expanded = true } ,
159159 Filter = filterFile ,
160160 } ) ,
@@ -202,7 +202,7 @@ public async Task TestMetadataCommandFromCSProjectWithDuplicateProjectReference(
202202 File . Copy ( "Assets/test.cs.sample.1" , sourceFile ) ;
203203
204204 await DotnetApiCatalog . Exec (
205- new ( new MetadataJsonItemConfig { Dest = _outputFolder , Src = new ( new FileMappingItem ( projectFile ) ) { Expanded = true } } ) ,
205+ new ( new MetadataJsonItemConfig { Output = _outputFolder , Src = new ( new FileMappingItem ( projectFile ) ) { Expanded = true } } ) ,
206206 new ( ) , Directory . GetCurrentDirectory ( ) ) ;
207207
208208 CheckResult ( ) ;
@@ -220,7 +220,7 @@ public async Task TestMetadataCommandFromCSProjectWithMultipleNamespaces()
220220 await DotnetApiCatalog . Exec (
221221 new ( new MetadataJsonItemConfig
222222 {
223- Dest = _outputFolder ,
223+ Output = _outputFolder ,
224224 Src = new ( new FileMappingItem ( projectFile ) ) { Expanded = true } ,
225225 NamespaceLayout = NamespaceLayout . Nested ,
226226 } ) ,
@@ -259,7 +259,7 @@ public async Task TestMetadataCommandFromCSProjectWithMultipleNamespacesWithFlat
259259 await DotnetApiCatalog . Exec (
260260 new ( new MetadataJsonItemConfig
261261 {
262- Dest = _outputFolder ,
262+ Output = _outputFolder ,
263263 Src = new ( new FileMappingItem ( projectFile ) ) { Expanded = true } ,
264264 NamespaceLayout = NamespaceLayout . Flattened ,
265265 } ) ,
@@ -298,7 +298,7 @@ public async Task TestMetadataCommandFromCSProjectWithMultipleNamespacesWithGaps
298298 await DotnetApiCatalog . Exec (
299299 new ( new MetadataJsonItemConfig
300300 {
301- Dest = _outputFolder ,
301+ Output = _outputFolder ,
302302 Src = new ( new FileMappingItem ( projectFile ) ) { Expanded = true } ,
303303 NamespaceLayout = NamespaceLayout . Nested ,
304304 } ) ,
0 commit comments