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:
parent
1f5116addf
commit
e2e535d510
3 changed files with 3 additions and 3 deletions
|
@ -6,7 +6,7 @@
|
|||
<Version>$(HostVersion)</Version>
|
||||
<SkipPackageFileCheck>true</SkipPackageFileCheck>
|
||||
<SkipValidatePackage>true</SkipValidatePackage>
|
||||
<PackagePlatforms>x64;x86</PackagePlatforms>
|
||||
<PackagePlatforms>x64;x86;</PackagePlatforms>
|
||||
<OutputPath>$(PackagesOutputPath)</OutputPath>
|
||||
<IncludeRuntimeJson>true</IncludeRuntimeJson>
|
||||
</PropertyGroup>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
<Version>$(HostPolicyVersion)</Version>
|
||||
<SkipPackageFileCheck>true</SkipPackageFileCheck>
|
||||
<SkipValidatePackage>true</SkipValidatePackage>
|
||||
<PackagePlatforms>x64;x86</PackagePlatforms>
|
||||
<PackagePlatforms>x64;x86;</PackagePlatforms>
|
||||
<OutputPath>$(PackagesOutputPath)</OutputPath>
|
||||
<IncludeRuntimeJson>true</IncludeRuntimeJson>
|
||||
</PropertyGroup>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
<Version>$(HostResolverVersion)</Version>
|
||||
<SkipPackageFileCheck>true</SkipPackageFileCheck>
|
||||
<SkipValidatePackage>true</SkipValidatePackage>
|
||||
<PackagePlatforms>x64;x86</PackagePlatforms>
|
||||
<PackagePlatforms>x64;x86;</PackagePlatforms>
|
||||
<OutputPath>$(PackagesOutputPath)</OutputPath>
|
||||
<IncludeRuntimeJson>true</IncludeRuntimeJson>
|
||||
</PropertyGroup>
|
||||
|
|
Loading…
Add table
Reference in a new issue