Fix x86 nuget package building. The non-runtime packages weren't being built on x86. The check looks for arch;. The semi-colon always needs to be after each architecture.

This commit is contained in:
Eric Erhardt 2016-04-07 18:22:53 -05:00
parent 1f5116addf
commit e2e535d510
3 changed files with 3 additions and 3 deletions

View file

@ -6,7 +6,7 @@
<Version>$(HostVersion)</Version> <Version>$(HostVersion)</Version>
<SkipPackageFileCheck>true</SkipPackageFileCheck> <SkipPackageFileCheck>true</SkipPackageFileCheck>
<SkipValidatePackage>true</SkipValidatePackage> <SkipValidatePackage>true</SkipValidatePackage>
<PackagePlatforms>x64;x86</PackagePlatforms> <PackagePlatforms>x64;x86;</PackagePlatforms>
<OutputPath>$(PackagesOutputPath)</OutputPath> <OutputPath>$(PackagesOutputPath)</OutputPath>
<IncludeRuntimeJson>true</IncludeRuntimeJson> <IncludeRuntimeJson>true</IncludeRuntimeJson>
</PropertyGroup> </PropertyGroup>

View file

@ -6,7 +6,7 @@
<Version>$(HostPolicyVersion)</Version> <Version>$(HostPolicyVersion)</Version>
<SkipPackageFileCheck>true</SkipPackageFileCheck> <SkipPackageFileCheck>true</SkipPackageFileCheck>
<SkipValidatePackage>true</SkipValidatePackage> <SkipValidatePackage>true</SkipValidatePackage>
<PackagePlatforms>x64;x86</PackagePlatforms> <PackagePlatforms>x64;x86;</PackagePlatforms>
<OutputPath>$(PackagesOutputPath)</OutputPath> <OutputPath>$(PackagesOutputPath)</OutputPath>
<IncludeRuntimeJson>true</IncludeRuntimeJson> <IncludeRuntimeJson>true</IncludeRuntimeJson>
</PropertyGroup> </PropertyGroup>

View file

@ -6,7 +6,7 @@
<Version>$(HostResolverVersion)</Version> <Version>$(HostResolverVersion)</Version>
<SkipPackageFileCheck>true</SkipPackageFileCheck> <SkipPackageFileCheck>true</SkipPackageFileCheck>
<SkipValidatePackage>true</SkipValidatePackage> <SkipValidatePackage>true</SkipValidatePackage>
<PackagePlatforms>x64;x86</PackagePlatforms> <PackagePlatforms>x64;x86;</PackagePlatforms>
<OutputPath>$(PackagesOutputPath)</OutputPath> <OutputPath>$(PackagesOutputPath)</OutputPath>
<IncludeRuntimeJson>true</IncludeRuntimeJson> <IncludeRuntimeJson>true</IncludeRuntimeJson>
</PropertyGroup> </PropertyGroup>