Skip to content

Commit 4c60ce9

Browse files
Merge pull request #14 from sergiomcalzada/master
VS + unit test fix
2 parents 07acafc + 7373cc7 commit 4c60ce9

File tree

3 files changed

+37
-7
lines changed

3 files changed

+37
-7
lines changed

kubernetes-client.sln

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.26430.16
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "tests", "tests\tests.csproj", "{F578EB59-8E44-4652-AF8D-03F03E8A8B37}"
7+
EndProject
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "KubernetesClient", "src\KubernetesClient.csproj", "{CDDE69B1-A259-4DE3-8439-3AAD789B8F32}"
9+
EndProject
10+
Global
11+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
12+
Debug|Any CPU = Debug|Any CPU
13+
Release|Any CPU = Release|Any CPU
14+
EndGlobalSection
15+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
16+
{F578EB59-8E44-4652-AF8D-03F03E8A8B37}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
17+
{F578EB59-8E44-4652-AF8D-03F03E8A8B37}.Debug|Any CPU.Build.0 = Debug|Any CPU
18+
{F578EB59-8E44-4652-AF8D-03F03E8A8B37}.Release|Any CPU.ActiveCfg = Release|Any CPU
19+
{F578EB59-8E44-4652-AF8D-03F03E8A8B37}.Release|Any CPU.Build.0 = Release|Any CPU
20+
{CDDE69B1-A259-4DE3-8439-3AAD789B8F32}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
21+
{CDDE69B1-A259-4DE3-8439-3AAD789B8F32}.Debug|Any CPU.Build.0 = Debug|Any CPU
22+
{CDDE69B1-A259-4DE3-8439-3AAD789B8F32}.Release|Any CPU.ActiveCfg = Release|Any CPU
23+
{CDDE69B1-A259-4DE3-8439-3AAD789B8F32}.Release|Any CPU.Build.0 = Release|Any CPU
24+
EndGlobalSection
25+
GlobalSection(SolutionProperties) = preSolution
26+
HideSolutionNode = FALSE
27+
EndGlobalSection
28+
EndGlobal

src/KubernetesClient.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<OutputType>Library</OutputType>
4-
<TargetFramework>netcoreapp1.1</TargetFramework>
3+
<TargetFramework>netstandard1.6</TargetFramework>
54
</PropertyGroup>
65
<ItemGroup>
76
<Compile Remove="GlobalSuppressions.cs" />
@@ -10,6 +9,7 @@
109
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="1.1.0" />
1110
<PackageReference Include="Microsoft.Rest.ClientRuntime" Version="3.0.3" />
1211
<PackageReference Include="Newtonsoft.Json" Version="10.0.2" />
12+
<PackageReference Include="System.Diagnostics.Process" Version="4.3.0" />
1313
<PackageReference Include="YamlDotNet.NetCore" Version="1.0.0" />
1414
</ItemGroup>
1515
</Project>

tests/tests.csproj

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
<PropertyGroup>
2+
<PropertyGroup>
33
<TargetFramework>netcoreapp1.1</TargetFramework>
44
<IsPackable>false</IsPackable>
55
</PropertyGroup>
66
<ItemGroup>
7-
<PackageReference Include="xunit" Version="2.3.0-beta3-build3705" />
8-
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.0-beta3-build3705" />
97
<PackageReference Include="Microsoft.Rest.ClientRuntime" Version="3.0.3" />
108
<PackageReference Include="Newtonsoft.Json" Version="10.0.2" />
11-
<PackageReference Include="YamlDotNet.NetCore" Version="1.0.0" />
9+
<PackageReference Include="YamlDotNet.NetCore" Version="1.0.0" />
10+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0" />
11+
<PackageReference Include="xunit" Version="2.3.0-beta3-build3705" />
12+
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.0-beta3-build3705" />
13+
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.0-beta3-build3705" />
1214
</ItemGroup>
1315
<ItemGroup>
1416
<None Include="assets/*" CopyToOutputDirectory="Always" />
15-
</ItemGroup>
17+
</ItemGroup>
1618
<ItemGroup>
1719
<ProjectReference Include="..\src\KubernetesClient.csproj" />
1820
</ItemGroup>

0 commit comments

Comments
 (0)