RSCG Example–CI Version–part 18
name | RSCG_AMS |
nuget | https://www.nuget.org/packages/AMS_Base https://www.nuget.org/packages/AMSWebAPI https://www.nuget.org/packages/RSCG_AMS |
link | https://github.com/ignatandrei/RSCG_AMS |
author | Andrei Ignat |
The AMS will add in the CI the version and creator to your project.See https://netcoreblockly.herokuapp.com/ams for an example The code that you start with is
1 2 3 4 5 | <packagereference include= "AMS_Base" > <packagereference include= "AMSWebAPI" > <packagereference include= "RSCG_AMS" outputitemtype= "Analyzer" referenceoutputassembly= "false" > |
The code that you will use is
1 2 3 4 5 6 7 8 9 | app.UseEndpoints(endpoints => { endpoints.MapControllers(); endpoints.UseAMS(); }); |
The code that is generated is
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | using System; using AMS_Base; namespace AMSExample { /// <summary> /// this is the About My Software for 65788572124102115119116110 /// </summary> public class XAboutMySoftware_65788572124102115119116110 :AboutMySoftware { /// <summary> /// starts when this module is loaded and /// add the AMS tot the /// </summary> [System.Runtime.CompilerServices.ModuleInitializer] public static void Add_AboutMySoftware_65788572124102115119116110(){ AboutMySoftware.AddDefinition( "AMSExample" , new XAboutMySoftware_65788572124102115119116110()); } /// <summary> /// constructor /// for AMS 65788572124102115119116110 /// </summary> public XAboutMySoftware_65788572124102115119116110(){ AssemblyName = "AMSExample" ; DateGenerated = DateTime.ParseExact( "20210717034910" , "yyyyMMddHHmmss" , null ); CommitId = "not in a CI run" ; CISourceControl = "not in a CI run" ; Authors= "" ; Version= "" ; User = "Surface1" ; } } } |
Example Code: https://github.com/ignatandrei/RSCG_Examples/tree/main/CI_Version
Leave a Reply