68 lines
2.6 KiB
XML
68 lines
2.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.3.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.10" />
|
|
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="9.0.10" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.10" />
|
|
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.10" />
|
|
<PackageReference Include="SharpCompress" Version="0.41.0" />
|
|
<PackageReference Include="SharpSevenZip" Version="2.0.32" />
|
|
<PackageReference Include="System.Runtime.Caching" Version="9.0.10" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="..\.dockerignore">
|
|
<Link>.dockerignore</Link>
|
|
</Content>
|
|
<Content Remove="obj\**" />
|
|
<AdditionalFiles Include="..\Dependencies\LibHac.dll">
|
|
<Link>LibHac.dll</Link>
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</AdditionalFiles>
|
|
<Content Update="Config\appsettings.json">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Update="Config\appsettings.development.json">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Update="Config\appsettings.local.json">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Update="Config\appsettings.production.json">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- libhac ships a native helper called Ryujinx.HLE.HOS.Native.dll.
|
|
The build script copies it to the output folder automatically. -->
|
|
<None Update="..\Dependencies\LibHac.dll" CopyToOutputDirectory="PreserveNewest" />
|
|
<None Remove="obj\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="LibHac">
|
|
<HintPath>..\Dependencies\LibHac.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="obj\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Remove="obj\**" />
|
|
<EmbeddedResource Include="appsettings.default.json">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
</Project>
|