remove BOM from UTF-8 files
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
namespace simple
|
namespace simple
|
||||||
{
|
{
|
||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|||||||
@@ -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" />
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
namespace k8s.Exceptions
|
namespace k8s.Exceptions
|
||||||
{
|
{
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
namespace k8s.Exceptions
|
namespace k8s.Exceptions
|
||||||
{
|
{
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
namespace k8s
|
namespace k8s
|
||||||
{
|
{
|
||||||
using System;
|
using System;
|
||||||
using System.Diagnostics.CodeAnalysis;
|
using System.Diagnostics.CodeAnalysis;
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
namespace k8s
|
namespace k8s
|
||||||
{
|
{
|
||||||
using System;
|
using System;
|
||||||
using System.Globalization;
|
using System.Globalization;
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
namespace k8s
|
namespace k8s
|
||||||
{
|
{
|
||||||
using k8s.Exceptions;
|
using k8s.Exceptions;
|
||||||
using System;
|
using System;
|
||||||
|
|||||||
@@ -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();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user