forked from sflanker/WinDHCP
-
Notifications
You must be signed in to change notification settings - Fork 1
/
WinDHCP.csproj
28 lines (28 loc) · 905 Bytes
/
WinDHCP.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net48</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Remove="WinDHCP.Library\**" />
<EmbeddedResource Remove="WinDHCP.Library\**" />
<None Remove="WinDHCP.Library\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="WinDHCP.TestClient\**" />
<EmbeddedResource Remove="WinDHCP.TestClient\**" />
<None Remove="WinDHCP.TestClient\**" />
</ItemGroup>
<ItemGroup>
<None Include="install.ps1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="WinDHCP.Library\WinDHCP.Library.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Configuration" />
<Reference Include="System.ServiceProcess" />
</ItemGroup>
</Project>