mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-07 13:45:42 +12:00
20 lines
502 B
XML
20 lines
502 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<StartupObject>HISP.Program</StartupObject>
|
|
<ApplicationIcon>icon.ico</ApplicationIcon>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="icon.ico" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\LibHISP\LibHISP.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|