Harsh Agarwal
New Member
- Joined
- Jul 25, 2024
- Messages
- 4
- Thread Author
- #1
I am using the following command to publish a MAUI application.
dotnet publish -f net7.0-windows10.0.19041.0 -p:RuntimeIdentifierOverride=win10-x64 -p:WindowsPackageType=None -p:WindowsAppSDKSelfContained=true -p:Version=${appVersion} --configuration ${environmentMap[env]}
This is working fine for dotnet 7 but nor for dotnet 8. When i build with dotnet v8 then build is successfull but on the system where dotnet is not already installed. It is showing it needs dotnet that means the self contained behavipur is not working fine.
Do we have any solution for this ?
dotnet publish -f net7.0-windows10.0.19041.0 -p:RuntimeIdentifierOverride=win10-x64 -p:WindowsPackageType=None -p:WindowsAppSDKSelfContained=true -p:Version=${appVersion} --configuration ${environmentMap[env]}
This is working fine for dotnet 7 but nor for dotnet 8. When i build with dotnet v8 then build is successfull but on the system where dotnet is not already installed. It is showing it needs dotnet that means the self contained behavipur is not working fine.
Do we have any solution for this ?