Created dotnet2.0 Builder Image and Added /v2/specialized Endpoint to dotnet2.0 Envrionment (#1001)

This commit is contained in:
Paras Patidar
2019-05-15 16:35:55 +08:00
committed by Ta-Ching Chen
parent 56fa8fe766
commit 4632269314
35 changed files with 1973 additions and 5 deletions
@@ -0,0 +1,37 @@
using Fission.DotNetCore.Model;
using System;
using System.Collections.Generic;
using System.Text;
namespace Fission.DotNetCore.Model
{
public class FunctionSpecification
{
public FunctionSpecification()
{
this.libraries = new List<Library>();
}
public string functionName { get; set; }
public List<Library> libraries { get; set; }
public string hash { get; set; }
public string certificatePath { get; set; }
}
public class Library
{
public Library()
{
}
public Library(DllInfo dllInfo)
{
this.name = dllInfo.name;
this.nugetPackage = dllInfo.rootPackage;
this.path = dllInfo.path;
}
public string name { get; set; }
//public string version { get; set; }
public string path { get; set; }
public string nugetPackage { get; set; }
}
}