Framework Update
A few changes, mostly to update the .NET framework version.
This commit is contained in:
parent
073deb3b00
commit
e4bb89c957
@ -23,18 +23,21 @@ public class SocketServerController : ControllerBase
|
||||
public IActionResult Get()
|
||||
{
|
||||
ServerRow sr = Tables.Server.ReadRow(Server.ID.CreateParameter(0));
|
||||
return this.ResponseToResult(new ServerInfoJson()
|
||||
ServerInfoJson si = new ServerInfoJson()
|
||||
{
|
||||
wssv4 = (Luski.Config.IPv4_Overode_WSS is null ? $"{(Luski.Config.IPv4SecureWSS ? "wss" : "ws" )}://{Luski.Config.IPv4WSS}:{Luski.Config.IPv4PortWSS}{Luski.Config.IPv4_URL_WSS}/v1" : Luski.Config.IPv4_Overode_WSS + "v1"),
|
||||
wssv4 = (Luski.Config.IPv4_Overode_WSS is null
|
||||
? $"{(Luski.Config.IPv4SecureWSS ? "wss" : "ws")}://{Luski.Config.IPv4WSS}:{Luski.Config.IPv4PortWSS}{Luski.Config.IPv4_URL_WSS}v1"
|
||||
: Luski.Config.IPv4_Overode_WSS + "v1"),
|
||||
name = sr.Name,
|
||||
description = sr.Description,
|
||||
owner = sr.Owner
|
||||
});
|
||||
};
|
||||
return this.ResponseToResult(si);
|
||||
}
|
||||
|
||||
[HttpGet]
|
||||
[Produces(MediaTypeNames.Application.Json)]
|
||||
[Route(Luski.Info.Routes.Default.Base)]
|
||||
[Route(Luski.Info.Routes.Default.Base + "/servercom")]
|
||||
public IActionResult ServerConnect([FromHeader(Name = "key")]string Key)
|
||||
{
|
||||
byte[] data = Convert.FromBase64String(Key);
|
||||
|
@ -1,7 +1,7 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<IncludeBuildOutput>true</IncludeBuildOutput>
|
||||
|
Loading…
Reference in New Issue
Block a user