Skip to content

Commit

Permalink
moved Hyperion back to .NET 4.5 (#141)
Browse files Browse the repository at this point in the history
need to do this in order to release a patch that will allow us to run Hyperion in .NET Core 3.0 on Akka.NET v1.3.*
  • Loading branch information
Aaronontheweb committed Nov 13, 2019
1 parent 7540c03 commit 4d7356f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Hyperion/Hyperion.csproj
Expand Up @@ -4,7 +4,7 @@
<PropertyGroup>
<AssemblyTitle>Hyperion</AssemblyTitle>
<Description>Hyperion, fast binary POCO serializer</Description>
<TargetFrameworks>netstandard1.6;netstandard2.0;net452</TargetFrameworks>
<TargetFrameworks>netstandard1.6;netstandard2.0;net45</TargetFrameworks>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PackageTags>serialization;poco</PackageTags>
</PropertyGroup>
Expand All @@ -19,7 +19,7 @@
<PackageReference Include="Microsoft.CSharp" Version="4.6.0" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net452' ">
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
<Reference Include="System" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>
Expand All @@ -33,7 +33,7 @@
<DefineConstants>$(DefineConstants);NETSTANDARD20</DefineConstants>
</PropertyGroup>

<PropertyGroup Condition=" '$(TargetFramework)' == 'net452' ">
<PropertyGroup Condition=" '$(TargetFramework)' == 'net45' ">
<DefineConstants>$(DefineConstants);SERIALIZATION;UNSAFE;NET45</DefineConstants>
</PropertyGroup>

Expand Down

0 comments on commit 4d7356f

Please sign in to comment.