34 lines
778 B
XML
34 lines
778 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net9.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<UseWPF>true</UseWPF>
|
|
<ApplicationIcon>marca.ico</ApplicationIcon>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="marca.png" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="marca.ico">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Data.OleDb" Version="9.0.7" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="System.Data.OleDb" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Resource Include="marca.png" />
|
|
</ItemGroup>
|
|
</Project>
|