mirror of
https://github.com/PowerShell/PowerShell
synced 2025-10-06 00:22:59 +02:00
23 lines
822 B
XML
23 lines
822 B
XML
<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="10.0.0-rc.1.25451.107" />
|
|
<PackageReference Include="System.Data.SqlClient" Version="4.9.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|