You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo -e "\\033[32mEnvironment variable 'NetDaemon__ApplicationAssembly' has not been set. Starting pre-built NetDaemon runtime instead...\\033[0m">&2
12
12
cd"${daemondir}"||exit 1
13
13
exec dotnet NetDaemon.Host.Default.dll
14
14
else
@@ -18,7 +18,7 @@ else
18
18
fi
19
19
20
20
if [[ "${NetDaemon__ApplicationAssembly}"!=*".dll" ]];then
21
-
echo -e "\\033[31mAssembly needs to point to a .dll file!\\033[0m">&2
21
+
echo -e "\\033[31mEnvironment variable 'NetDaemon__ApplicationAssembly' needs to reference a .dll file!\\033[0m">&2
22
22
exit 1
23
23
fi
24
24
@@ -30,7 +30,7 @@ else
30
30
31
31
# The provided application source is ether a project or pre-compiled .Net application
32
32
if [[ !-f"${NetDaemon__ApplicationAssembly}" ]];then
33
-
echo -e "\\033[31mThe assembly ${NetDaemon__ApplicationAssembly} cannot be found. Please check the settings.\\033[0m">&2
33
+
echo -e "\\033[31mThe assembly ${NetDaemon__ApplicationAssembly} cannot be found. Please check the 'NetDaemon__ApplicationAssembly' environment variable, it should reference your published NetDaemon application assembly.\\033[0m">&2
0 commit comments