Skip to content

Commit 03235e4

Browse files
committed
anycpu?
1 parent 5227a57 commit 03235e4

2 files changed

Lines changed: 10 additions & 3 deletions

File tree

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
environment:
2-
PKG_VERSION: 1.3.1
2+
PKG_VERSION: 1.3.2
33
VERSION_SUFFIX: ""
44
version: ${PKG_VERSION}-{build}
55
configuration: Release

src/BinaryEncoding/BinaryEncoding.csproj

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
<PropertyGroup>
44
<TargetFrameworks>netstandard1.6;net461</TargetFrameworks>
5-
<RuntimeIdentifiers>win-x64;win-x86;osx-x64;osx-x86;ubuntu-x64;ubuntu-x86</RuntimeIdentifiers>
65
<DebugType>full</DebugType>
76
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
87
<DefineConstants>$(DefineConstants);UNSAFE</DefineConstants>
@@ -16,9 +15,17 @@
1615
<releaseNotes></releaseNotes>
1716
<copyright>Copyright 2017</copyright>
1817
<PackageTags>Binary Encoding BigEndian LittleEndian Varint</PackageTags>
19-
<VersionPrefix>1.3.1</VersionPrefix>
18+
<VersionPrefix>1.3.2</VersionPrefix>
2019
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
2120
<PackageTargetFallback Condition=" '$(TargetFramework)' == 'net461' ">$(PackageTargetFallback);netstandard;portable-net461+win8</PackageTargetFallback>
21+
<Platform>AnyCPU</Platform>
22+
<OutputType>Library</OutputType>
2223
</PropertyGroup>
2324

25+
<ItemGroup Condition="'$(TargetFramework)' == 'net461'">
26+
<PackageReference Include="NETStandard.Library" Version="1.6.1" />
27+
<Reference Include="System" />
28+
<Reference Include="Microsoft.CSharp" />
29+
</ItemGroup>
30+
2431
</Project>

0 commit comments

Comments
 (0)