-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathESP-Flash.csproj
31 lines (26 loc) · 1.07 KB
/
ESP-Flash.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows8.0</TargetFramework>
<RootNamespace>ESP_Flash</RootNamespace>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<SupportedOSPlatformVersion>8.0</SupportedOSPlatformVersion>
<StartupObject>ESP_Flash.Program</StartupObject>
</PropertyGroup>
<ItemGroup>
<None Remove="ESPGUITOOL" />
</ItemGroup>
<ItemGroup>
<Compile Include="ESPGUITOOL" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MGSoftSystem.Management.Automation" Version="1.0.0" />
<PackageReference Include="Microsoft.PowerShell.Commands.Diagnostics" Version="7.4.5" />
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.4.5" />
<PackageReference Include="System.IO.Ports" Version="8.0.0" />
<PackageReference Include="System.Management" Version="8.0.0" />
<PackageReference Include="System.Management.Automation" Version="7.4.5" />
</ItemGroup>
</Project>