remove BOM from UTF-8 files

This commit is contained in:
Cole Mickens
2017-09-14 10:47:41 -07:00
parent 86992117ca
commit 2a2e013181
10 changed files with 36 additions and 35 deletions

View File

@@ -1,4 +1,4 @@
namespace simple namespace simple
{ {
using System; using System;
using System.IO; using System.IO;

View File

@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<ItemGroup> <ItemGroup>
<PackageReference Include="Microsoft.Rest.ClientRuntime" Version="3.0.3" /> <PackageReference Include="Microsoft.Rest.ClientRuntime" Version="3.0.3" />

View File

@@ -1,4 +1,4 @@

Microsoft Visual Studio Solution File, Format Version 12.00 Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15 # Visual Studio 15
VisualStudioVersion = 15.0.26430.16 VisualStudioVersion = 15.0.26430.16

View File

@@ -1,4 +1,4 @@
namespace k8s.Exceptions namespace k8s.Exceptions
{ {
using System; using System;

View File

@@ -1,4 +1,4 @@
namespace k8s.Exceptions namespace k8s.Exceptions
{ {
using System; using System;

View File

@@ -1,4 +1,4 @@
namespace k8s namespace k8s
{ {
using System; using System;
using System.Diagnostics.CodeAnalysis; using System.Diagnostics.CodeAnalysis;

View File

@@ -1,4 +1,4 @@
namespace k8s namespace k8s
{ {
using System; using System;
using System.Globalization; using System.Globalization;

View File

@@ -1,4 +1,4 @@
namespace k8s namespace k8s
{ {
using k8s.Exceptions; using k8s.Exceptions;
using System; using System;

View File

@@ -1,4 +1,4 @@
using Xunit; using Xunit;
using System.IO; using System.IO;
namespace k8s.Tests namespace k8s.Tests
@@ -6,7 +6,8 @@ namespace k8s.Tests
public class KubernetesClientConfigurationTests public class KubernetesClientConfigurationTests
{ {
public static string readLine(string fileName) { public static string readLine(string fileName)
{
StreamReader reader = new StreamReader(new FileStream(fileName, FileMode.Open, FileAccess.Read)); StreamReader reader = new StreamReader(new FileStream(fileName, FileMode.Open, FileAccess.Read));
return reader.ReadLine(); return reader.ReadLine();
} }

View File

@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework> <TargetFramework>netstandard2.0</TargetFramework>
<IsPackable>false</IsPackable> <IsPackable>false</IsPackable>