openvidu-basic-dotnet: fix SERVER_PORT env variable. Upgrade to NET 7

This commit is contained in:
pabloFuente 2023-03-29 13:42:43 +02:00
parent 86162802b7
commit 7e05804a80
2 changed files with 3 additions and 2 deletions

View File

@ -6,6 +6,7 @@
}
},
"AllowedHosts": "*",
"SERVER_PORT": 5000,
"OPENVIDU_URL": "http://localhost:4443/",
"OPENVIDU_SECRET": "MY_SECRET"
}
}

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>openvidu_basic_dotnet</RootNamespace>