Onyxl's picture
Upload 2661 files
8c763fb verified
<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.2.26159.112" />
<PackageReference Include="System.Data.SqlClient" Version="4.9.1" />
</ItemGroup>
</Project>