-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPostherr.csproj
37 lines (32 loc) · 1.12 KB
/
Postherr.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows10.0.22621.0</TargetFramework>
<SelfContained>true</SelfContained>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
<PackageIcon>postherrLOGO.png</PackageIcon>
<ApplicationIcon>icon\postherrLOGO(1).ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Content Include="icon\postherrLOGO(1).ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="HtmlAgilityPack" Version="1.11.71" />
<PackageReference Include="InputSimulator" Version="1.0.4" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="SmorcIRL.TempMail" Version="2.1.0" />
</ItemGroup>
<ItemGroup>
<None Update="icon\postherrLOGO.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="mail-256.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>