-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(client-dotnet): implement C# NOW-proto client #14
Conversation
b37ee5c
to
32a36e5
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great work!
namespace Devolutions.NowClient | ||
{ | ||
/// <summary> | ||
/// Batch(Windows CMD) remote execution session parameters. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/// Batch(Windows CMD) remote execution session parameters. | |
/// Batch (Windows CMD) remote execution session parameters. |
<TargetFramework>net8.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
<Platforms>Win32;x64;ARM64</Platforms> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
question: No support for Linux/macOS? Is this relying on many platform specific stuff?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No platform-specific stuff at all, I'll change Win32 to x86, accidentally selected it instead of x86 in solutions configurations via VisualStudio GUI, thanks for spotting!
namespace Devolutions.NowClient | ||
{ | ||
/// <summary> | ||
/// Powershell 7(pwsh) remote execution session parameters. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/// Powershell 7(pwsh) remote execution session parameters. | |
/// Powershell 7 and higher (pwsh) remote execution session parameters. |
Current CI error, I'll look into it Could not find 'dotnet.exe' host for the 'ARM64' architecture.
You can resolve the problem by installing the 'ARM64' .NET. |
This PR includes the following: