Git Product home page Git Product logo

Comments (3)

rladuca avatar rladuca commented on August 23, 2024 3

@ghost1372 If you multi-target your application and the first framework listed is net472, Visual Studio should allow you to use the designer. Be aware that the designer is not yet officially supported. This trick is just something that should allow you to work in the designer if you need. It may break at any time or not work properly for all scenarios and XAML content.

By multi-target, I mean add the following PropertyGroup to each csproj (or some common props file in the build):

<PropertyGroup>
    <TargetFrameworks>net472;netcoreapp3.0</TargetFrameworks>
</PropertyGroup>

You will have to have some conditionals based on TargetFramework that pull in the correct references for the net472 side. For netcoreapp3.0, the project SDK set to "Microsoft.NET.Sdk.WindowsDesktop" and the UseWPF property set to true will bring in the required binaries.

Of course, you can also have a single source tree that belongs to both a desktop and a core project. Then, simply open the XAML on the desktop project side when you need to use the designer. However, this can get unwieldy if you have multiple projects contributing to a single application.

from installer.

livarcocc avatar livarcocc commented on August 23, 2024 1

@rladuca

from installer.

ghost1372 avatar ghost1372 commented on August 23, 2024

tnx worked fine @livarcocc @rladuca

from installer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.