XCI-Explorer/XCI Explorer.csproj

24 lines
892 B
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
2018-06-17 18:21:52 +00:00
<PropertyGroup>
<TargetFramework>net6.0-windows</TargetFramework>
2018-06-17 18:21:52 +00:00
<OutputType>WinExe</OutputType>
2018-06-23 15:58:42 +00:00
<AssemblyName>XCI-Explorer</AssemblyName>
2018-06-17 18:21:52 +00:00
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<UseWindowsForms>true</UseWindowsForms>
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
2018-06-17 18:21:52 +00:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugSymbols>false</DebugSymbols>
<DebugType>None</DebugType>
</PropertyGroup>
2018-06-17 18:21:52 +00:00
<ItemGroup>
<PackageReference Include="Be.Windows.Forms.HexBox.Net5" Version="1.8.0" />
</ItemGroup>
<ItemGroup>
<None Update="tools\hactool.exe">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
2022-11-13 16:54:07 +00:00
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
</None>
</ItemGroup>
2018-06-17 18:21:52 +00:00
</Project>