Initial Project Framework
This commit is contained in:
7
ParsonsMegadrive.Core/Class1.cs
Normal file
7
ParsonsMegadrive.Core/Class1.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace ParsonsMegadrive.Core
|
||||
{
|
||||
public class Class1
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
9
ParsonsMegadrive.Core/ParsonsMegadrive.Core.csproj
Normal file
9
ParsonsMegadrive.Core/ParsonsMegadrive.Core.csproj
Normal file
@@ -0,0 +1,9 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net10.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
3
ParsonsMegadrive.Core/ParsonsMegadriveEmulator2026.slnx
Normal file
3
ParsonsMegadrive.Core/ParsonsMegadriveEmulator2026.slnx
Normal file
@@ -0,0 +1,3 @@
|
||||
<Solution>
|
||||
<Project Path="ParsonsMegadrive.Core.csproj" />
|
||||
</Solution>
|
||||
14
ParsonsMegadrive.Desktop/ParsonsMegadrive.Desktop.csproj
Normal file
14
ParsonsMegadrive.Desktop/ParsonsMegadrive.Desktop.csproj
Normal file
@@ -0,0 +1,14 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net10.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\ParsonsMegadrive.Core\ParsonsMegadrive.Core.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
1
ParsonsMegadrive.Desktop/Program.cs
Normal file
1
ParsonsMegadrive.Desktop/Program.cs
Normal file
@@ -0,0 +1 @@
|
||||
Console.WriteLine("Hello, World!");
|
||||
25
ParsonsMegadrive.Tests/ParsonsMegadrive.Tests.csproj
Normal file
25
ParsonsMegadrive.Tests/ParsonsMegadrive.Tests.csproj
Normal file
@@ -0,0 +1,25 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net10.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<IsPackable>false</IsPackable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="coverlet.collector" Version="6.0.4" />
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
|
||||
<PackageReference Include="xunit" Version="2.9.3" />
|
||||
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.4" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\ParsonsMegadrive.Core\ParsonsMegadrive.Core.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Using Include="Xunit" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
11
ParsonsMegadrive.Tests/UnitTest1.cs
Normal file
11
ParsonsMegadrive.Tests/UnitTest1.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace ParsonsMegadrive.Tests
|
||||
{
|
||||
public class UnitTest1
|
||||
{
|
||||
[Fact]
|
||||
public void Test1()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user