-
Notifications
You must be signed in to change notification settings - Fork 742
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(net9): Allow for builds to happen even if a RID is explicitly set
- Loading branch information
1 parent
7135b26
commit 840a5a7
Showing
3 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
|
||
<!-- | ||
This file recreates the targets from NuGet.target that are needed when | ||
building with `-r` to specify a RID. In this case, inclusion conditions in the | ||
WebAssembly SDK do not include any of the nuget targets, causing the restore | ||
to fail. Those targets are intentionally empty to keep the restore going. | ||
--> | ||
|
||
<Target Name="_GetRestoreSettingsPerFramework" /> | ||
|
||
<Target Name="GetAllRuntimeIdentifiers" | ||
Returns="browser-wasm" /> | ||
|
||
<Target Name="_GenerateProjectRestoreGraphPerFramework" /> | ||
|
||
</Project> |