aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Utilities/Tango.WebClientGenerator
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2020-04-11 05:02:18 +0300
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2020-04-11 05:02:18 +0300
commitbf5cbf5a6972cd8d725cc03fd6375b1eccbfe31c (patch)
tree0902fda382956c1b749cf856d2a4d950f0196190 /Software/Visual_Studio/Utilities/Tango.WebClientGenerator
parentcb1b51c238c64f570d73b7dca6a2eee205b2da01 (diff)
downloadTango-bf5cbf5a6972cd8d725cc03fd6375b1eccbfe31c.tar.gz
Tango-bf5cbf5a6972cd8d725cc03fd6375b1eccbfe31c.zip
Started working on FSE TUP management.
Diffstat (limited to 'Software/Visual_Studio/Utilities/Tango.WebClientGenerator')
-rw-r--r--Software/Visual_Studio/Utilities/Tango.WebClientGenerator/Program.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Utilities/Tango.WebClientGenerator/Program.cs b/Software/Visual_Studio/Utilities/Tango.WebClientGenerator/Program.cs
index 36c88bffb..501058016 100644
--- a/Software/Visual_Studio/Utilities/Tango.WebClientGenerator/Program.cs
+++ b/Software/Visual_Studio/Utilities/Tango.WebClientGenerator/Program.cs
@@ -24,6 +24,8 @@ namespace Tango.WebClientGenerator
//Generate FSE client.
GenerateWebClientV2<FSE.Web.Messages.LoginRequest, FSE.Web.Messages.LoginResponse, MachineService.Controllers.FSEController>("Tango.FSE.BL.Web", "FSEWebClientBase", PathHelper.GetSolutionFolder() + @"\FSE\Tango.FSE.BL\Web");
+
+ Console.WriteLine("Done");
}
private static void GenerateWebClient<TLoginRequest, TLoginResponse, TController>(String nameSpace, String name, String path) where TLoginRequest : WebRequestMessage where TLoginResponse : WebTokenResponse where TController : TangoController