Skip to content

Commit

Permalink
Added a build for .NET Standard 2.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanLamansky committed May 16, 2021
1 parent 2cdb75f commit 7338583
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion WebAssembly/WebAssembly.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<!-- .NET Core 3.1 is selected as the baseline for a good balance of compatibility and features, and is fully supported by .NET 5+. -->
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFrameworks>netcoreapp3.1;netstandard2.0</TargetFrameworks>
<Title>WebAssembly for .NET</Title>
<AssemblyTitle>WebAssembly for .NET</AssemblyTitle>
<Authors>Ryan Lamansky</Authors>
Expand Down Expand Up @@ -34,6 +34,10 @@
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="System.Reflection.Emit" Version="4.3.0" />
</ItemGroup>

<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
Expand Down

0 comments on commit 7338583

Please sign in to comment.