forked from PowerShell/PowerShell
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTestService.csproj
More file actions
22 lines (18 loc) · 827 Bytes
/
Copy pathTestService.csproj
File metadata and controls
22 lines (18 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\Test.Common.props" />
<PropertyGroup>
<Description>Very tiny windows service to do service testing</Description>
<NoWarn>$(NoWarn);CA1416</NoWarn>
<AssemblyName>TestService</AssemblyName>
<OutputType>Exe</OutputType>
<TieredCompilation>true</TieredCompilation>
<TieredCompilationQuickJit>true</TieredCompilationQuickJit>
<RuntimeIdentifiers>win-x86;win-x64</RuntimeIdentifiers>
<TargetPlatformIdentifier>Windows</TargetPlatformIdentifier>
<TargetPlatformVersion>8.0</TargetPlatformVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Windows.Compatibility" Version="11.0.0-preview.4.26230.115" />
<PackageReference Include="System.Data.SqlClient" Version="4.9.1" />
</ItemGroup>
</Project>