Getting the data

This commit is contained in:
Booklordofthedings 2024-11-18 11:28:27 +01:00
commit 86070aa16b
7 changed files with 106 additions and 0 deletions

View file

@ -0,0 +1,5 @@
FileVersion = 1
[Project]
Name = "ManagementScript"
StartupObject = "ManagementScript.Program"

View file

@ -0,0 +1,5 @@
FileVersion = 1
Projects = {ManagementScript = {Path = "."}}
[Workspace]
StartupProject = "ManagementScript"

View file

@ -0,0 +1,11 @@
namespace ManagementScript;
using System;
class Program
{
public static void Main()
{
}
}