FireWalletCosmos/FireWalletLite/FireWalletLite.csproj

40 lines
1.2 KiB
XML
Raw Normal View History

2023-07-05 16:44:34 +10:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<ApplicationIcon>favicon.ico</ApplicationIcon>
2023-07-07 14:44:20 +10:00
<Title>FireWallet Lite</Title>
<Authors>Nathan.Woodburn/</Authors>
<Product>FireWallet Lite</Product>
2023-07-05 16:44:34 +10:00
</PropertyGroup>
<ItemGroup>
<Content Include="favicon.ico" />
</ItemGroup>
<ItemGroup>
2023-07-07 14:04:47 +10:00
<PackageReference Include="DnsClient" Version="1.7.0" />
2023-07-05 16:44:34 +10:00
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="QRCoder" Version="1.4.3" />
2023-07-05 16:44:34 +10:00
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>