How to create a nuget package
By FoxLearn 5/22/2017 9:37:49 PM 2.97K
How to Create a nuget package in Visual Studio. Nuget is how you package that functionality into a component that can be shared and used by any developer
Step 1: Click New Project, then select Visual C# on the left, then Windows and then select Class Library. Name your project "NugetDemo" and then click OK
Step 2: Create a simple math class
public class MyMath { public int Add(int a, int b) { return a + b; } public int Sub(int a, int b) { return a - b; } public decimal Div(int a, int b) { return (decimal)a / (decimal)b; } }
Step 3: Create a nuget pack as below video, then add code to play demo
class Program { static void Main(string[] args) { int a = 1; int b = 2; MyMath math = new MyMath(); Console.Write("a + b={0}", math.Add(a, b)); Console.WriteLine(); Console.Write("a/b={0}", math.Div(a, b)); Console.ReadKey(); } }
VIDEO TUTORIALS
Categories
Popular Posts
Spica Admin Dashboard Template
11/18/2024
Material Lite Admin Template
11/14/2024
DASHMIN Admin Dashboard Template
11/17/2024