-
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
105 additions
and
50 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
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,41 @@ | ||
|
||
using System.ComponentModel; | ||
|
||
[TypeConverter(typeof(TypeConverter<RuntimeIdentifier>))] | ||
public class RuntimeIdentifier : Enumeration | ||
{ | ||
public static RuntimeIdentifier win_x64 = new() | ||
{ | ||
Value = "win-x64" | ||
}; | ||
|
||
public static RuntimeIdentifier win_arm64 = new() | ||
{ | ||
Value = "win-arm64" | ||
}; | ||
|
||
public static RuntimeIdentifier linux_x64 = new() | ||
{ | ||
Value = "linux-x64" | ||
}; | ||
|
||
public static RuntimeIdentifier linux_arm = new() | ||
{ | ||
Value = "linux-arm" | ||
}; | ||
|
||
public static RuntimeIdentifier linux_arm64 = new() | ||
{ | ||
Value = "linux-arm64" | ||
}; | ||
|
||
public static RuntimeIdentifier osx_x64 = new() | ||
{ | ||
Value = "osx-x64" | ||
}; | ||
|
||
public static RuntimeIdentifier osx_arm64 = new() | ||
{ | ||
Value = "osx-arm64" | ||
}; | ||
} |
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