File tree Expand file tree Collapse file tree 3 files changed +37
-7
lines changed Expand file tree Collapse file tree 3 files changed +37
-7
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
- <OutputType >Library</OutputType >
4
- <TargetFramework >netcoreapp1.1</TargetFramework >
3
+ <TargetFramework >netstandard1.6</TargetFramework >
5
4
</PropertyGroup >
6
5
<ItemGroup >
7
6
<Compile Remove =" GlobalSuppressions.cs" />
10
9
<PackageReference Include =" Microsoft.CodeAnalysis.FxCopAnalyzers" Version =" 1.1.0" />
11
10
<PackageReference Include =" Microsoft.Rest.ClientRuntime" Version =" 3.0.3" />
12
11
<PackageReference Include =" Newtonsoft.Json" Version =" 10.0.2" />
12
+ <PackageReference Include =" System.Diagnostics.Process" Version =" 4.3.0" />
13
13
<PackageReference Include =" YamlDotNet.NetCore" Version =" 1.0.0" />
14
14
</ItemGroup >
15
15
</Project >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
- <PropertyGroup >
2
+ <PropertyGroup >
3
3
<TargetFramework >netcoreapp1.1</TargetFramework >
4
4
<IsPackable >false</IsPackable >
5
5
</PropertyGroup >
6
6
<ItemGroup >
7
- <PackageReference Include =" xunit" Version =" 2.3.0-beta3-build3705" />
8
- <DotNetCliToolReference Include =" dotnet-xunit" Version =" 2.3.0-beta3-build3705" />
9
7
<PackageReference Include =" Microsoft.Rest.ClientRuntime" Version =" 3.0.3" />
10
8
<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" />
12
14
</ItemGroup >
13
15
<ItemGroup >
14
16
<None Include =" assets/*" CopyToOutputDirectory =" Always" />
15
- </ItemGroup >
17
+ </ItemGroup >
16
18
<ItemGroup >
17
19
<ProjectReference Include =" ..\src\KubernetesClient.csproj" />
18
20
</ItemGroup >
You can’t perform that action at this time.
0 commit comments