CodeFactorySDK 1.22320.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package CodeFactorySDK --version 1.22320.1
NuGet\Install-Package CodeFactorySDK -Version 1.22320.1
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="CodeFactorySDK" Version="1.22320.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CodeFactorySDK --version 1.22320.1
#r "nuget: CodeFactorySDK, 1.22320.1"
#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.
// Install CodeFactorySDK as a Cake Addin
#addin nuget:?package=CodeFactorySDK&version=1.22320.1

// Install CodeFactorySDK as a Cake Tool
#tool nuget:?package=CodeFactorySDK&version=1.22320.1

Software factory automation library used with the CodeFactory for Visual Studio.

Product Compatible and additional computed target framework versions.
.NET Framework net472 is compatible.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (14)

Showing the top 5 NuGet packages that depend on CodeFactorySDK:

Package Downloads
CodeFactory.Formatting.CSharp

Extension libraries that provide formatters for code factory models to C#

CodeFactory.ADK

Automation development kit that builds on top of CodeFactory to simplify common automation tasks.

CommonDeliveryFramework.Net.Automation.Common

Common automation extensions used with CommonDeliveryFramework.

SoftwareFactoryExtensions.Formatting.CSharp

Extension libraries that provide formatters for code factory models to C#

CodeFactoryExtensions

Extension libraries the provide common extensibility for developers using the CodeFactory SDK.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.23053.1 273 3/2/2023
1.23050.2 222 2/20/2023
1.23044.1 226 2/13/2023
1.22339.1 355 12/5/2022
1.22320.1 314 11/16/2022
1.21085.1 936 3/26/2021
1.21068.1 477 3/10/2021
1.0.202301 817 8/18/2020
1.0.202021 906 7/21/2020
1.0.201881 396 7/6/2020
1.0.201381 443 5/17/2020
1.0.200701 464 3/10/2020
0.90.200551 464 2/24/2020
0.90.20041 432 2/10/2020

SDK Update for CodeFactory 1.22320.1
     
     This release of the SDK focuses on the following.
 - Have updated the injection process of code into files. You no longer have to provide the file path, framework determines this.
     - Have added an overload to AddBeforeAsync functionality to allow you to add directly before the definition of the model ignoring xml documentation.
     - LookupModel is now obsolete use GetModel now.
 - Added GetModel[T] this allows to set the target type to return instead of having to cast to directly.
 - CodeFactory.Formatting.CSharp has been moved into the SDK.
 - NamespaceManager in formatting now supports adding additional using statements after the manager has been loaded.
 - CsManualUsingStatement has been added to formatting to allow adding customizing using statements to the namespace manager.
     - Can now directly control code documentation from the SDK. Added the following code management methods to control documentation.
       - AddBeforeDocsAsync - Add source code content before XML documentation.
       - AddAfterDocsAsync - Add source code content after XML documentation.
       - ReplaceDocsAsync - Replaces the XML documentation.
       - DeleteDocsAsync - Deletes the XML documentation.
     - CsProperty mode has added the following capabilities.
   - GetMethod property has been added to give you direct access to the get accessor and all the code management functions of the method.
       - SetMethod property has been added to give you direct access to the set accessor and all the code management functions of the method.
     - CsEnum mode has added the following capabilities
       - Can now inject code at the beginning of the Enum body.
       - Can now inject code at the end of the Enum body.
       - Can now get the source location of the contents of the Enum body.
     - CsContainer Types (Class,Interface, Structure) now support nested type definitions, this includes the following.
       - Class,Interface, Structure, and Enums can be nested in the above container types.
     - CSMethod now provide partial support in definition which includes the following.
       - Method Partial Definition - The capture of the definition of a partial method.
       - Method Partial Implementation - The capture of the implementation of a partial method.
       - When getting the list of methods you will get two instance models now. One for the definition and second for the implementation.
       - CsMethodType has added two additional enums PartialDefinition and PartialImplementation.
     - XML Documentation for all models is directly captured from source code so the raw documentation is provided. This includes the following.
       - Partial implementations will provide the target xml documentation that was provided.
     If documentation was provided in each partial file it will grab the target file the model generation was requested from.
     - All C# Models now have a ModelSourceFile property that identifies the source code file the model was generated from.
     - Fixed an issue with the Visual Studio packager not able to process project paths that had spaces in the path.
     - Packager now injects the target platform and SDK version information directly into assemblies during the build of CodeFactory automation.
       This is used to confirm the library is supported by the runtime.