commit 1359975637532a7180e3a333224f484534975d55
parent 021cfe585700ebc9c61fd309167e845a708ecef6
Author: Mikolaj Lenczewski <33129490+EnderRifter@users.noreply.github.com>
Date: Thu, 25 Apr 2019 19:40:37 +0200
Initial Solution and project structure.
Diffstat:
5 files changed, 77 insertions(+), 0 deletions(-)
diff --git a/StarSim/StarSim.sln b/StarSim/StarSim.sln
@@ -0,0 +1,31 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 16
+VisualStudioVersion = 16.0.28803.202
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StarSimLib", "StarSimLib\StarSimLib.csproj", "{0FA6CC2D-C2B7-461B-AADC-4E3AECD2C05C}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StarSim", "StarSim\StarSim.csproj", "{E7DA74EF-E69A-4165-BF3D-5B641D991D75}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {0FA6CC2D-C2B7-461B-AADC-4E3AECD2C05C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {0FA6CC2D-C2B7-461B-AADC-4E3AECD2C05C}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {0FA6CC2D-C2B7-461B-AADC-4E3AECD2C05C}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {0FA6CC2D-C2B7-461B-AADC-4E3AECD2C05C}.Release|Any CPU.Build.0 = Release|Any CPU
+ {E7DA74EF-E69A-4165-BF3D-5B641D991D75}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {E7DA74EF-E69A-4165-BF3D-5B641D991D75}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {E7DA74EF-E69A-4165-BF3D-5B641D991D75}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {E7DA74EF-E69A-4165-BF3D-5B641D991D75}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {E8418167-1454-44DC-B29E-9A6471C6A969}
+ EndGlobalSection
+EndGlobal
diff --git a/StarSim/StarSim/Program.cs b/StarSim/StarSim/Program.cs
@@ -0,0 +1,12 @@
+using System;
+
+namespace StarSim
+{
+ class Program
+ {
+ static void Main(string[] args)
+ {
+ Console.WriteLine("Hello World!");
+ }
+ }
+}
diff --git a/StarSim/StarSim/StarSim.csproj b/StarSim/StarSim/StarSim.csproj
@@ -0,0 +1,16 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>netcoreapp2.2</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="SFML.Net" Version="2.5.0" />
+ </ItemGroup>
+
+ <ItemGroup>
+ <ProjectReference Include="..\StarSimLib\StarSimLib.csproj" />
+ </ItemGroup>
+
+</Project>
diff --git a/StarSim/StarSimLib/Body.cs b/StarSim/StarSimLib/Body.cs
@@ -0,0 +1,6 @@
+namespace StarSimLib
+{
+ public class Body
+ {
+ }
+}
+\ No newline at end of file
diff --git a/StarSim/StarSimLib/StarSimLib.csproj b/StarSim/StarSimLib/StarSimLib.csproj
@@ -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>