Skip to content

Commit

Permalink
split data components into separate lib/package
Browse files Browse the repository at this point in the history
  • Loading branch information
clarkis117 committed Mar 5, 2017
1 parent 06a2296 commit 07b3c0b
Show file tree
Hide file tree
Showing 32 changed files with 10,892 additions and 110 deletions.
7 changes: 7 additions & 0 deletions GenericMvc.sln
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "GenericMvc.Test.App", "test
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{B3BA7BC4-C4C6-4538-A568-CB2DD883BA3A}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "GenericMvc.Data", "src\GenericMvc.Data\GenericMvc.Data.xproj", "{D7C85B6F-DF25-4AB5-A4B5-0E9AFAF0AB94}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -49,6 +51,10 @@ Global
{B81D036B-D703-46B2-81B9-E724B85DC8BC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B81D036B-D703-46B2-81B9-E724B85DC8BC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B81D036B-D703-46B2-81B9-E724B85DC8BC}.Release|Any CPU.Build.0 = Release|Any CPU
{D7C85B6F-DF25-4AB5-A4B5-0E9AFAF0AB94}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D7C85B6F-DF25-4AB5-A4B5-0E9AFAF0AB94}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D7C85B6F-DF25-4AB5-A4B5-0E9AFAF0AB94}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D7C85B6F-DF25-4AB5-A4B5-0E9AFAF0AB94}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand All @@ -58,5 +64,6 @@ Global
{362A372D-56C5-4F97-8681-9C9FF40CE30A} = {B3BA7BC4-C4C6-4538-A568-CB2DD883BA3A}
{0D63026E-6537-4BFA-890C-5D0A2485DF60} = {76C8C261-C3E5-4708-A352-41C0510CB3A0}
{B81D036B-D703-46B2-81B9-E724B85DC8BC} = {B3BA7BC4-C4C6-4538-A568-CB2DD883BA3A}
{D7C85B6F-DF25-4AB5-A4B5-0E9AFAF0AB94} = {76C8C261-C3E5-4708-A352-41C0510CB3A0}
EndGlobalSection
EndGlobal
File renamed without changes.
File renamed without changes.
21 changes: 21 additions & 0 deletions src/GenericMvc.Data/GenericMvc.Data.xproj
Original file line number Diff line number Diff line change
@@ -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>d7c85b6f-df25-4ab5-a4b5-0e9afaf0ab94</ProjectGuid>
<RootNamespace>GenericMvc.Data</RootNamespace>
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">.\obj</BaseIntermediateOutputPath>
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
</PropertyGroup>

<PropertyGroup>
<SchemaVersion>2.0</SchemaVersion>
</PropertyGroup>
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.targets" Condition="'$(VSToolsPath)' != ''" />
</Project>
File renamed without changes.
File renamed without changes.
File renamed without changes.
19 changes: 19 additions & 0 deletions src/GenericMvc.Data/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -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("GenericMvc.Data")]
[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("d7c85b6f-df25-4ab5-a4b5-0e9afaf0ab94")]
File renamed without changes.
File renamed without changes.
25 changes: 25 additions & 0 deletions src/GenericMvc.Data/project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "GenericMvc.Data",
"title": "GenericMvc.Data",
"version": "1.0.0",
"description": "GenericMvc is group of classes for speeding Asp.Net Core development",
"authors": [ "Joshua Clark" ],

"dependencies": {
"NETStandard.Library": "1.6.1",
"Microsoft.EntityFrameworkCore": "1.1.0",
"System.Reflection.TypeExtensions": "4.3.0",
"Microsoft.AspNetCore.Mvc": "1.1.0",
"System.Reactive.Linq": "3.1.1",
"Mime-Detective": "0.0.2",
"AutoMapper": "5.2.0"
},

"frameworks": {
"netstandard1.6": {
},
"net4.6": {

}
}
}
Loading

0 comments on commit 07b3c0b

Please sign in to comment.