|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk">
|
| 2 | + |
2 | 3 | <PropertyGroup>
|
3 |
| - <TargetPlatformIdentifier>$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)'))</TargetPlatformIdentifier> |
4 |
| - <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
5 | 4 | <TargetFrameworks>$(NetCoreAppCurrent)-browser</TargetFrameworks>
|
| 5 | + <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
6 | 6 | <!-- Use following lines to write the generated files to disk. -->
|
7 | 7 | <EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
|
8 | 8 | </PropertyGroup>
|
| 9 | + |
9 | 10 | <!-- Make debugging easier -->
|
10 | 11 | <PropertyGroup Condition="'$(Configuration)' == 'Debug'">
|
11 | 12 | <WasmNativeDebugSymbols>true</WasmNativeDebugSymbols>
|
12 | 13 | <WasmNativeStrip>false</WasmNativeStrip>
|
13 | 14 | </PropertyGroup>
|
| 15 | + |
14 | 16 | <ItemGroup>
|
15 | 17 | <Compile Include="$(MSBuildThisFileDirectory)JavaScriptInterop.cs" />
|
16 | 18 | <InternalsVisibleTo Include="System.Runtime.InteropServices.JavaScript.Tests" />
|
17 | 19 | <ProjectReference Include="$(CoreLibProject)" />
|
18 |
| - <ProjectReference Include="$(LibrariesProjectRoot)System.Private.Uri\src\System.Private.Uri.csproj" PrivateAssets="all" /> |
| 20 | + <ProjectReference Include="$(LibrariesProjectRoot)System.Private.Uri\src\System.Private.Uri.csproj" /> |
19 | 21 | <ProjectReference Include="$(LibrariesProjectRoot)System.Collections\src\System.Collections.csproj" />
|
20 | 22 | <ProjectReference Include="$(LibrariesProjectRoot)System.Runtime\src\System.Runtime.csproj" />
|
21 | 23 | <ProjectReference Include="$(LibrariesProjectRoot)System.Memory\src\System.Memory.csproj" />
|
22 | 24 | <ProjectReference Include="$(LibrariesProjectRoot)System.Threading\src\System.Threading.csproj" />
|
23 | 25 | <ProjectReference Include="$(LibrariesProjectRoot)System.Threading.Thread\src\System.Threading.Thread.csproj" />
|
24 | 26 | <ProjectReference Include="$(LibrariesProjectRoot)System.Runtime.InteropServices.JavaScript\src\System.Runtime.InteropServices.JavaScript.csproj" SkipUseReferenceAssembly="true" />
|
25 | 27 | </ItemGroup>
|
| 28 | + |
26 | 29 | </Project>
|
0 commit comments