Show / Hide Table of Contents

    DulcisX Installation

    Supported Platforms

    DulcisX targets .Net Framework 4.8, that means that all projects which use this package need to target .Net Framework 4.8 as well. Unfortunately the VSIX Project template targets .Net Framework 4.7.2, therefor you will need to change that.

    • Editing the .csproj properties page
    • Editing the .csproj file
    1. Right click the Project file and click on 'Properties'

      Step 1

    2. Select the 'Application' tab

    3. Change the 'Target Framework' to .Net Framework 4.8. If you don't see that option, you can install it from here.

      Step 3

    1. Open the .csproj file

    2. Change <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion> to <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>

    3. Save

      <!-- The following content might differ to yours. -->
      
      <?xml version="1.0" encoding="utf-8"?>
      <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
        <!--...-->
        <PropertyGroup>
          <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
          <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
          <SchemaVersion>2.0</SchemaVersion>
          <ProjectTypeGuids><!--Your Guid--></ProjectTypeGuids>
          <ProjectGuid><!--Your Guid--></ProjectGuid>
          <OutputType>Library</OutputType>
          <AppDesignerFolder>Properties</AppDesignerFolder>
          <RootNamespace><!--Your Name--></RootNamespace>
          <AssemblyName><!--Your Name--></AssemblyName>
          
          <!--Change this:-->
          <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
          
          <!--To This:-->
          <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
          
          <GeneratePkgDefFile>true</GeneratePkgDefFile>
          <UseCodebase>true</UseCodebase>
          <IncludeAssemblyInVSIXContainer>true</IncludeAssemblyInVSIXContainer>
          <IncludeDebugSymbolsInVSIXContainer>false</IncludeDebugSymbolsInVSIXContainer>
          <IncludeDebugSymbolsInLocalVSIXDeployment>false</IncludeDebugSymbolsInLocalVSIXDeployment>
          <CopyBuildOutputToOutputDirectory>true</CopyBuildOutputToOutputDirectory>
          <CopyOutputSymbolsToOutputDirectory>true</CopyOutputSymbolsToOutputDirectory>
          <StartAction>Program</StartAction>
          <StartProgram Condition="'$(DevEnvDir)' != ''">$(DevEnvDir)devenv.exe</StartProgram>
          <StartArguments>/rootsuffix Exp</StartArguments>
        </PropertyGroup>
        <!--...-->
      </Project>
      

    Installation from NuGet

    DulcisX is distributed through the official NuGet feed as a lot of the other packages, which makes its install as easy as its get.

    Warning

    For now DuclisX is published under the pre-release tag and might still contain bugs or other issues, if you encounter something please create an issue over on GitHub.

    • Using Visual Studio
    • Using the Nuget Package Manager
    1. Right click on 'References', and select 'Manage NuGet packages'

      Step 1

    2. Check the 'include prerelease' checkbox

    3. In the "Browse" tab, search for DulcisX

    4. Click install.

      Step 2

    1. Click on 'Tools', 'Nuget Package Manager' and 'Package Manager Console'
    2. Enter Install-Package DulcisX

    Theme

    • Improve this Doc
    Back to top Copyright © 2020 Twenty