aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/Ryujinx.HLE.csproj
diff options
context:
space:
mode:
authorTSR Berry <20988865+TSRBerry@users.noreply.github.com>2023-04-08 01:22:00 +0200
committerMary <thog@protonmail.com>2023-04-27 23:51:14 +0200
commitcee712105850ac3385cd0091a923438167433f9f (patch)
tree4a5274b21d8b7f938c0d0ce18736d3f2993b11b1 /src/Ryujinx.HLE/Ryujinx.HLE.csproj
parentcd124bda587ef09668a971fa1cac1c3f0cfc9f21 (diff)
Move solution and projects to src
Diffstat (limited to 'src/Ryujinx.HLE/Ryujinx.HLE.csproj')
-rw-r--r--src/Ryujinx.HLE/Ryujinx.HLE.csproj55
1 files changed, 55 insertions, 0 deletions
diff --git a/src/Ryujinx.HLE/Ryujinx.HLE.csproj b/src/Ryujinx.HLE/Ryujinx.HLE.csproj
new file mode 100644
index 00000000..5e3aa0ea
--- /dev/null
+++ b/src/Ryujinx.HLE/Ryujinx.HLE.csproj
@@ -0,0 +1,55 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+ <PropertyGroup>
+ <TargetFramework>net7.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <ProjectReference Include="..\Ryujinx.Audio\Ryujinx.Audio.csproj" />
+ <ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
+ <ProjectReference Include="..\Ryujinx.Cpu\Ryujinx.Cpu.csproj" />
+ <ProjectReference Include="..\Ryujinx.Graphics.Host1x\Ryujinx.Graphics.Host1x.csproj" />
+ <ProjectReference Include="..\Ryujinx.Graphics.Nvdec\Ryujinx.Graphics.Nvdec.csproj" />
+ <ProjectReference Include="..\Ryujinx.Graphics.Vic\Ryujinx.Graphics.Vic.csproj" />
+ <ProjectReference Include="..\Ryujinx.Horizon.Common\Ryujinx.Horizon.Common.csproj" />
+ <ProjectReference Include="..\Ryujinx.Horizon.Kernel.Generators\Ryujinx.Horizon.Kernel.Generators.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
+ <ProjectReference Include="..\Ryujinx.Horizon\Ryujinx.Horizon.csproj" />
+ <ProjectReference Include="..\Ryujinx.Memory\Ryujinx.Memory.csproj" />
+ <ProjectReference Include="..\ARMeilleure\ARMeilleure.csproj" />
+ <ProjectReference Include="..\Ryujinx.Graphics.Gpu\Ryujinx.Graphics.Gpu.csproj" />
+ <ProjectReference Include="..\Ryujinx.Graphics.GAL\Ryujinx.Graphics.GAL.csproj" />
+ </ItemGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Concentus" />
+ <PackageReference Include="LibHac" />
+ <PackageReference Include="MsgPack.Cli" />
+ <PackageReference Include="SixLabors.ImageSharp" />
+ <PackageReference Include="SixLabors.ImageSharp.Drawing" />
+ <PackageReference Include="System.IdentityModel.Tokens.Jwt" />
+ </ItemGroup>
+
+ <!-- Due to Concentus. -->
+ <PropertyGroup>
+ <NoWarn>NU1605</NoWarn>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <None Remove="Homebrew.npdm" />
+ <None Remove="HOS\Applets\SoftwareKeyboard\Resources\Logo_Ryujinx.png" />
+ <None Remove="HOS\Applets\SoftwareKeyboard\Resources\Icon_BtnA.png" />
+ <None Remove="HOS\Applets\SoftwareKeyboard\Resources\Icon_BtnB.png" />
+ <None Remove="HOS\Applets\SoftwareKeyboard\Resources\Icon_KeyF6.png" />
+ <None Remove="HOS\Services\Account\Acc\DefaultUserImage.jpg" />
+ </ItemGroup>
+
+ <ItemGroup>
+ <EmbeddedResource Include="Homebrew.npdm" />
+ <EmbeddedResource Include="HOS\Applets\SoftwareKeyboard\Resources\Logo_Ryujinx.png" />
+ <EmbeddedResource Include="HOS\Applets\SoftwareKeyboard\Resources\Icon_BtnA.png" />
+ <EmbeddedResource Include="HOS\Applets\SoftwareKeyboard\Resources\Icon_BtnB.png" />
+ <EmbeddedResource Include="HOS\Applets\SoftwareKeyboard\Resources\Icon_KeyF6.png" />
+ <EmbeddedResource Include="HOS\Services\Account\Acc\DefaultUserImage.jpg" />
+ </ItemGroup>
+
+</Project>