Add note about TFM for client apps

This commit is contained in:
Steve Sanderson 2018-01-03 15:40:35 +00:00
parent d3092dd787
commit 29e0d4629b
1 changed files with 5 additions and 0 deletions

View File

@ -1,6 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<!-- Currently, the MonoWASM BCL only supports netstandard2.0, not netcoreapp2.0,
so there will be an error if you reference certain types directly from this
project (e.g., StringReader). To fix this, the TFM here should be netstandard2.0,
but that is inconvenient during builds so for now it stays as this. The issue
will go away if a later MonoWASM BCL supports netcoreapp2.0 fully. -->
<TargetFramework>netcoreapp2.0</TargetFramework>
</PropertyGroup>