17 lines
627 B
XML
17 lines
627 B
XML
<Project Sdk="Microsoft.NET.Sdk.Razor/2.1.0-preview2-30230">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<!-- Local alternative to <PackageReference Include="Microsoft.AspNetCore.Blazor.Build" /> -->
|
|
<Import Project="..\..\src\Microsoft.AspNetCore.Blazor.Build\ReferenceFromSource.props" />
|
|
|
|
<ItemGroup>
|
|
<!-- Share the WebAssembly.Runtime.cs source here so we get access to the same interop externs -->
|
|
<Compile Include="..\..\src\Microsoft.AspNetCore.Blazor.Browser\Interop\WebAssembly.Runtime.cs" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|