Like this question from the early beta days (dnx), I am trying to pass the code to .net core 1.0 rtm, and the code answers the next block that contains things like the ValidationAttribute type and other things:
using System.ComponentModel.DataAnnotations;
namespace Hl7.Fhir.Introspection
{
[AttributeUsage(AttributeTargets.Property, Inherited = false, AllowMultiple = false)]
public sealed class FhirElementAttribute : ValidationAttribute
...
How to transfer such code to dotnet 1.0 rtm core?
source
share