-
-
Notifications
You must be signed in to change notification settings - Fork 353
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
31ab303
commit 0e5b6a0
Showing
13 changed files
with
141 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio 14 | ||
VisualStudioVersion = 14.0.25420.1 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{0A329D36-19A2-4F54-B3C7-17640DDBF44C}" | ||
EndProject | ||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{B10A5E44-A157-44F6-95C6-7AF5626B5D4C}" | ||
ProjectSection(SolutionItems) = preProject | ||
global.json = global.json | ||
EndProjectSection | ||
EndProject | ||
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "AlbumViewerNetCore", "src\AlbumViewerNetCore\AlbumViewerNetCore.xproj", "{00D86129-ADE5-403F-96AE-9263C01BE2E4}" | ||
EndProject | ||
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "AlbumViewerBusiness", "src\AlbumViewerBusiness\AlbumViewerBusiness.xproj", "{209EAF20-38E2-4C67-9557-9247A07213E6}" | ||
EndProject | ||
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Westwind.Utilities", "src\Westwind.Utilities\Westwind.Utilities.xproj", "{4D936F4A-C6BD-4724-810F-949AB4D0BD36}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{00D86129-ADE5-403F-96AE-9263C01BE2E4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{00D86129-ADE5-403F-96AE-9263C01BE2E4}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{00D86129-ADE5-403F-96AE-9263C01BE2E4}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{00D86129-ADE5-403F-96AE-9263C01BE2E4}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{209EAF20-38E2-4C67-9557-9247A07213E6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{209EAF20-38E2-4C67-9557-9247A07213E6}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{209EAF20-38E2-4C67-9557-9247A07213E6}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{209EAF20-38E2-4C67-9557-9247A07213E6}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{4D936F4A-C6BD-4724-810F-949AB4D0BD36}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{4D936F4A-C6BD-4724-810F-949AB4D0BD36}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{4D936F4A-C6BD-4724-810F-949AB4D0BD36}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{4D936F4A-C6BD-4724-810F-949AB4D0BD36}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(NestedProjects) = preSolution | ||
{00D86129-ADE5-403F-96AE-9263C01BE2E4} = {0A329D36-19A2-4F54-B3C7-17640DDBF44C} | ||
{209EAF20-38E2-4C67-9557-9247A07213E6} = {0A329D36-19A2-4F54-B3C7-17640DDBF44C} | ||
{4D936F4A-C6BD-4724-810F-949AB4D0BD36} = {0A329D36-19A2-4F54-B3C7-17640DDBF44C} | ||
EndGlobalSection | ||
EndGlobal |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netstandard1.6</TargetFramework> | ||
<AssemblyName>AlbumViewerBusiness</AssemblyName> | ||
<PackageId>AlbumViewerBusiness</PackageId> | ||
<PackageTargetFallback>$(PackageTargetFallback);dnxcore50</PackageTargetFallback> | ||
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute> | ||
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> | ||
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Westwind.Utilities\Westwind.Utilities.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="NETStandard.Library" Version="1.6.0" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="1.0.2" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.Web"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp1.0</TargetFramework> | ||
<PreserveCompilationContext>true</PreserveCompilationContext> | ||
<AssemblyName>AlbumViewerNetCore</AssemblyName> | ||
<OutputType>Exe</OutputType> | ||
<PackageId>AlbumViewerNetCore</PackageId> | ||
<PackageTargetFallback>$(PackageTargetFallback);dotnet5.6;portable-net45+win8</PackageTargetFallback> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Content Update="wwwroot\**\*;Views\**\*;Areas\**\Views;appsettings.json;web.config"> | ||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> | ||
</Content> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\AlbumViewerBusiness\AlbumViewerBusiness.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.NETCore.App" Version="1.0.3" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Diagnostics" Version="1.0.1" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.0.2" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" Version="1.0.1" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="1.0.2" /> | ||
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.0.1" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Cors" Version="1.0.1" /> | ||
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="1.0.1" /> | ||
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="1.0.1" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging" Version="1.0.1" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Filter" Version="1.0.1" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="1.0.1" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="1.0.1" /> | ||
<PackageReference Include="Microsoft.VisualStudio.Web.BrowserLink.Loader" Version="14.0.1" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="1.0.2" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="1.0.2" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="1.0.2" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Authentication.Cookies" Version="1.0.1" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="1.0.1" /> | ||
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="1.0.1" /> | ||
<PackageReference Include="Serilog.Extensions.Logging" Version="1.2.0" /> | ||
<PackageReference Include="Serilog.Sinks.RollingFile" Version="3.2.0" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"System.GC.Server": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netstandard1.6</TargetFramework> | ||
<AssemblyName>Westwind.Utilities</AssemblyName> | ||
<PackageId>Westwind.Utilities</PackageId> | ||
<PackageTargetFallback>$(PackageTargetFallback);dnxcore50</PackageTargetFallback> | ||
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute> | ||
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> | ||
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="NETStandard.Library" Version="1.6.0" /> | ||
</ItemGroup> | ||
|
||
</Project> |