Initial commit.
This commit is contained in:
8
src/SlatedGameToolkit.Framework/Class1.cs
Normal file
8
src/SlatedGameToolkit.Framework/Class1.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
using System;
|
||||
|
||||
namespace SlatedGameToolkit.Framework
|
||||
{
|
||||
public class Class1
|
||||
{
|
||||
}
|
||||
}
|
@@ -0,0 +1,11 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netstandard2.0</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="SFML.Net" Version="2.5.0" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
12
src/SlatedGameToolkit.Tools/Program.cs
Normal file
12
src/SlatedGameToolkit.Tools/Program.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
|
||||
namespace SlatedGameToolkit.Tools
|
||||
{
|
||||
class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
Console.WriteLine("Hello World!");
|
||||
}
|
||||
}
|
||||
}
|
12
src/SlatedGameToolkit.Tools/SlatedGameToolkit.Tools.csproj
Normal file
12
src/SlatedGameToolkit.Tools/SlatedGameToolkit.Tools.csproj
Normal file
@@ -0,0 +1,12 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\SlatedGameToolkit.Framework\SlatedGameToolkit.Framework.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
Reference in New Issue
Block a user