Skip to content

Commit 54ef952

Browse files
committed
[Xamarin.Android.Build.Tasks] Correct mono module file references.
Thanks to @joeabbey for reporting the oversight: https://gitter.im/xamarin/xamarin-android?at=572262ecacbf59414aafeb42 > I had to make some modifications to > Xamarin.Android.Build.Tasks.csproj > As far as I could tell, basically the ......\mono\mcs Includes > needed to be ....\external\mono That was an oversight on our part, as $topdir/../mono is a valid path on our build machines... Oops.
1 parent b7ae30a commit 54ef952

File tree

1 file changed

+71
-71
lines changed

1 file changed

+71
-71
lines changed

src/Xamarin.Android.Build.Tasks/Xamarin.Android.Build.Tasks.csproj

Lines changed: 71 additions & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -129,13 +129,13 @@
129129
<Compile Include="Linker\MonoDroid.Tuner\RemoveAttributes.cs" />
130130
<Compile Include="Utilities\MSBuildExtensions.cs" />
131131
<Compile Include="Mono.Android\ServiceAttribute.Partial.cs" />
132-
<Compile Include="..\..\..\mono\mcs\tools\tuner\Mono.Tuner\AdjustVisibility.cs">
132+
<Compile Include="..\..\external\mono\mcs\tools\tuner\Mono.Tuner\AdjustVisibility.cs">
133133
<Link>Linker\Mono.Tuner\AdjustVisibility.cs</Link>
134134
</Compile>
135-
<Compile Include="..\..\..\mono\mcs\tools\tuner\Mono.Tuner\CecilRocks.cs">
135+
<Compile Include="..\..\external\mono\mcs\tools\tuner\Mono.Tuner\CecilRocks.cs">
136136
<Link>Linker\Mono.Tuner\CecilRocks.cs</Link>
137137
</Compile>
138-
<Compile Include="..\..\..\mono\mcs\tools\tuner\Mono.Tuner\CheckVisibility.cs">
138+
<Compile Include="..\..\external\mono\mcs\tools\tuner\Mono.Tuner\CheckVisibility.cs">
139139
<Link>Linker\Mono.Tuner\CheckVisibility.cs</Link>
140140
</Compile>
141141
<Compile Include="Mono.Android\UsesLibraryAttribute.Partial.cs" />
@@ -220,82 +220,82 @@
220220
<Compile Include="Tasks\CreateMultiDexMainDexClassList.cs" />
221221
<Compile Include="Tasks\ReadAdditionalResourcesFromAssemblyCache.cs" />
222222
<Compile Include="Tasks\JavaToolTask.cs" />
223-
<Compile Include="..\..\..\mono\mcs\tools\pdb2mdb\BitAccess.cs">
223+
<Compile Include="..\..\external\mono\mcs\tools\pdb2mdb\BitAccess.cs">
224224
<Link>pdb2mdb\BitAccess.cs</Link>
225225
</Compile>
226-
<Compile Include="..\..\..\mono\mcs\tools\pdb2mdb\BitSet.cs">
226+
<Compile Include="..\..\external\mono\mcs\tools\pdb2mdb\BitSet.cs">
227227
<Link>pdb2mdb\BitSet.cs</Link>
228228
</Compile>
229-
<Compile Include="..\..\..\mono\mcs\tools\pdb2mdb\CvInfo.cs">
229+
<Compile Include="..\..\external\mono\mcs\tools\pdb2mdb\CvInfo.cs">
230230
<Link>pdb2mdb\CvInfo.cs</Link>
231231
</Compile>
232-
<Compile Include="..\..\..\mono\mcs\tools\pdb2mdb\DataStream.cs">
232+
<Compile Include="..\..\external\mono\mcs\tools\pdb2mdb\DataStream.cs">
233233
<Link>pdb2mdb\DataStream.cs</Link>
234234
</Compile>
235-
<Compile Include="..\..\..\mono\mcs\tools\pdb2mdb\DbiDbgHdr.cs">
235+
<Compile Include="..\..\external\mono\mcs\tools\pdb2mdb\DbiDbgHdr.cs">
236236
<Link>pdb2mdb\DbiDbgHdr.cs</Link>
237237
</Compile>
238-
<Compile Include="..\..\..\mono\mcs\tools\pdb2mdb\DbiHeader.cs">
238+
<Compile Include="..\..\external\mono\mcs\tools\pdb2mdb\DbiHeader.cs">
239239
<Link>pdb2mdb\DbiHeader.cs</Link>
240240
</Compile>
241-
<Compile Include="..\..\..\mono\mcs\tools\pdb2mdb\DbiModuleInfo.cs">
241+
<Compile Include="..\..\external\mono\mcs\tools\pdb2mdb\DbiModuleInfo.cs">
242242
<Link>pdb2mdb\DbiModuleInfo.cs</Link>
243243
</Compile>
244-
<Compile Include="..\..\..\mono\mcs\tools\pdb2mdb\DbiSecCon.cs">
244+
<Compile Include="..\..\external\mono\mcs\tools\pdb2mdb\DbiSecCon.cs">
245245
<Link>pdb2mdb\DbiSecCon.cs</Link>
246246
</Compile>
247-
<Compile Include="..\..\..\mono\mcs\tools\pdb2mdb\Driver.cs">
247+
<Compile Include="..\..\external\mono\mcs\tools\pdb2mdb\Driver.cs">
248248
<Link>pdb2mdb\Driver.cs</Link>
249249
</Compile>
250-
<Compile Include="..\..\..\mono\mcs\tools\pdb2mdb\IntHashTable.cs">
250+
<Compile Include="..\..\external\mono\mcs\tools\pdb2mdb\IntHashTable.cs">
251251
<Link>pdb2mdb\IntHashTable.cs</Link>
252252
</Compile>
253-
<Compile Include="..\..\..\mono\mcs\tools\pdb2mdb\Interfaces.cs">
253+
<Compile Include="..\..\external\mono\mcs\tools\pdb2mdb\Interfaces.cs">
254254
<Link>pdb2mdb\Interfaces.cs</Link>
255255
</Compile>
256-
<Compile Include="..\..\..\mono\mcs\tools\pdb2mdb\MsfDirectory.cs">
256+
<Compile Include="..\..\external\mono\mcs\tools\pdb2mdb\MsfDirectory.cs">
257257
<Link>pdb2mdb\MsfDirectory.cs</Link>
258258
</Compile>
259-
<Compile Include="..\..\..\mono\mcs\tools\pdb2mdb\PdbConstant.cs">
259+
<Compile Include="..\..\external\mono\mcs\tools\pdb2mdb\PdbConstant.cs">
260260
<Link>pdb2mdb\PdbConstant.cs</Link>
261261
</Compile>
262-
<Compile Include="..\..\..\mono\mcs\tools\pdb2mdb\PdbDebugException.cs">
262+
<Compile Include="..\..\external\mono\mcs\tools\pdb2mdb\PdbDebugException.cs">
263263
<Link>pdb2mdb\PdbDebugException.cs</Link>
264264
</Compile>
265-
<Compile Include="..\..\..\mono\mcs\tools\pdb2mdb\PdbException.cs">
265+
<Compile Include="..\..\external\mono\mcs\tools\pdb2mdb\PdbException.cs">
266266
<Link>pdb2mdb\PdbException.cs</Link>
267267
</Compile>
268-
<Compile Include="..\..\..\mono\mcs\tools\pdb2mdb\PdbFile.cs">
268+
<Compile Include="..\..\external\mono\mcs\tools\pdb2mdb\PdbFile.cs">
269269
<Link>pdb2mdb\PdbFile.cs</Link>
270270
</Compile>
271-
<Compile Include="..\..\..\mono\mcs\tools\pdb2mdb\PdbFileHeader.cs">
271+
<Compile Include="..\..\external\mono\mcs\tools\pdb2mdb\PdbFileHeader.cs">
272272
<Link>pdb2mdb\PdbFileHeader.cs</Link>
273273
</Compile>
274-
<Compile Include="..\..\..\mono\mcs\tools\pdb2mdb\PdbFunction.cs">
274+
<Compile Include="..\..\external\mono\mcs\tools\pdb2mdb\PdbFunction.cs">
275275
<Link>pdb2mdb\PdbFunction.cs</Link>
276276
</Compile>
277-
<Compile Include="..\..\..\mono\mcs\tools\pdb2mdb\PdbLine.cs">
277+
<Compile Include="..\..\external\mono\mcs\tools\pdb2mdb\PdbLine.cs">
278278
<Link>pdb2mdb\PdbLine.cs</Link>
279279
</Compile>
280-
<Compile Include="..\..\..\mono\mcs\tools\pdb2mdb\PdbLines.cs">
280+
<Compile Include="..\..\external\mono\mcs\tools\pdb2mdb\PdbLines.cs">
281281
<Link>pdb2mdb\PdbLines.cs</Link>
282282
</Compile>
283-
<Compile Include="..\..\..\mono\mcs\tools\pdb2mdb\PdbReader.cs">
283+
<Compile Include="..\..\external\mono\mcs\tools\pdb2mdb\PdbReader.cs">
284284
<Link>pdb2mdb\PdbReader.cs</Link>
285285
</Compile>
286-
<Compile Include="..\..\..\mono\mcs\tools\pdb2mdb\PdbScope.cs">
286+
<Compile Include="..\..\external\mono\mcs\tools\pdb2mdb\PdbScope.cs">
287287
<Link>pdb2mdb\PdbScope.cs</Link>
288288
</Compile>
289-
<Compile Include="..\..\..\mono\mcs\tools\pdb2mdb\PdbSlot.cs">
289+
<Compile Include="..\..\external\mono\mcs\tools\pdb2mdb\PdbSlot.cs">
290290
<Link>pdb2mdb\PdbSlot.cs</Link>
291291
</Compile>
292-
<Compile Include="..\..\..\mono\mcs\tools\pdb2mdb\PdbSource.cs">
292+
<Compile Include="..\..\external\mono\mcs\tools\pdb2mdb\PdbSource.cs">
293293
<Link>pdb2mdb\PdbSource.cs</Link>
294294
</Compile>
295-
<Compile Include="..\..\..\mono\mcs\tools\pdb2mdb\PdbWriter.cs">
295+
<Compile Include="..\..\external\mono\mcs\tools\pdb2mdb\PdbWriter.cs">
296296
<Link>pdb2mdb\PdbWriter.cs</Link>
297297
</Compile>
298-
<Compile Include="..\..\..\mono\mcs\tools\pdb2mdb\SourceLocationProvider.cs">
298+
<Compile Include="..\..\external\mono\mcs\tools\pdb2mdb\SourceLocationProvider.cs">
299299
<Link>pdb2mdb\SourceLocationProvider.cs</Link>
300300
</Compile>
301301
<Compile Include="Tasks\Lint.cs" />
@@ -308,79 +308,79 @@
308308
<None Include="Xamarin.Android.Analysis.targets">
309309
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
310310
</None>
311-
<Compile Include="..\..\..\mono\mcs\tools\linker\Mono.Linker\Annotations.cs">
311+
<Compile Include="..\..\external\mono\mcs\tools\linker\Mono.Linker\Annotations.cs">
312312
<Link>Linker\Mono.Linker\Annotations.cs</Link>
313313
</Compile>
314-
<Compile Include="..\..\..\mono\mcs\tools\linker\Mono.Linker\AssemblyAction.cs">
314+
<Compile Include="..\..\external\mono\mcs\tools\linker\Mono.Linker\AssemblyAction.cs">
315315
<Link>Linker\Mono.Linker\AssemblyAction.cs</Link>
316316
</Compile>
317-
<Compile Include="..\..\..\mono\mcs\tools\linker\Mono.Linker\AssemblyResolver.cs">
317+
<Compile Include="..\..\external\mono\mcs\tools\linker\Mono.Linker\AssemblyResolver.cs">
318318
<Link>Linker\Mono.Linker\AssemblyResolver.cs</Link>
319319
</Compile>
320-
<Compile Include="..\..\..\mono\mcs\tools\linker\Mono.Linker\I18nAssemblies.cs">
320+
<Compile Include="..\..\external\mono\mcs\tools\linker\Mono.Linker\I18nAssemblies.cs">
321321
<Link>Linker\Mono.Linker\I18nAssemblies.cs</Link>
322322
</Compile>
323-
<Compile Include="..\..\..\mono\mcs\tools\linker\Mono.Linker\IXApiVisitor.cs">
323+
<Compile Include="..\..\external\mono\mcs\tools\linker\Mono.Linker\IXApiVisitor.cs">
324324
<Link>Linker\Mono.Linker\IXApiVisitor.cs</Link>
325325
</Compile>
326-
<Compile Include="..\..\..\mono\mcs\tools\linker\Mono.Linker\LinkContext.cs">
326+
<Compile Include="..\..\external\mono\mcs\tools\linker\Mono.Linker\LinkContext.cs">
327327
<Link>Linker\Mono.Linker\LinkContext.cs</Link>
328328
</Compile>
329-
<Compile Include="..\..\..\mono\mcs\tools\linker\Mono.Linker\MethodAction.cs">
329+
<Compile Include="..\..\external\mono\mcs\tools\linker\Mono.Linker\MethodAction.cs">
330330
<Link>Linker\Mono.Linker\MethodAction.cs</Link>
331331
</Compile>
332-
<Compile Include="..\..\..\mono\mcs\tools\linker\Mono.Linker\Pipeline.cs">
332+
<Compile Include="..\..\external\mono\mcs\tools\linker\Mono.Linker\Pipeline.cs">
333333
<Link>Linker\Mono.Linker\Pipeline.cs</Link>
334334
</Compile>
335-
<Compile Include="..\..\..\mono\mcs\tools\linker\Mono.Linker\TypePreserve.cs">
335+
<Compile Include="..\..\external\mono\mcs\tools\linker\Mono.Linker\TypePreserve.cs">
336336
<Link>Linker\Mono.Linker\TypePreserve.cs</Link>
337337
</Compile>
338-
<Compile Include="..\..\..\mono\mcs\tools\linker\Mono.Linker\XApiReader.cs">
338+
<Compile Include="..\..\external\mono\mcs\tools\linker\Mono.Linker\XApiReader.cs">
339339
<Link>Linker\Mono.Linker\XApiReader.cs</Link>
340340
</Compile>
341-
<Compile Include="..\..\..\mono\mcs\tools\linker\Mono.Linker.Steps\BlacklistStep.cs">
341+
<Compile Include="..\..\external\mono\mcs\tools\linker\Mono.Linker.Steps\BlacklistStep.cs">
342342
<Link>Linker\Mono.Linker.Steps\BlacklistStep.cs</Link>
343343
</Compile>
344-
<Compile Include="..\..\..\mono\mcs\tools\linker\Mono.Linker.Steps\BaseStep.cs">
344+
<Compile Include="..\..\external\mono\mcs\tools\linker\Mono.Linker.Steps\BaseStep.cs">
345345
<Link>Linker\Mono.Linker.Steps\BaseStep.cs</Link>
346346
</Compile>
347-
<Compile Include="..\..\..\mono\mcs\tools\linker\Mono.Linker.Steps\CleanStep.cs">
347+
<Compile Include="..\..\external\mono\mcs\tools\linker\Mono.Linker.Steps\CleanStep.cs">
348348
<Link>Linker\Mono.Linker.Steps\CleanStep.cs</Link>
349349
</Compile>
350-
<Compile Include="..\..\..\mono\mcs\tools\linker\Mono.Linker.Steps\IStep.cs">
350+
<Compile Include="..\..\external\mono\mcs\tools\linker\Mono.Linker.Steps\IStep.cs">
351351
<Link>Linker\Mono.Linker.Steps\IStep.cs</Link>
352352
</Compile>
353-
<Compile Include="..\..\..\mono\mcs\tools\linker\Mono.Linker.Steps\LoadI18nAssemblies.cs">
353+
<Compile Include="..\..\external\mono\mcs\tools\linker\Mono.Linker.Steps\LoadI18nAssemblies.cs">
354354
<Link>Linker\Mono.Linker.Steps\LoadI18nAssemblies.cs</Link>
355355
</Compile>
356-
<Compile Include="..\..\..\mono\mcs\tools\linker\Mono.Linker.Steps\LoadReferencesStep.cs">
356+
<Compile Include="..\..\external\mono\mcs\tools\linker\Mono.Linker.Steps\LoadReferencesStep.cs">
357357
<Link>Linker\Mono.Linker.Steps\LoadReferencesStep.cs</Link>
358358
</Compile>
359-
<Compile Include="..\..\..\mono\mcs\tools\linker\Mono.Linker.Steps\OutputStep.cs">
359+
<Compile Include="..\..\external\mono\mcs\tools\linker\Mono.Linker.Steps\OutputStep.cs">
360360
<Link>Linker\Mono.Linker.Steps\OutputStep.cs</Link>
361361
</Compile>
362-
<Compile Include="..\..\..\mono\mcs\tools\linker\Mono.Linker.Steps\RegenerateGuidStep.cs">
362+
<Compile Include="..\..\external\mono\mcs\tools\linker\Mono.Linker.Steps\RegenerateGuidStep.cs">
363363
<Link>Linker\Mono.Linker.Steps\RegenerateGuidStep.cs</Link>
364364
</Compile>
365-
<Compile Include="..\..\..\mono\mcs\tools\linker\Mono.Linker.Steps\ResolveFromAssemblyStep.cs">
365+
<Compile Include="..\..\external\mono\mcs\tools\linker\Mono.Linker.Steps\ResolveFromAssemblyStep.cs">
366366
<Link>Linker\Mono.Linker.Steps\ResolveFromAssemblyStep.cs</Link>
367367
</Compile>
368-
<Compile Include="..\..\..\mono\mcs\tools\linker\Mono.Linker.Steps\ResolveFromXApiStep.cs">
368+
<Compile Include="..\..\external\mono\mcs\tools\linker\Mono.Linker.Steps\ResolveFromXApiStep.cs">
369369
<Link>Linker\Mono.Linker.Steps\ResolveFromXApiStep.cs</Link>
370370
</Compile>
371-
<Compile Include="..\..\..\mono\mcs\tools\linker\Mono.Linker.Steps\ResolveFromXmlStep.cs">
371+
<Compile Include="..\..\external\mono\mcs\tools\linker\Mono.Linker.Steps\ResolveFromXmlStep.cs">
372372
<Link>Linker\Mono.Linker.Steps\ResolveFromXmlStep.cs</Link>
373373
</Compile>
374-
<Compile Include="..\..\..\mono\mcs\tools\linker\Mono.Linker.Steps\ResolveStep.cs">
374+
<Compile Include="..\..\external\mono\mcs\tools\linker\Mono.Linker.Steps\ResolveStep.cs">
375375
<Link>Linker\Mono.Linker.Steps\ResolveStep.cs</Link>
376376
</Compile>
377-
<Compile Include="..\..\..\mono\mcs\tools\linker\Mono.Linker.Steps\TypeMapStep.cs">
377+
<Compile Include="..\..\external\mono\mcs\tools\linker\Mono.Linker.Steps\TypeMapStep.cs">
378378
<Link>Linker\Mono.Linker.Steps\TypeMapStep.cs</Link>
379379
</Compile>
380-
<Compile Include="..\..\..\mono\mcs\tools\linker\Mono.Linker.Steps\SweepStep.cs">
380+
<Compile Include="..\..\external\mono\mcs\tools\linker\Mono.Linker.Steps\SweepStep.cs">
381381
<Link>Linker\Mono.Linker.Steps\SweepStep.cs</Link>
382382
</Compile>
383-
<Compile Include="..\..\..\mono\mcs\tools\linker\Mono.Linker.Steps\MarkStep.cs">
383+
<Compile Include="..\..\external\mono\mcs\tools\linker\Mono.Linker.Steps\MarkStep.cs">
384384
<Link>Linker\Mono.Linker.Steps\MarkStep.cs</Link>
385385
</Compile>
386386
<Compile Include="Tasks\MergeResources.cs" />
@@ -405,40 +405,40 @@
405405
<Compile Include="Utilities\Files.cs">
406406
<Link>Utilities\Files.cs</Link>
407407
</Compile>
408-
<Compile Include="..\..\..\mono\mcs\tools\tuner\Mono.Tuner\ApplyPreserveAttributeBase.cs">
408+
<Compile Include="..\..\external\mono\mcs\tools\tuner\Mono.Tuner\ApplyPreserveAttributeBase.cs">
409409
<Link>Linker\Mono.Tuner\ApplyPreserveAttributeBase.cs</Link>
410410
</Compile>
411-
<Compile Include="..\..\..\mono\mcs\tools\tuner\Mono.Tuner\Dispatcher.cs">
411+
<Compile Include="..\..\external\mono\mcs\tools\tuner\Mono.Tuner\Dispatcher.cs">
412412
<Link>Linker\Mono.Tuner\Dispatcher.cs</Link>
413413
</Compile>
414-
<Compile Include="..\..\..\mono\mcs\tools\tuner\Mono.Tuner\CustomizeActions.cs">
414+
<Compile Include="..\..\external\mono\mcs\tools\tuner\Mono.Tuner\CustomizeActions.cs">
415415
<Link>Linker\Mono.Tuner\CustomizeActions.cs</Link>
416416
</Compile>
417-
<Compile Include="..\..\..\mono\mcs\tools\tuner\Mono.Tuner\Extensions.cs">
417+
<Compile Include="..\..\external\mono\mcs\tools\tuner\Mono.Tuner\Extensions.cs">
418418
<Link>Linker\Mono.Tuner\Extensions.cs</Link>
419419
</Compile>
420-
<Compile Include="..\..\..\mono\mcs\tools\tuner\Mono.Tuner\FixModuleFlags.cs">
420+
<Compile Include="..\..\external\mono\mcs\tools\tuner\Mono.Tuner\FixModuleFlags.cs">
421421
<Link>Linker\Mono.Tuner\FixModuleFlags.cs</Link>
422422
</Compile>
423-
<Compile Include="..\..\..\mono\mcs\tools\tuner\Mono.Tuner\PrintTypeMap.cs">
423+
<Compile Include="..\..\external\mono\mcs\tools\tuner\Mono.Tuner\PrintTypeMap.cs">
424424
<Link>Linker\Mono.Tuner\PrintTypeMap.cs</Link>
425425
</Compile>
426-
<Compile Include="..\..\..\mono\mcs\tools\tuner\Mono.Tuner\PreserveCrypto.cs">
426+
<Compile Include="..\..\external\mono\mcs\tools\tuner\Mono.Tuner\PreserveCrypto.cs">
427427
<Link>Linker\Mono.Tuner\PreserveCrypto.cs</Link>
428428
</Compile>
429-
<Compile Include="..\..\..\mono\mcs\tools\tuner\Mono.Tuner\PreserveSoapHttpClients.cs">
429+
<Compile Include="..\..\external\mono\mcs\tools\tuner\Mono.Tuner\PreserveSoapHttpClients.cs">
430430
<Link>Linker\Mono.Tuner\PreserveSoapHttpClients.cs</Link>
431431
</Compile>
432-
<Compile Include="..\..\..\mono\mcs\tools\tuner\Mono.Tuner\Profile.cs">
432+
<Compile Include="..\..\external\mono\mcs\tools\tuner\Mono.Tuner\Profile.cs">
433433
<Link>Linker\Mono.Tuner\Profile.cs</Link>
434434
</Compile>
435-
<Compile Include="..\..\..\mono\mcs\tools\tuner\Mono.Tuner\RemoveAttributesBase.cs">
435+
<Compile Include="..\..\external\mono\mcs\tools\tuner\Mono.Tuner\RemoveAttributesBase.cs">
436436
<Link>Linker\Mono.Tuner\RemoveAttributesBase.cs</Link>
437437
</Compile>
438-
<Compile Include="..\..\..\mono\mcs\tools\tuner\Mono.Tuner\RemoveResources.cs">
438+
<Compile Include="..\..\external\mono\mcs\tools\tuner\Mono.Tuner\RemoveResources.cs">
439439
<Link>Linker\Mono.Tuner\RemoveResources.cs</Link>
440440
</Compile>
441-
<Compile Include="..\..\..\mono\mcs\tools\tuner\Mono.Tuner\RemoveSecurity.cs">
441+
<Compile Include="..\..\external\mono\mcs\tools\tuner\Mono.Tuner\RemoveSecurity.cs">
442442
<Link>Linker\Mono.Tuner\RemoveSecurity.cs</Link>
443443
</Compile>
444444
<Compile Include="..\Mono.Android\\Android.App\IntentFilterAttribute.cs">
@@ -477,19 +477,19 @@
477477
<Compile Include="..\..\external\Java.Interop\src\utils\StringRocks.cs">
478478
<Link>Utilities\StringRocks.cs</Link>
479479
</Compile>
480-
<Compile Include="..\..\..\mono\mcs\tools\tuner\Mono.Tuner\FilterAttributes.cs">
480+
<Compile Include="..\..\external\mono\mcs\tools\tuner\Mono.Tuner\FilterAttributes.cs">
481481
<Link>Linker\Mono.Tuner\FilterAttributes.cs</Link>
482482
</Compile>
483-
<Compile Include="..\..\..\mono\mcs\tools\tuner\Mono.Tuner\InjectSecurityAttributes.cs">
483+
<Compile Include="..\..\external\mono\mcs\tools\tuner\Mono.Tuner\InjectSecurityAttributes.cs">
484484
<Link>Linker\Mono.Tuner\InjectSecurityAttributes.cs</Link>
485485
</Compile>
486-
<Compile Include="..\..\..\mono\mcs\tools\tuner\Mono.Tuner\PrintStatus.cs">
486+
<Compile Include="..\..\external\mono\mcs\tools\tuner\Mono.Tuner\PrintStatus.cs">
487487
<Link>Linker\Mono.Tuner\PrintStatus.cs</Link>
488488
</Compile>
489-
<Compile Include="..\..\..\mono\mcs\tools\tuner\Mono.Tuner\RemoveSerialization.cs">
489+
<Compile Include="..\..\external\mono\mcs\tools\tuner\Mono.Tuner\RemoveSerialization.cs">
490490
<Link>Linker\Mono.Tuner\RemoveSerialization.cs</Link>
491491
</Compile>
492-
<Compile Include="..\..\..\mono\mcs\tools\tuner\Mono.Tuner\TunerAnnotations.cs">
492+
<Compile Include="..\..\external\mono\mcs\tools\tuner\Mono.Tuner\TunerAnnotations.cs">
493493
<Link>Linker\Mono.Tuner\TunerAnnotations.cs</Link>
494494
</Compile>
495495
<Compile Include="..\Mono.Android\\Android.App\UsesLibraryAttribute.cs">

0 commit comments

Comments
 (0)