Tungsten 1.3.0
See the version list below for details.
dotnet add package Tungsten --version 1.3.0
NuGet\Install-Package Tungsten -Version 1.3.0
<PackageReference Include="Tungsten" Version="1.3.0" />
paket add Tungsten --version 1.3.0
#r "nuget: Tungsten, 1.3.0"
// Install Tungsten as a Cake Addin
#addin nuget:?package=Tungsten&version=1.3.0
// Install Tungsten as a Cake Tool
#tool nuget:?package=Tungsten&version=1.3.0
Tungsten 1.3.0 is the last release of this package. For the latest functionality, you should reference the Tungsten version 2.X.X packages that suit your needs (Tungsten.As, Tungsten.Property, Tungsten.Net, Tungsten.Threading, etc).
Take a look at the Github project page for details on each Tungsten package.
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp1.0 netcoreapp1.1 netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard1.0 netstandard1.1 netstandard1.2 netstandard1.3 netstandard1.4 netstandard1.5 netstandard1.6 netstandard2.0 netstandard2.1 |
.NET Framework | net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen30 tizen40 tizen60 |
Universal Windows Platform | uap uap10.0 |
Windows Phone | wp8 wp81 wpa81 |
Windows Store | netcore netcore45 netcore451 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETCoreApp 1.0
- System.Runtime.Serialization.Json (>= 4.3.0)
- System.Runtime.Serialization.Xml (>= 4.3.0)
-
.NETFramework 4.5
- No dependencies.
-
.NETStandard 1.0
- NETStandard.Library (>= 1.6.1)
- System.Runtime.Serialization.Json (>= 4.3.0)
- System.Runtime.Serialization.Xml (>= 4.3.0)
-
.NETStandard 1.3
- NETStandard.Library (>= 1.6.1)
- System.Runtime.Serialization.Json (>= 4.3.0)
- System.Runtime.Serialization.Xml (>= 4.3.0)
- System.Threading.Thread (>= 4.3.0)
-
Portable Class Library (.NETFramework 4.5, Windows 8.0, WindowsPhoneApp 8.1)
- No dependencies.
-
UAP 10.0
- Microsoft.NETCore.UniversalWindowsPlatform (>= 5.1.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Tungsten:
Package | Downloads |
---|---|
Tungsten.Net.RPC
Tungsten.Net.RPC is a client/server solution for invoking methods on a server. Communications are made over the port you specify. RPC methods on the server are created by attributing classes and methods with the [RPCClass] and [RPCMethod] attributes. Clients make calls by passing in the method name ("MyNameSpace.MyClass.Method1") and any parameters to the Call method. The result of this call is an RPCHandle which can be used to wait for a response (WaitForResponse and WaitForResponse<TResponseType>). |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
3.0.6 | 363 | 3/30/2021 |
1.3.0 | 1,007 | 10/5/2017 |
1.2.7.1 | 910 | 8/11/2017 |
1.2.7 | 979 | 7/31/2017 |
1.2.6 | 1,014 | 6/22/2017 |
1.2.5 | 1,551 | 5/11/2017 |
1.2.4 | 1,959 | 5/2/2017 |
1.2.3.2 | 1,660 | 4/12/2017 |
1.2.3 | 1,520 | 4/11/2017 |
1.2.2 | 1,304 | 3/30/2017 |
1.2.1 | 841 | 3/16/2017 |
1.2.0 | 1,002 | 3/15/2017 |
1.1.3 | 1,210 | 2/28/2017 |
1.1.2 | 990 | 2/16/2017 |
1.1.1 | 882 | 2/16/2017 |
1.1.0 | 891 | 2/16/2017 |
1.0.10 | 923 | 2/9/2017 |
1.0.9 | 934 | 2/1/2017 |
1.0.8 | 935 | 1/27/2017 |
1.0.7 | 1,015 | 1/21/2017 |
1.0.6 | 924 | 1/20/2017 |
1.0.5 | 914 | 1/17/2017 |
1.0.3 | 919 | 1/12/2017 |
1.0.2 | 944 | 1/12/2017 |
1.0.1 | 1,018 | 1/11/2017 |
Added W.EventTemplate which encapsulates event creation in a template
Added W.Encryption.RSAMethods for NetStandard1_3 and NetCoreApp
Effectively rewrote W.Threading.Thread and W.Threading.Gate because they weren't working correctly
Added W.Threading.Thread.Sleep(CPUProfileEnum level)
Added overloads to W.Logging.Log.x methods which add callerName and callerLineNumber to the message
Added W.ExtensionMethods.WaitForValue extensions
Removed W.Threading.Thread.Cancel(msTimeout) because it called Abort which is the wrong place for Abort to exist