mirror of
https://github.com/microsoft/terminal.git
synced 2025-12-10 18:43:54 -06:00
As VS 2022 doesn't seem to store files with UTF-8 BOM as often anymore, we've been getting more and more pull requests which seemingly randomly change files. This cleans the situation up by removing the BOM from all files that have one. Additionally, `Host.Tests.Feature.rc` was converted from UTF-16 to UTF-8.
16 lines
446 B
XML
16 lines
446 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
|
<LangVersion>latest</LangVersion>
|
|
<RootNamespace>Samples.Terminal</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Pipelines.Sockets.Unofficial" Version="2.0.22" />
|
|
<PackageReference Include="Vanara.PInvoke.Kernel32" Version="2.3.6" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|