-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHDF.Windows.Tools.csproj
More file actions
33 lines (27 loc) · 865 Bytes
/
Copy pathHDF.Windows.Tools.csproj
File metadata and controls
33 lines (27 loc) · 865 Bytes
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
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net40</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<LangVersion>latest</LangVersion>
<ApplicationIcon>hdf.ico</ApplicationIcon>
<StartupObject />
</PropertyGroup>
<ItemGroup>
<None Remove="hdf.ico" />
<EmbeddedResource Include="hdf.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="HDF.Common" Version="1.3.0" />
<PackageReference Include="HDF.DotNet.Features.PropertyInitAccessor" Version="1.1.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Management" />
</ItemGroup>
<ItemGroup>
<None Update="config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>