C# Console Application
This is a console application with the minimal amount of code to get up and running in C#.
recipe.sml
The Recipe file that defines the static library "Samples.CSharp.ConsoleApplication".
Name: 'Samples.CSharp.ConsoleApplication'
Language: 'C#|0'
TargetFramework: 'net10.0'
Type: 'Executable'
Version: 1.0.0
package-lock.sml
The package lock that was generated to capture the unique build dependencies required to build this project.
program.cs
A C# Program file that implements the main method.
using System;
namespace Samples.CSharp.ConsoleApplication
{
public class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Hello World, Soup Style!");
}
}
}
.gitignore
A simple git ignore file to exclude all Soup build output.