@@ -34,7 +34,7 @@ public async Task TestMetadataCommandFromCSProject()
34
34
File . Copy ( "Assets/test.cs.sample.1" , sourceFile ) ;
35
35
36
36
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 } } ) ,
38
38
new ( ) , Directory . GetCurrentDirectory ( ) ) ;
39
39
40
40
CheckResult ( ) ;
@@ -48,7 +48,7 @@ public async Task TestMetadataCommandFromDll()
48
48
File . Copy ( "Assets/test.dll.sample.1" , dllFile ) ;
49
49
50
50
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 } } ) ,
52
52
new ( ) , Directory . GetCurrentDirectory ( ) ) ;
53
53
54
54
CheckResult ( ) ;
@@ -67,7 +67,7 @@ public async Task TestMetadataCommandFromMultipleFrameworksCSProject()
67
67
await DotnetApiCatalog . Exec (
68
68
new ( new MetadataJsonItemConfig
69
69
{
70
- Dest = _outputFolder ,
70
+ Output = _outputFolder ,
71
71
Src = new ( new FileMappingItem ( projectFile ) ) { Expanded = true } ,
72
72
Properties = new ( ) { [ "TargetFramework" ] = "net6.0" } ,
73
73
} ) ,
@@ -90,7 +90,7 @@ public async Task TestMetadataCommandFromVBProject()
90
90
File . Copy ( "Assets/test.vb.sample.1" , sourceFile ) ;
91
91
92
92
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 } } ) ,
94
94
new ( ) , Directory . GetCurrentDirectory ( ) ) ;
95
95
96
96
Assert . True ( File . Exists ( Path . Combine ( _outputFolder , ".manifest" ) ) ) ;
@@ -154,7 +154,7 @@ public async Task TestMetadataCommandFromCSProjectWithFilterInOption()
154
154
await DotnetApiCatalog . Exec (
155
155
new ( new MetadataJsonItemConfig
156
156
{
157
- Dest = _outputFolder ,
157
+ Output = _outputFolder ,
158
158
Src = new ( new FileMappingItem ( projectFile ) ) { Expanded = true } ,
159
159
Filter = filterFile ,
160
160
} ) ,
@@ -202,7 +202,7 @@ public async Task TestMetadataCommandFromCSProjectWithDuplicateProjectReference(
202
202
File . Copy ( "Assets/test.cs.sample.1" , sourceFile ) ;
203
203
204
204
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 } } ) ,
206
206
new ( ) , Directory . GetCurrentDirectory ( ) ) ;
207
207
208
208
CheckResult ( ) ;
@@ -220,7 +220,7 @@ public async Task TestMetadataCommandFromCSProjectWithMultipleNamespaces()
220
220
await DotnetApiCatalog . Exec (
221
221
new ( new MetadataJsonItemConfig
222
222
{
223
- Dest = _outputFolder ,
223
+ Output = _outputFolder ,
224
224
Src = new ( new FileMappingItem ( projectFile ) ) { Expanded = true } ,
225
225
NamespaceLayout = NamespaceLayout . Nested ,
226
226
} ) ,
@@ -259,7 +259,7 @@ public async Task TestMetadataCommandFromCSProjectWithMultipleNamespacesWithFlat
259
259
await DotnetApiCatalog . Exec (
260
260
new ( new MetadataJsonItemConfig
261
261
{
262
- Dest = _outputFolder ,
262
+ Output = _outputFolder ,
263
263
Src = new ( new FileMappingItem ( projectFile ) ) { Expanded = true } ,
264
264
NamespaceLayout = NamespaceLayout . Flattened ,
265
265
} ) ,
@@ -298,7 +298,7 @@ public async Task TestMetadataCommandFromCSProjectWithMultipleNamespacesWithGaps
298
298
await DotnetApiCatalog . Exec (
299
299
new ( new MetadataJsonItemConfig
300
300
{
301
- Dest = _outputFolder ,
301
+ Output = _outputFolder ,
302
302
Src = new ( new FileMappingItem ( projectFile ) ) { Expanded = true } ,
303
303
NamespaceLayout = NamespaceLayout . Nested ,
304
304
} ) ,
0 commit comments