Framework deployment

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Landley

    Framework deployment

    Hello All,

    How can create a setup package that detects whether the framework is
    installed and installs it if not present?

    Landley


  • Ben Solomon

    #2
    RE: Framework deployment

    I can't confirm this but any setup project I ever worked with recently
    does that "automatica lly" based on the project type you're providing
    it when the project is created (in this case a .NET project so it
    knows to put it on the target machine only if the framework isn't present).
    That's one of the things set projects do for you.

    I'm assuming that you're not creating you setup/install "manually"
    using MSI but creating a setup project within .NET.



    "Landley" wrote:
    [color=blue]
    > Hello All,
    >
    > How can create a setup package that detects whether the framework is
    > installed and installs it if not present?
    >
    > Landley
    >
    >
    >[/color]

    Comment

    • Herfried K. Wagner [MVP]

      #3
      Re: Framework deployment

      "Landley" <news@creatio ns-software.co.uk> schrieb:[color=blue]
      > How can create a setup package that detects whether the framework is
      > installed and installs it if not present?[/color]

      Deploying the .NET Framework in a setup package
      <URL:http://dotnet.mvps.org/dotnet/faqs/?id=deployframe work&lang=en>

      --
      M S Herfried K. Wagner
      M V P <URL:http://dotnet.mvps.org/>
      V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

      Comment

      • Ben Solomon

        #4
        Re: Framework deployment

        Open up VS .NET.
        Select New Project
        Select "Setup & Deployment Project"
        Select the Setup project type based on the project you just developed

        Fill in the blanks....



        "Herfried K. Wagner [MVP]" wrote:
        [color=blue]
        > "Landley" <news@creatio ns-software.co.uk> schrieb:[color=green]
        > > How can create a setup package that detects whether the framework is
        > > installed and installs it if not present?[/color]
        >
        > Deploying the .NET Framework in a setup package
        > <URL:http://dotnet.mvps.org/dotnet/faqs/?id=deployframe work&lang=en>
        >
        > --
        > M S Herfried K. Wagner
        > M V P <URL:http://dotnet.mvps.org/>
        > V B <URL:http://dotnet.mvps.org/dotnet/faqs/>
        >[/color]

        Comment

        Working...