File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ namespace BlazorExpress . Core ;
2+
3+ /// <summary>
4+ /// Attribute to specify the method return type name.
5+ /// </summary>
6+ public class MethodReturnTypeNameAttribute : Attribute
7+ {
8+ #region Constructors
9+
10+ public MethodReturnTypeNameAttribute ( string typeName )
11+ {
12+ TypeName = typeName ;
13+ }
14+
15+ #endregion
16+
17+ #region Properties, Indexers
18+
19+ public string TypeName { get ; }
20+
21+ #endregion
22+ }
Original file line number Diff line number Diff line change 22
33 <PropertyGroup >
44 <PackageId >BlazorExpress.Core</PackageId >
5- <Version >0.1.0 </Version >
6- <PackageVersion >0.1.0 </PackageVersion >
5+ <Version >0.1.1 </Version >
6+ <PackageVersion >0.1.1 </PackageVersion >
77
88 <!-- <PackageIconUrl></PackageIconUrl>-->
99 <PackageLicenseExpression >Apache-2.0</PackageLicenseExpression >
You can’t perform that action at this time.
0 commit comments