Skip to content

Commit

Permalink
Missing RID in targets.
Browse files Browse the repository at this point in the history
Missing packages to generate.
  • Loading branch information
wasabii committed Sep 10, 2023
1 parent 391a03d commit 75dee53
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/IKVM.Image/buildTransitive/IKVM.Image.targets
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<ItemGroup>
<IkvmImageTargetFrameworks Include="net472;net6.0" />
<IkvmImageRuntimeIdentifiers Include="win7-x64;win7-x86;linux-x64;linux-arm;linux-arm64;linux-musl-x64;linux-musl-arm;linux-musl-arm64;osx-x64;osx-arm64" />
<IkvmImageRuntimeIdentifiers Include="win7-x64;win7-x86;win-arm64;linux-x64;linux-arm;linux-arm64;linux-musl-x64;linux-musl-arm;linux-musl-arm64;osx-x64;osx-arm64" />
</ItemGroup>

<Choose>
Expand Down
9 changes: 9 additions & 0 deletions src/dist-nuget/dist-nuget.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@
<PackageProjectReference Include="..\IKVM.Image.runtime.win7-x86\IKVM.Image.runtime.win7-x86.csproj" Condition="$(_EnabledImageRuntimes.Contains(';win7-x86;'))">
<PackageTargetPath>.</PackageTargetPath>
</PackageProjectReference>
<PackageProjectReference Include="..\IKVM.Image.runtime.win-arm64\IKVM.Image.runtime.win-arm64.csproj" Condition="$(_EnabledImageRuntimes.Contains(';win-arm64;'))">
<PackageTargetPath>.</PackageTargetPath>
</PackageProjectReference>
<PackageProjectReference Include="..\IKVM.Image.runtime.linux-x64\IKVM.Image.runtime.linux-x64.csproj" Condition="$(_EnabledImageRuntimes.Contains(';linux-x64;'))">
<PackageTargetPath>.</PackageTargetPath>
</PackageProjectReference>
Expand Down Expand Up @@ -81,6 +84,9 @@
<PackageProjectReference Include="..\IKVM.Image.JRE.runtime.win7-x86\IKVM.Image.JRE.runtime.win7-x86.csproj" Condition="$(_EnabledImageRuntimes.Contains(';win7-x86;'))">
<PackageTargetPath>.</PackageTargetPath>
</PackageProjectReference>
<PackageProjectReference Include="..\IKVM.Image.JRE.runtime.win-arm64\IKVM.Image.JRE.runtime.win-arm64.csproj" Condition="$(_EnabledImageRuntimes.Contains(';win-arm64;'))">
<PackageTargetPath>.</PackageTargetPath>
</PackageProjectReference>
<PackageProjectReference Include="..\IKVM.Image.JRE.runtime.linux-x64\IKVM.Image.JRE.runtime.linux-x64.csproj" Condition="$(_EnabledImageRuntimes.Contains(';linux-x64;'))">
<PackageTargetPath>.</PackageTargetPath>
</PackageProjectReference>
Expand Down Expand Up @@ -114,6 +120,9 @@
<PackageProjectReference Include="..\IKVM.Image.JDK.runtime.win7-x86\IKVM.Image.JDK.runtime.win7-x86.csproj" Condition="$(_EnabledImageRuntimes.Contains(';win7-x86;'))">
<PackageTargetPath>.</PackageTargetPath>
</PackageProjectReference>
<PackageProjectReference Include="..\IKVM.Image.JDK.runtime.win-arm64\IKVM.Image.JDK.runtime.win-arm64.csproj" Condition="$(_EnabledImageRuntimes.Contains(';win-arm64;'))">
<PackageTargetPath>.</PackageTargetPath>
</PackageProjectReference>
<PackageProjectReference Include="..\IKVM.Image.JDK.runtime.linux-x64\IKVM.Image.JDK.runtime.linux-x64.csproj" Condition="$(_EnabledImageRuntimes.Contains(';linux-x64;'))">
<PackageTargetPath>.</PackageTargetPath>
</PackageProjectReference>
Expand Down

0 comments on commit 75dee53

Please sign in to comment.