Net35.Actions 1.4.0.2

dotnet add package Net35.Actions --version 1.4.0.2
                    
NuGet\Install-Package Net35.Actions -Version 1.4.0.2
                    
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="Net35.Actions" Version="1.4.0.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Net35.Actions" Version="1.4.0.2" />
                    
Directory.Packages.props
<PackageReference Include="Net35.Actions" />
                    
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 Net35.Actions --version 1.4.0.2
                    
#r "nuget: Net35.Actions, 1.4.0.2"
                    
#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.
#:package Net35.Actions@1.4.0.2
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Net35.Actions&version=1.4.0.2
                    
Install as a Cake Addin
#tool nuget:?package=Net35.Actions&version=1.4.0.2
                    
Install as a Cake Tool

Net35.Actions

A small, portable library that provides action/delegate related utilities and helpers for multiple .NET target frameworks, including older frameworks such as .NET 2.0/3.5 and modern netstandard2.0.

This repository builds the Net35.Actions library for several TFMs so it can be used from legacy applications as well as newer projects.

Supported frameworks

  • .NET Standard 2.0
  • .NET Framework 4.5
  • .NET Framework 4.0
  • .NET Framework 3.5
  • .NET Framework 3.0
  • .NET Framework 2.0

Purpose

The goal of this project is to provide lightweight helper types and extension methods that make it easier to work with Action, delegates and small task-like patterns across a wide range of .NET framework versions.

This is especially useful when maintaining or porting older code bases that require compatibility with older TFMs while still wanting small, tested helpers.

Building from source

  • Open the solution or the Net35.Actions project in Visual Studio (the multi-targeting project includes conditional compilation for older TFMs).
  • Build the project using Visual Studio or use msbuild for older framework builds. For netstandard2.0 you can also use dotnet build.

Examples:

  • Visual Studio: File → Open → Project/Solution, then Build Solution
  • Command line (modern SDK): dotnet build (targets netstandard2.0)
  • Command line (MSBuild): msbuild /p:Configuration=Release (for legacy TFMs)

Note: Building older TFMs may require older developer packs/targeting packs installed on the machine.

Usage

Add the project as a project reference in your solution or reference the compiled assembly from your project.

Then import the library namespace and use the available helpers. Example:

// Example usage (namespace and APIs may vary depending on what parts of the library you need)
using Net35.Actions;

// ... use helpers provided by the library ...

If the project is published as a NuGet package (check the package feed or releases in the repository), you can install it via NuGet and consume it like any other package.

Tests

If unit tests exist in the repository, run them using your test runner of choice. For older TFMs, use a compatible test runner/version.

Contributing

Contributions are welcome. Please follow these guidelines:

  • Open an issue to discuss any major changes or feature requests before implementing them.
  • Keep changes small and focused and include unit tests where appropriate.
  • Ensure the library still builds for the supported TFMs or update the README if a TFM is intentionally dropped.

License

This project is licensed under the Apache-2.0 license. See the LICENSE.txt file for details.

Contact / Source

This repository is maintained in this workspace. For more information or to report issues, open an issue in the source repository.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net20 is compatible.  net30 is compatible.  net35 is compatible.  net40 is compatible.  net403 was computed.  net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 2.0

    • No dependencies.
  • .NETFramework 3.0

    • No dependencies.
  • .NETFramework 3.5

    • No dependencies.
  • .NETFramework 4.0

    • No dependencies.
  • .NETFramework 4.5

    • No dependencies.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages (16)

Showing the top 5 NuGet packages that depend on Net35.Actions:

Package Downloads
Net30.LinqBridge

Package Description

Net4x.BaseTypes

Package Description

Net4x.ValueTuple

Package Description

Net35.Threading.Tasks

The Mono port of the Task Parallel Library ported to .NET 3.5

Net4x.FluentValidation.DependencyInjectionExtensions

Dependency injection extensions for FluentValidation

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.4.0.2 2,467 12/30/2025
1.4.0.1 6,658 11/30/2025
1.4.0 29,054 3/31/2025
1.1.0 52,087 8/26/2023
1.1.0-at20230430033601 9,624 5/7/2023
1.0.0-at20230415034658 4,851 4/15/2023
1.0.0-at20230411060031 15,529 4/14/2023
1.0.0-at20230410034725 244 4/10/2023
1.0.0-at20230409090642 359 4/9/2023
1.0.0-at20230409083400 335 4/9/2023
1.0.0-at20230408 314 4/8/2023