! 휘백
! 휘백
CC#
Created by ! 휘백 on 4/22/2024 in #help
What is right rider blazor wasm hot reload profile?
{
"profiles": {
"BlazorWasmHotReload": {
"commandName": "Executable",
"executablePath": "dotnet",
"commandLineArgs": "watch run",
"workingDirectory": "$(ProjectDir)",
"launchBrowser": true,
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
}
{
"profiles": {
"BlazorWasmHotReload": {
"commandName": "Executable",
"executablePath": "dotnet",
"commandLineArgs": "watch run",
"workingDirectory": "$(ProjectDir)",
"launchBrowser": true,
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
}
I wrote profile like this. and ran. but the console said:
{
"profiles": {
"BlazorWasmHotReload": {
"commandName": "Executable",
"executablePath": "dotnet",
"commandLineArgs": "watch run",
"workingDirectory": "$(ProjectDir)",
"launchBrowser": true,
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
}
{
"profiles": {
"BlazorWasmHotReload": {
"commandName": "Executable",
"executablePath": "dotnet",
"commandLineArgs": "watch run",
"workingDirectory": "$(ProjectDir)",
"launchBrowser": true,
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
}
now, I want that profile work. but how to?
13 replies
CC#
Created by ! 휘백 on 4/21/2024 in #help
How to make custom file extension and encrypt?
I want : 1. write file that has my own file extension (example : .hwi) zip file 2. file format is zip file 3. but if user open that file with other zip program, that file crashed. but if user open that file with my program, that file will open successful I try : 1. using chat GPT - fail 2. search C# how to make custom file extension? - fail
6 replies
CC#
Created by ! 휘백 on 4/18/2024 in #help
how to make graph view in maui?
No description
11 replies
CC#
Created by ! 휘백 on 12/30/2023 in #help
Can this be implemented?
Hello, I'd like to implement an interface that meets the following conditions. Is it possible?
1. that interface can inherited class that inherit class A.
2. that interface cannot inherited class that inherit interface B.
1. that interface can inherited class that inherit class A.
2. that interface cannot inherited class that inherit interface B.
29 replies
CC#
Created by ! 휘백 on 12/1/2023 in #help
Different design in maui
Hello, I am developing a cross-platform program using MAUI. By the way, I want to apply a different design for each mobile/desktop, what should I do?
18 replies
CC#
Created by ! 휘백 on 11/23/2023 in #help
✅ NETSDK1082 is blocking me
hi, I'm making cross-platform application. but, when I building web api, this error blocking me. it say :
error NETSDK1082: There was no runtime pack for Microsoft.AspNetCore.App available for the specified RuntimeIdentifier 'browser-wasm'.
error NETSDK1082: There was no runtime pack for Microsoft.AspNetCore.App available for the specified RuntimeIdentifier 'browser-wasm'.
and this is error part in Microsoft.NET.Sdk.FrameworkReferenceResolution.targets.
<ResolveRuntimePackAssets FrameworkReferences="@(FrameworkReference)"
ResolvedRuntimePacks="@(ResolvedRuntimePack)"
UnavailableRuntimePacks="@(UnavailableRuntimePack)"
SatelliteResourceLanguages="$(SatelliteResourceLanguages)"
DesignTimeBuild="$(DesignTimeBuild)"
DisableTransitiveFrameworkReferenceDownloads="$(DisableTransitiveFrameworkReferenceDownloads)">
<Output TaskParameter="RuntimePackAssets" ItemName="RuntimePackAsset" />
</ResolveRuntimePackAssets>
<ResolveRuntimePackAssets FrameworkReferences="@(FrameworkReference)"
ResolvedRuntimePacks="@(ResolvedRuntimePack)"
UnavailableRuntimePacks="@(UnavailableRuntimePack)"
SatelliteResourceLanguages="$(SatelliteResourceLanguages)"
DesignTimeBuild="$(DesignTimeBuild)"
DisableTransitiveFrameworkReferenceDownloads="$(DisableTransitiveFrameworkReferenceDownloads)">
<Output TaskParameter="RuntimePackAssets" ItemName="RuntimePackAsset" />
</ResolveRuntimePackAssets>
then, how to solve it?
7 replies
CC#
Created by ! 휘백 on 11/22/2023 in #help
✅ I can't use "Console" class
No description
117 replies