aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.LLE
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2020-07-01 15:14:36 -0300
committerGitHub <noreply@github.com>2020-07-01 15:14:36 -0300
commit0ac4c0c92ce54fcb211e0a21c385d85a48d0e1ae (patch)
tree4ecf9d07d3a9d8ea0b45de057ca5fa986be15144 /Ryujinx.LLE
parent68a6960617f0703d09971a78445e42bf42b20025 (diff)
Remove dummy LLE project (#1336)
Diffstat (limited to 'Ryujinx.LLE')
-rw-r--r--Ryujinx.LLE/Luea.csproj21
-rw-r--r--Ryujinx.LLE/Program.cs12
2 files changed, 0 insertions, 33 deletions
diff --git a/Ryujinx.LLE/Luea.csproj b/Ryujinx.LLE/Luea.csproj
deleted file mode 100644
index 016fb7da..00000000
--- a/Ryujinx.LLE/Luea.csproj
+++ /dev/null
@@ -1,21 +0,0 @@
-<Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- <TargetFramework>netcoreapp3.1</TargetFramework>
- <LangVersion>8.0</LangVersion>
- <RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
- <OutputType>Exe</OutputType>
- <Configurations>Debug;Release;Profile Debug;Profile Release</Configurations>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile Release|AnyCPU'">
- <DefineConstants>TRACE;USE_DEBUGGING</DefineConstants>
- <Optimize>true</Optimize>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile Debug|AnyCPU'">
- <DefineConstants>TRACE;USE_DEBUGGING</DefineConstants>
- <Optimize>false</Optimize>
- </PropertyGroup>
-
-</Project>
diff --git a/Ryujinx.LLE/Program.cs b/Ryujinx.LLE/Program.cs
deleted file mode 100644
index 96458d1e..00000000
--- a/Ryujinx.LLE/Program.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-using System;
-
-namespace Luea
-{
- class Program
- {
- static void Main(string[] args)
- {
- Console.WriteLine("Initializing...");
- }
- }
-}