init
This commit is contained in:
@@ -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
|
||||
|
||||
11
src/SharpFog.Aws/ComputeProviderExtension.cs
Normal file
11
src/SharpFog.Aws/ComputeProviderExtension.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace SharpFog.Aws
|
||||
{
|
||||
public class ComputeProviderExtension
|
||||
{
|
||||
}
|
||||
}
|
||||
19
src/SharpFog.Aws/Properties/AssemblyInfo.cs
Normal file
19
src/SharpFog.Aws/Properties/AssemblyInfo.cs
Normal 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")]
|
||||
21
src/SharpFog.Aws/SharpFog.Aws.xproj
Normal file
21
src/SharpFog.Aws/SharpFog.Aws.xproj
Normal 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>
|
||||
14
src/SharpFog.Aws/project.json
Normal file
14
src/SharpFog.Aws/project.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"version": "1.0.0-*",
|
||||
|
||||
"dependencies": {
|
||||
"NETStandard.Library": "1.6.0",
|
||||
"SharpFog": "*"
|
||||
},
|
||||
|
||||
"frameworks": {
|
||||
"netstandard1.6": {
|
||||
"imports": "dnxcore50"
|
||||
}
|
||||
}
|
||||
}
|
||||
19
src/SharpFog/ComputeProvider.cs
Normal file
19
src/SharpFog/ComputeProvider.cs
Normal 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)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -5,10 +5,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace SharpFog
|
||||
{
|
||||
public class Class1
|
||||
public interface IComputeProvider
|
||||
{
|
||||
public Class1()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
14
src/SharpFog/Models/ICompute.cs
Normal file
14
src/SharpFog/Models/ICompute.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
@@ -10,4 +10,4 @@
|
||||
"imports": "dnxcore50"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user