Added an attribute that can be used to included extra types in the client generation. Bumped package version to 1.4.1

This commit is contained in:
MattMo 2023-03-24 07:15:42 -07:00
parent e8735d8764
commit 1345e326a8
4 changed files with 55 additions and 1 deletions

View File

@ -53,6 +53,11 @@ namespace MontoyaTech.Rest.Net.Example
User = 1 User = 1
} }
public class IncludedType
{
public int Test;
}
public static RouteFileCache FileCache = new RouteFileCache(100 * 1024 * 1024); public static RouteFileCache FileCache = new RouteFileCache(100 * 1024 * 1024);
public static void Main(string[] args) public static void Main(string[] args)
@ -103,6 +108,7 @@ namespace MontoyaTech.Rest.Net.Example
[RouteGroup("Test")] [RouteGroup("Test")]
[RouteResponse(typeof(string))] [RouteResponse(typeof(string))]
[RouteInclude(typeof(IncludedType))]
public static HttpListenerResponse Status(HttpListenerContext context) public static HttpListenerResponse Status(HttpListenerContext context)
{ {
return context.Response.WithStatus(HttpStatusCode.OK).WithText("Everything is operational. 👍"); return context.Response.WithStatus(HttpStatusCode.OK).WithText("Everything is operational. 👍");

View File

@ -17,7 +17,7 @@
<AssemblyName>MontoyaTech.Rest.Net</AssemblyName> <AssemblyName>MontoyaTech.Rest.Net</AssemblyName>
<RootNamespace>MontoyaTech.Rest.Net</RootNamespace> <RootNamespace>MontoyaTech.Rest.Net</RootNamespace>
<GenerateDocumentationFile>True</GenerateDocumentationFile> <GenerateDocumentationFile>True</GenerateDocumentationFile>
<Version>1.4.0</Version> <Version>1.4.1</Version>
<PackageReleaseNotes></PackageReleaseNotes> <PackageReleaseNotes></PackageReleaseNotes>
<PackageIcon>Logo_Symbol_Black_Outline.png</PackageIcon> <PackageIcon>Logo_Symbol_Black_Outline.png</PackageIcon>
</PropertyGroup> </PropertyGroup>

View File

@ -163,6 +163,20 @@ namespace MontoyaTech.Rest.Net
if (!dependencies.Contains(type)) if (!dependencies.Contains(type))
dependencies.Add(type); dependencies.Add(type);
} }
var routeIncludes = methodInfo.GetCustomAttributes<RouteInclude>();
if (routeIncludes != null)
{
foreach (var include in routeIncludes)
{
var types = this.FindTypeDependencies(include.Type);
foreach (var type in types)
if (!dependencies.Contains(type))
dependencies.Add(type);
}
}
} }
return dependencies.ToList(); return dependencies.ToList();

34
Rest.Net/RouteInclude.cs Normal file
View File

@ -0,0 +1,34 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MontoyaTech.Rest.Net
{
/// <summary>
/// The outline of an Attribute that includes a type when generating a client for this route.
/// </summary>
[AttributeUsage(AttributeTargets.Method, AllowMultiple = true, Inherited = true)]
public class RouteInclude : Attribute
{
/// <summary>
/// The type to include.
/// </summary>
public Type Type = null;
/// <summary>
/// Creates a default route include.
/// </summary>
public RouteInclude() { }
/// <summary>
/// Creates a new route include with the type to include.
/// </summary>
/// <param name="type"></param>
public RouteInclude(Type type)
{
this.Type = type;
}
}
}