Blowin.Required
1.0.4
dotnet add package Blowin.Required --version 1.0.4
NuGet\Install-Package Blowin.Required -Version 1.0.4
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="Blowin.Required" Version="1.0.4"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> </PackageReference>
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Blowin.Required --version 1.0.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Blowin.Required, 1.0.4"
#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 Blowin.Required as a Cake Addin #addin nuget:?package=Blowin.Required&version=1.0.4 // Install Blowin.Required as a Cake Tool #tool nuget:?package=Blowin.Required&version=1.0.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Blowin.Required
Implementation of proposal 'Required Properties' https://github.com/dotnet/csharplang/issues/3630
Add required attribute to property and enjoy 😃
public class Person
{
public string Name { get; set; }
[Required]
public int Age { get; set; }
}
You can use DataAnnotation, or any attribute with name Required
Support diagnostics:
- Required property must be initialized (initializer)
- Type can't be used as generic parameter with new() restriction
- If constructor initialization of required property, it should be initialized in any execution path
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.
Implementation of proposal 'Required Properties'
https://github.com/dotnet/csharplang/issues/3630
Add required attribute to property and enjoy :)