Ryujinx.Ava.csproj 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <RuntimeIdentifiers>win10-x64;osx-x64;linux-x64</RuntimeIdentifiers>
  5. <OutputType>Exe</OutputType>
  6. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  7. <Version>1.0.0-dirty</Version>
  8. <DefineConstants Condition=" '$(ExtraDefineConstants)' != '' ">$(DefineConstants);$(ExtraDefineConstants)</DefineConstants>
  9. <RootNamespace>Ryujinx.Ava</RootNamespace>
  10. <ApplicationIcon>Ryujinx.ico</ApplicationIcon>
  11. </PropertyGroup>
  12. <PropertyGroup Condition="'$(RuntimeIdentifier)' != ''">
  13. <PublishSingleFile>true</PublishSingleFile>
  14. <PublishTrimmed>true</PublishTrimmed>
  15. </PropertyGroup>
  16. <ItemGroup>
  17. <PackageReference Include="Avalonia" Version="0.10.15" />
  18. <PackageReference Include="Avalonia.Desktop" Version="0.10.15" />
  19. <PackageReference Include="Avalonia.Diagnostics" Version="0.10.15" />
  20. <PackageReference Include="Avalonia.Controls.DataGrid" Version="0.10.15" />
  21. <PackageReference Include="Avalonia.Markup.Xaml.Loader" Version="0.10.15" />
  22. <PackageReference Include="Avalonia.Svg" Version="0.10.14" />
  23. <PackageReference Include="Avalonia.Svg.Skia" Version="0.10.14" />
  24. <PackageReference Include="jp2masa.Avalonia.Flexbox" Version="0.2.0" />
  25. <PackageReference Include="DynamicData" Version="7.9.4" />
  26. <PackageReference Include="FluentAvaloniaUI" Version="1.4.1" />
  27. <PackageReference Include="Ryujinx.Audio.OpenAL.Dependencies" Version="1.21.0.1" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'" />
  28. <PackageReference Include="Ryujinx.Graphics.Nvdec.Dependencies" Version="4.4.0-build9" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'" />
  29. <PackageReference Include="OpenTK.Graphics" Version="4.7.2" />
  30. <PackageReference Include="SPB" Version="0.0.4-build17" />
  31. <PackageReference Include="SharpZipLib" Version="1.3.3" />
  32. <PackageReference Include="SixLabors.ImageSharp" Version="1.0.4" />
  33. </ItemGroup>
  34. <ItemGroup>
  35. <ProjectReference Include="..\Ryujinx.Audio.Backends.SDL2\Ryujinx.Audio.Backends.SDL2.csproj" />
  36. <ProjectReference Include="..\Ryujinx.Input\Ryujinx.Input.csproj" />
  37. <ProjectReference Include="..\Ryujinx.Input.SDL2\Ryujinx.Input.SDL2.csproj" />
  38. <ProjectReference Include="..\Ryujinx.Audio.Backends.OpenAL\Ryujinx.Audio.Backends.OpenAL.csproj" />
  39. <ProjectReference Include="..\Ryujinx.Audio.Backends.SoundIo\Ryujinx.Audio.Backends.SoundIo.csproj" />
  40. <ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
  41. <ProjectReference Include="..\Ryujinx.HLE\Ryujinx.HLE.csproj" />
  42. <ProjectReference Include="..\ARMeilleure\ARMeilleure.csproj" />
  43. <ProjectReference Include="..\Ryujinx.Graphics.OpenGL\Ryujinx.Graphics.OpenGL.csproj" />
  44. <ProjectReference Include="..\Ryujinx.Graphics.Gpu\Ryujinx.Graphics.Gpu.csproj" />
  45. <ProjectReference Include="..\Ryujinx.Ui.Common\Ryujinx.Ui.Common.csproj" />
  46. </ItemGroup>
  47. <ItemGroup>
  48. <ContentWithTargetPath Include="..\distribution\windows\alsoft.ini" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'">
  49. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  50. <TargetPath>alsoft.ini</TargetPath>
  51. </ContentWithTargetPath>
  52. <ContentWithTargetPath Include="..\distribution\legal\THIRDPARTY.md">
  53. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  54. <TargetPath>THIRDPARTY.md</TargetPath>
  55. </ContentWithTargetPath>
  56. </ItemGroup>
  57. <ItemGroup>
  58. <AvaloniaResource Include="Ui\**\*.xaml">
  59. <SubType>Designer</SubType>
  60. </AvaloniaResource>
  61. <AvaloniaResource Include="Assets\Fonts\SegoeFluentIcons.ttf" />
  62. <AvaloniaResource Include="Assets\Styles\BaseLight.xaml">
  63. <Generator>MSBuild:Compile</Generator>
  64. </AvaloniaResource>
  65. <AvaloniaResource Include="Assets\Styles\BaseDark.xaml">
  66. <Generator>MSBuild:Compile</Generator>
  67. </AvaloniaResource>
  68. <AvaloniaResource Include="Assets\Styles\Styles.xaml" />
  69. <Compile Update="App.axaml.cs">
  70. <DependentUpon>App.axaml</DependentUpon>
  71. <SubType>Code</SubType>
  72. </Compile>
  73. <Compile Update="Ui\Windows\MainWindow.axaml.cs">
  74. <DependentUpon>MainWindow.axaml</DependentUpon>
  75. <SubType>Code</SubType>
  76. </Compile>
  77. <Compile Update="Ui\Windows\AboutWindow.axaml.cs">
  78. <DependentUpon>AboutWindow.axaml</DependentUpon>
  79. <SubType>Code</SubType>
  80. </Compile>
  81. <Compile Update="Ui\Applet\ErrorAppletWindow.axaml.cs">
  82. <DependentUpon>ProfileWindow.axaml</DependentUpon>
  83. <SubType>Code</SubType>
  84. </Compile>
  85. <Compile Update="Ui\Applet\SwkbdAppletWindow.axaml.cs">
  86. <DependentUpon>ProfileWindow.axaml</DependentUpon>
  87. <SubType>Code</SubType>
  88. </Compile>
  89. <Compile Update="Ui\Controls\InputDialog.axaml.cs">
  90. <DependentUpon>InputDialog.axaml</DependentUpon>
  91. <SubType>Code</SubType>
  92. </Compile>
  93. <Compile Update="Ui\Windows\ContentDialogOverlay.xaml.cs">
  94. <DependentUpon>ContentDialogOverlay.xaml</DependentUpon>
  95. </Compile>
  96. <Compile Update="Ui\Controls\GameListView.axaml.cs">
  97. <DependentUpon>GameListView.axaml</DependentUpon>
  98. <SubType>Code</SubType>
  99. </Compile>
  100. </ItemGroup>
  101. <ItemGroup>
  102. <None Remove="Assets\Locales\el_GR.json" />
  103. <None Remove="Assets\Locales\en_US.json" />
  104. <None Remove="Assets\Locales\es_ES.json" />
  105. <None Remove="Assets\Locales\fr_FR.json" />
  106. <None Remove="Assets\Locales\de_DE.json" />
  107. <None Remove="Assets\Locales\it_IT.json" />
  108. <None Remove="Assets\Locales\ko_KR.json" />
  109. <None Remove="Assets\Locales\pt_BR.json" />
  110. <None Remove="Assets\Locales\ru_RU.json" />
  111. <None Remove="Assets\Locales\tr_TR.json" />
  112. <None Remove="Assets\Locales\zh_CN.json" />
  113. <None Remove="Assets\Styles\Styles.xaml" />
  114. <None Remove="Assets\Styles\BaseDark.xaml" />
  115. <None Remove="Assets\Styles\BaseLight.xaml" />
  116. </ItemGroup>
  117. <ItemGroup>
  118. <EmbeddedResource Include="Assets\Locales\el_GR.json" />
  119. <EmbeddedResource Include="Assets\Locales\en_US.json" />
  120. <EmbeddedResource Include="Assets\Locales\es_ES.json" />
  121. <EmbeddedResource Include="Assets\Locales\fr_FR.json" />
  122. <EmbeddedResource Include="Assets\Locales\de_DE.json" />
  123. <EmbeddedResource Include="Assets\Locales\it_IT.json" />
  124. <EmbeddedResource Include="Assets\Locales\ko_KR.json" />
  125. <EmbeddedResource Include="Assets\Locales\pt_BR.json" />
  126. <EmbeddedResource Include="Assets\Locales\ru_RU.json" />
  127. <EmbeddedResource Include="Assets\Locales\tr_TR.json" />
  128. <EmbeddedResource Include="Assets\Locales\zh_CN.json" />
  129. <EmbeddedResource Include="Assets\Styles\Styles.xaml" />
  130. </ItemGroup>
  131. </Project>