stidgen 0.4.0

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

// Install stidgen as a Cake Tool
#tool nuget:?package=stidgen&version=0.4.0

Strongly Typed ID type Generator

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has 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.2.1 374 4/17/2021
1.1.0 955 8/17/2018
1.0.0 2,974 5/5/2017
0.5.3 1,580 2/26/2016
0.5.1 1,433 10/15/2015
0.5.0 1,185 9/21/2015
0.4.0 1,134 9/9/2015
0.3.0 1,258 6/3/2015
0.2.0 1,028 6/2/2015
0.1.1 1,027 6/2/2015
0.1.0 1,114 6/2/2015

Static methods `Parse` and `TryParse` are lifted.
A variant of `TryParse` returning a nullable instead of using an out
parameter is generated if TryParse exists.
Types can now be placed in the same file and the default is to place them
all in a file named as the .stidgen file but with a .Generated.cs extension.
The previous behavior is available by specifying `UseNameAsFileName: true`.
Added a more complete set of unit tests.
Multiple files can now be passed to the command line.
The command line now support globs like `**\*.stidgen`.
Generated files and types are now shown on the console.
BUGFIX: Generic underlying types weren't correctly handled, the name was
the FullName of the Type instead of C# code.
BUGFIX: Casts to and from nullable were still generated for Nullable&lt;T&gt;
underlying resulting in invalid code.
BUGFIX: `EqualsUnderlying: true` generated code for `.Equals` but didn't
generate the == and != operators.