27 lines
761 B
XML
27 lines
761 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Flashbin\**" />
|
|
<EmbeddedResource Remove="Flashbin\**" />
|
|
<None Remove="Flashbin\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="modxo.bin" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="BundlerMinifier.Core" Version="3.2.449" />
|
|
<PackageReference Include="FluentFTP" Version="52.0.0" />
|
|
<PackageReference Include="K4os.Compression.LZ4" Version="1.3.8" />
|
|
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.6" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|