Project Templates getting to Marketplace for Visual Studio

Hello,

I am glad to announce that we prepared a VSIX extension for Visual Studio which will consist in the Project Templates needed to develop cool stuff for SDL Trados Studio. You can use this extension on Visual Studio 2017 or 2015, also all references were updated to Studio 5.

I attached a beta version of it, so you can try it out.

Feel free to send me feedback.

1488.SDL Trados Studio project templates for Microsoft Visual Studio.zip

Have fun developing,

Vasile Erdei

Parents Reply
  • Hi,

    The template from Marketplace will be fixed soon, in the mean time we have an workaround for this:

    1. From Nuget download Sdl.core.pluginframework.build
    2. In csproj add the following  property group:

    <PropertyGroup>

        <CreatePluginPackage>true</CreatePluginPackage>

      </PropertyGroup>

     

    (To edit the csproj :Right click on project -> Unload Project -> Edit..)

     

    3.Pluginpackage.manifest is missing: please create a xml name it pluginpackage.manifest.xml .  Paste the following in your manifest file, just change the plugin name and description as you need

     

      <?xml version="1.0" encoding="utf-8"?>

    <PluginPackage xmlns="http://www.sdl.com/Plugins/PluginPackage/1.0">

      <PlugInName>Your plugin name</PlugInName>

      <Version>1.0</Version>

      <Description>Plugin description</Description>

      <Author></Author>

      <RequiredProduct name="SDLTradosStudio" minversion="12.0" />

    </PluginPackage>

     

    1. PluginProperties.cs file is missing too (see picture attached where it should be):

    In the file copy the following:

     

    using Sdl.Core.PluginFramework;

     

    // TODO: edit the Plugin_Name string in  PluginResources.resx to change the name of your plug-in

    [assembly: Plugin("Plugin_Name")]

Children
No Data