LentiaLauncher/LentiaLauncher.csproj
azures04 d84abfb141 Remove unused resources folder and update icon path
Deleted icon.ico and logo.png from the resources folder and updated the project file to reference the icon in src/resources instead. Also removed the resources folder from the output copy list.
2026-01-25 19:52:17 +01:00

27 lines
821 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>./src/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>
</ItemGroup>
</Project>