Skip to content

Commit 5227a57

Browse files
committed
x64 issue
1 parent 3492742 commit 5227a57

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
environment:
2-
PKG_VERSION: 1.3.0
2+
PKG_VERSION: 1.3.1
33
VERSION_SUFFIX: ""
44
version: ${PKG_VERSION}-{build}
55
configuration: Release
@@ -37,7 +37,7 @@ init:
3737
#- git submodule update --init --recursive
3838

3939
before_build:
40-
- appveyor-retry dotnet restore -v Minimal --runtime win10-x64
40+
- appveyor-retry dotnet restore -v Minimal
4141

4242
build_script:
4343
- ps: |

src/BinaryEncoding/BinaryEncoding.csproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFrameworks>netstandard1.6;net461</TargetFrameworks>
5+
<RuntimeIdentifiers>win-x64;win-x86;osx-x64;osx-x86;ubuntu-x64;ubuntu-x86</RuntimeIdentifiers>
56
<DebugType>full</DebugType>
67
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
78
<DefineConstants>$(DefineConstants);UNSAFE</DefineConstants>
@@ -15,7 +16,9 @@
1516
<releaseNotes></releaseNotes>
1617
<copyright>Copyright 2017</copyright>
1718
<PackageTags>Binary Encoding BigEndian LittleEndian Varint</PackageTags>
18-
<VersionPrefix>1.3.0</VersionPrefix>
19+
<VersionPrefix>1.3.1</VersionPrefix>
20+
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
21+
<PackageTargetFallback Condition=" '$(TargetFramework)' == 'net461' ">$(PackageTargetFallback);netstandard;portable-net461+win8</PackageTargetFallback>
1922
</PropertyGroup>
2023

2124
</Project>

0 commit comments

Comments
 (0)