LentiaLauncher/LentiaLauncher.csproj
2026-01-23 15:55:56 +01:00

30 lines
923 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<Platforms>AnyCPU</Platforms>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>LentiaLauncher</AssemblyName>
<ApplicationIcon>./resources/icon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Compile Remove="wwwroot\**" />
<None Update="wwwroot\**">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Photino.NET" Version="4.0.16" />
<PackageReference Include="System.Management" Version="10.0.2" />
</ItemGroup>
<ItemGroup>
<None Update="src\resources\**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="resources\**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>