GTPCorrgir/GTPCorrgir.csproj

37 lines
1.1 KiB
XML
Raw Permalink Normal View History

2024-04-24 03:33:57 -03:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
2024-04-28 03:42:04 -03:00
<StartupObject>GTPCorrgir.Program</StartupObject>
2024-04-24 03:33:57 -03:00
<!-- Esta línea habilita Windows Forms -->
</PropertyGroup>
<ItemGroup>
<COMReference Include="{215d64d2-031c-33c7-96e3-61794cd1ee61}">
<WrapperTool>tlbimp</WrapperTool>
<VersionMinor>4</VersionMinor>
<VersionMajor>2</VersionMajor>
<Guid>215d64d2-031c-33c7-96e3-61794cd1ee61</Guid>
</COMReference>
</ItemGroup>
2024-04-24 03:33:57 -03:00
<ItemGroup>
<PackageReference Include="LanguageDetection" Version="1.2.0" />
2024-04-29 05:56:48 -03:00
<PackageReference Include="Markdown.Xaml" Version="1.0.0" />
2024-04-24 03:33:57 -03:00
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
<ItemGroup>
<Reference Include="libObsidean">
<HintPath>..\Libraries\libObsidean\bin\Debug\net8.0-windows\libObsidean.dll</HintPath>
</Reference>
</ItemGroup>
2024-04-24 03:33:57 -03:00
</Project>