This commit is contained in:
Tommy Parnell
2016-10-08 12:40:40 -04:00
parent 6c7e8790ff
commit 965d36ce7b
9 changed files with 108 additions and 6 deletions

View File

@@ -12,6 +12,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "SharpFog", "src\SharpFog\SharpFog.xproj", "{DA1A4084-1C95-4F60-98BE-A9A3B4E94654}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "SharpFog.Aws", "src\SharpFog.Aws\SharpFog.Aws.xproj", "{0E906FB9-D2A3-4D17-B620-80CFFC4A6D1D}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -22,11 +24,16 @@ Global
{DA1A4084-1C95-4F60-98BE-A9A3B4E94654}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DA1A4084-1C95-4F60-98BE-A9A3B4E94654}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DA1A4084-1C95-4F60-98BE-A9A3B4E94654}.Release|Any CPU.Build.0 = Release|Any CPU
{0E906FB9-D2A3-4D17-B620-80CFFC4A6D1D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0E906FB9-D2A3-4D17-B620-80CFFC4A6D1D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0E906FB9-D2A3-4D17-B620-80CFFC4A6D1D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0E906FB9-D2A3-4D17-B620-80CFFC4A6D1D}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{DA1A4084-1C95-4F60-98BE-A9A3B4E94654} = {7EA33035-4E78-4F69-9F20-A8E1B5A23C14}
{0E906FB9-D2A3-4D17-B620-80CFFC4A6D1D} = {7EA33035-4E78-4F69-9F20-A8E1B5A23C14}
EndGlobalSection
EndGlobal

View File

@@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace SharpFog.Aws
{
public class ComputeProviderExtension
{
}
}

View File

@@ -0,0 +1,19 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("SharpFog.Aws")]
[assembly: AssemblyTrademark("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("0e906fb9-d2a3-4d17-b620-80cffc4a6d1d")]

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0</VisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
</PropertyGroup>
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.Props" Condition="'$(VSToolsPath)' != ''" />
<PropertyGroup Label="Globals">
<ProjectGuid>0e906fb9-d2a3-4d17-b620-80cffc4a6d1d</ProjectGuid>
<RootNamespace>SharpFog.Aws</RootNamespace>
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">.\obj</BaseIntermediateOutputPath>
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup>
<SchemaVersion>2.0</SchemaVersion>
</PropertyGroup>
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.targets" Condition="'$(VSToolsPath)' != ''" />
</Project>

View File

@@ -0,0 +1,14 @@
{
"version": "1.0.0-*",
"dependencies": {
"NETStandard.Library": "1.6.0",
"SharpFog": "*"
},
"frameworks": {
"netstandard1.6": {
"imports": "dnxcore50"
}
}
}

View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace SharpFog
{
public static class ComputeProvider
{
public static ComputeProvider<T> New<T>(T Provider) where T : IComputeProvider => new ComputeProvider<T>(Provider);
}
public class ComputeProvider<T> where T : IComputeProvider
{
public ComputeProvider(T provider)
{
}
}
}

View File

@@ -5,10 +5,7 @@ using System.Threading.Tasks;
namespace SharpFog
{
public class Class1
public interface IComputeProvider
{
public Class1()
{
}
}
}
}

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace SharpFog.Models
{
internal interface ICompute
{
string Id { get; set; }
string Name { get; set; }
string Type { get; set; }
}
}

View File

@@ -10,4 +10,4 @@
"imports": "dnxcore50"
}
}
}
}