|
44 | 44 | <FeatureSharedLowLevelLock>true</FeatureSharedLowLevelLock>
|
45 | 45 | </PropertyGroup>
|
46 | 46 |
|
47 |
| - <PropertyGroup Condition="'$(WasmAbi)' == 'true'"> |
| 47 | + <PropertyGroup Condition="'$(TargetsWasm)' == 'true'"> |
48 | 48 | <FeaturePortableGetUnboxingStubTarget>true</FeaturePortableGetUnboxingStubTarget>
|
49 | 49 | </PropertyGroup>
|
50 | 50 |
|
|
212 | 212 | <Compile Include="System\Runtime\ExceptionIDs.cs" />
|
213 | 213 | <Compile Include="System\Runtime\GCSettings.NativeAot.cs" />
|
214 | 214 | <Compile Include="System\Runtime\TypeLoaderExports.cs" />
|
215 |
| - <Compile Include="System\Runtime\ThunkPool.cs" /> |
| 215 | + <Compile Include="System\Runtime\ThunkPool.cs" Condition="'$(TargetsWasm)' != 'true'" /> |
| 216 | + <Compile Include="System\Runtime\ThunkPool.NotSupported.cs" Condition="'$(TargetsWasm)' == 'true'" /> |
216 | 217 | <Compile Include="System\Runtime\InitializeFinalizerThread.cs" />
|
217 | 218 | <Compile Include="System\Runtime\InteropServices\ComEventsHelper.NativeAot.cs" Condition="'$(FeatureCominterop)' == 'true'" />
|
218 | 219 | <Compile Include="System\Runtime\InteropServices\ComWrappers.NativeAot.cs" Condition="'$(FeatureComWrappers)' == 'true'" />
|
|
239 | 240 | <Compile Include="System\RuntimeExceptionHelpers.cs" />
|
240 | 241 | <Compile Include="System\EETypePtr.cs" />
|
241 | 242 | <Compile Include="System\Runtime\RuntimeImports.cs" />
|
242 |
| - <Compile Include="System\Runtime\RuntimeImports.Wasm.cs" Condition="'$(WasmAbi)' == 'true'" /> |
| 243 | + <Compile Include="System\Runtime\RuntimeImports.Wasm.cs" Condition="'$(TargetsWasm)' == 'true'" /> |
243 | 244 | <Compile Include="System\ModuleHandle.cs" />
|
244 | 245 | <Compile Include="System\RuntimeFieldHandle.cs" />
|
245 | 246 | <Compile Include="System\Text\StringBuilder.NativeAot.cs" />
|
|
593 | 594 | <Compile Include="$(RuntimeBasePath)System\Runtime\MethodTable.Runtime.cs">
|
594 | 595 | <Link>Runtime.Base\src\System\Runtime\MethodTable.Runtime.cs</Link>
|
595 | 596 | </Compile>
|
596 |
| - <Compile Include="$(RuntimeBasePath)System\Runtime\ExceptionHandling.cs" Condition="'$(WasmAbi)' != 'true'"> |
| 597 | + <Compile Include="$(RuntimeBasePath)System\Runtime\ExceptionHandling.cs" Condition="'$(TargetsWasm)' != 'true'"> |
597 | 598 | <Link>Runtime.Base\src\System\Runtime\ExceptionHandling.cs</Link>
|
598 | 599 | </Compile>
|
599 |
| - <Compile Include="$(RuntimeBasePath)System\Runtime\ExceptionHandling.wasm.cs" Condition="'$(WasmAbi)' == 'true'"> |
| 600 | + <Compile Include="$(RuntimeBasePath)System\Runtime\ExceptionHandling.wasm.cs" Condition="'$(TargetsWasm)' == 'true'"> |
600 | 601 | <Link>Runtime.Base\src\System\Runtime\ExceptionHandling.wasm.cs</Link>
|
601 | 602 | </Compile>
|
602 | 603 | <Compile Include="$(RuntimeBasePath)System\Runtime\InternalCalls.cs">
|
603 | 604 | <Link>Runtime.Base\src\System\Runtime\InternalCalls.cs</Link>
|
604 | 605 | </Compile>
|
605 |
| - <Compile Include="$(RuntimeBasePath)System\Runtime\InternalCalls.Wasm.cs" Condition="'$(WasmAbi)' == 'true'"> |
| 606 | + <Compile Include="$(RuntimeBasePath)System\Runtime\InternalCalls.Wasm.cs" Condition="'$(TargetsWasm)' == 'true'"> |
606 | 607 | <Link>Runtime.Base\src\System\Runtime\InternalCalls.Wasm.cs</Link>
|
607 | 608 | </Compile>
|
608 | 609 | <Compile Include="$(RuntimeBasePath)System\Runtime\RuntimeExports.cs">
|
|
622 | 623 | </Compile>
|
623 | 624 | </ItemGroup>
|
624 | 625 | <ItemGroup Condition="'$(InPlaceRuntime)' == 'true'">
|
625 |
| - <Compile Include="$(IntermediatesDir)\nativeaot\Runtime\Full\AsmOffsets.cs" Condition="'$(WasmAbi)' != 'true'" /> |
626 |
| - <Compile Include="$(IntermediatesDir.Replace('\ide', ''))\nativeaot\Runtime\Portable\AsmOffsetsPortable.cs" Condition="'$(WasmAbi)' == 'true'" /> <!-- its never in \ide\ --> |
| 626 | + <Compile Include="$(IntermediatesDir)\nativeaot\Runtime\Full\AsmOffsets.cs" Condition="'$(TargetsWasm)' != 'true'" /> |
| 627 | + <Compile Include="$(IntermediatesDir.Replace('\ide', ''))\nativeaot\Runtime\Portable\AsmOffsetsPortable.cs" Condition="'$(TargetsWasm)' == 'true'" /> <!-- its never in \ide\ --> |
627 | 628 | </ItemGroup>
|
628 | 629 |
|
629 | 630 | <Import Project="$(LibrariesProjectRoot)\System.Private.CoreLib\src\System.Private.CoreLib.Shared.projitems" Label="Shared" />
|
|
0 commit comments