2025-12-19 15:58:45 -07:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
2025-12-19 16:19:12 -07:00
|
|
|
<AssemblyName>repackinator.shell</AssemblyName>
|
2025-12-19 17:54:45 -07:00
|
|
|
<ApplicationIcon>repackinator.ico</ApplicationIcon>
|
2025-12-19 18:53:39 -07:00
|
|
|
<AssemblyName>repackinator.shell</AssemblyName>
|
2025-12-19 16:34:42 -07:00
|
|
|
<SelfContained>true</SelfContained>
|
2025-12-19 18:53:39 -07:00
|
|
|
<TrimUnusedDependencies>false</TrimUnusedDependencies>
|
|
|
|
|
<PublishReadyToRun>true</PublishReadyToRun>
|
2025-12-19 16:34:42 -07:00
|
|
|
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
|
2025-12-19 15:58:45 -07:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Mono.Options" Version="6.12.0.148" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Repackinator.Core\Repackinator.Core.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|
|
|
|
|
|