Replies: 4 comments 2 replies
-
i remember have a singleproject tag in .csproj file, maybe you can try. |
Beta Was this translation helpful? Give feedback.
-
Single project is actually a concept of dotnet (not maui), but I haven't found any documentation yet. I think you can use <PropertyGroup>
<SingleProject>true</SingleProject> <!-- add this -->
</PropertyGroup> See also how uno platform does this on their template https://github.com/unoplatform/uno/blob/master/src/SolutionTemplate/UnoSolutionTemplate.WinUI.netcore/Mobile/UnoQuickStart.Mobile.csproj |
Beta Was this translation helpful? Give feedback.
-
All the documentation about this feature seem to be tied to MAUI; Regardless of this, Visual Studio UI to deploy to device doesn't appear when not using MAUI. Here is what I would expect:
Are there any workaround to achieve this? |
Beta Was this translation helpful? Give feedback.
-
@xtuzy I seem to be able to see the deployment UI in Visual studio when using the Using Is there any plan to make this behavior work without the need for |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I have a fairly large application with separate project for net6-windows, net6-ios and net6-android.
Is there a way to have a single project that can deploy (through VS Windows) to each of those platform without MAUI?
Currently, a project that targets both net6-ios and net6-android seem to not show any way to run on device from VS user interface (unless it is a MAUI App). It seems that this should be a feature of net6, not MAUI.
Beta Was this translation helpful? Give feedback.
All reactions