DrawGo.Plugin.MsBuild 1.0.2384

dotnet add package DrawGo.Plugin.MsBuild --version 1.0.2384
                    
NuGet\Install-Package DrawGo.Plugin.MsBuild -Version 1.0.2384
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DrawGo.Plugin.MsBuild" Version="1.0.2384" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DrawGo.Plugin.MsBuild" Version="1.0.2384" />
                    
Directory.Packages.props
<PackageReference Include="DrawGo.Plugin.MsBuild" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add DrawGo.Plugin.MsBuild --version 1.0.2384
                    
#r "nuget: DrawGo.Plugin.MsBuild, 1.0.2384"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=DrawGo.Plugin.MsBuild&version=1.0.2384
                    
Install as a Cake Addin
#tool nuget:?package=DrawGo.Plugin.MsBuild&version=1.0.2384
                    
Install as a Cake Tool

Extension Development

Draw & GO is developed using microkernel architecture.

The abstract class MacroCommand is located in DrawGo.Plugin.Base library.

You can create extensions for any platform (Android, MacCatalyst, Windows, Tizen, Web).

Because of iOS limitation, there is no reason to create an extension for iOS.

Draw & GO for iOS uses an embedded extension (Not loaded dynamically).

Extension example

  1. Create a .NET library project with a name ending with Extensions, and set Target Framework net8.0.
  2. Install NuGet package DrawGo.Plugin.Base.
  3. Install NuGet package DrawGo.Plugin.MSBuild.
  4. Create a new class derived from DrawGo.Plugin.Base.MacroCommand.
  5. Add DrawGo.Plugin.Base.Attributes.ExportAttribute: [Export(Name = "YOUR MacroCommand name", Category = "Desired category", Description = "Macro Command description", Platform = MacroPlatform.All)].
  6. For all input/output properties add DrawGo.Plugin.Base.Attributes.FieldAttributesAttribute: [FieldAttributes(Name = "MyProperty", Type = DataType.Number)].
  7. Build the NuGet package.

Platform Extensions

Add at the end of the "csproj" file:

<Target Name="IncludePluginsJson" AfterTargets="GeneratePluginsJson" BeforeTargets="Build">

	<ItemGroup>
		<Content Include="plugins.json">
			<CopyToOutputDirectory>Always</CopyToOutputDirectory>
		</Content>
	</ItemGroup>

</Target>
There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

  • net8.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.2384 251 3/18/2024
1.0.2382 222 3/18/2024
1.0.2363 199 2/27/2024
1.0.2346 216 2/18/2024
1.0.2311 265 1/30/2024
1.0.2309 190 1/30/2024
1.0.2307 153 1/30/2024
1.0.2305 193 1/30/2024
1.0.2284 209 1/29/2024
1.0.2278 182 1/29/2024
1.0.2267 219 1/29/2024
1.0.2265 168 1/29/2024
1.0.2259 176 1/28/2024