4
I’ve only used the line commands dotnet
, both to generate projects and to generate solutions (.sln), however I do not know if it is possible to use resource.rc
directly with dotnet
with something like:
MAINICON ICON "icon.ico"
Being with resource.rc
or other means I would like to know if this is possible to be done in . net-core, or if I will need some intermediary or something else
what is the version? somewhere I read that I was going to have it in the 3.0
– Leandro Angelo
@Leandroangelo I am in 3.1 (netcoreapp3.1)
– Guilherme Nascimento
@Itwasn'tme yes. To distribute the app with icon.
– Guilherme Nascimento
@Itwasn'tme I did not create any sln, I created the csproj, but this is irrelevant, it is the basic with net-core and not net-framework, ie use everything with line command
dotnet new ...
(https://docs.microsoft.com/pt-br/dotnet/coretools/dotnet-new?tabs=netcore22), in my casedotnet new console
, to create a "console application" and publishdotnet publish -c Release
(https://docs.microsoft.com/pt-br/dotnet/core/tools/dotnet-publish?tabs=netcore21)– Guilherme Nascimento