Add AspNetCore adapter

This commit is contained in:
Frank A. Krueger 2017-11-09 18:53:43 -08:00
parent 75535dd38e
commit 1f7de9a2b1
3 changed files with 29 additions and 9 deletions

View File

@ -0,0 +1,8 @@
using System;
namespace Ooui.AspNetCore
{
public class Class1
{
}
}

View File

@ -0,0 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
</Project>

View File

@ -11,6 +11,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tests", "Tests\Tests.csproj
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ooui.Forms", "Ooui.Forms\Ooui.Forms.csproj", "{DB819A2F-91E1-40FB-8D48-6544169966B8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ooui.AspNetCore", "Ooui.AspNetCore\Ooui.AspNetCore.csproj", "{2EDF0328-698B-458A-B10C-AB1B4786A6CA}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@ -72,6 +74,18 @@ Global
{DB819A2F-91E1-40FB-8D48-6544169966B8}.Release|x64.Build.0 = Release|Any CPU
{DB819A2F-91E1-40FB-8D48-6544169966B8}.Release|x86.ActiveCfg = Release|Any CPU
{DB819A2F-91E1-40FB-8D48-6544169966B8}.Release|x86.Build.0 = Release|Any CPU
{2EDF0328-698B-458A-B10C-AB1B4786A6CA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2EDF0328-698B-458A-B10C-AB1B4786A6CA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2EDF0328-698B-458A-B10C-AB1B4786A6CA}.Debug|x64.ActiveCfg = Debug|Any CPU
{2EDF0328-698B-458A-B10C-AB1B4786A6CA}.Debug|x64.Build.0 = Debug|Any CPU
{2EDF0328-698B-458A-B10C-AB1B4786A6CA}.Debug|x86.ActiveCfg = Debug|Any CPU
{2EDF0328-698B-458A-B10C-AB1B4786A6CA}.Debug|x86.Build.0 = Debug|Any CPU
{2EDF0328-698B-458A-B10C-AB1B4786A6CA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2EDF0328-698B-458A-B10C-AB1B4786A6CA}.Release|Any CPU.Build.0 = Release|Any CPU
{2EDF0328-698B-458A-B10C-AB1B4786A6CA}.Release|x64.ActiveCfg = Release|Any CPU
{2EDF0328-698B-458A-B10C-AB1B4786A6CA}.Release|x64.Build.0 = Release|Any CPU
{2EDF0328-698B-458A-B10C-AB1B4786A6CA}.Release|x86.ActiveCfg = Release|Any CPU
{2EDF0328-698B-458A-B10C-AB1B4786A6CA}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(MonoDevelopProperties) = preSolution
Policies = $0
@ -82,14 +96,5 @@ Global
$1.TabsToSpaces = True
$0.CSharpFormattingPolicy = $2
$2.scope = text/x-csharp
$2.NewLinesForBracesInProperties = False
$2.NewLinesForBracesInAccessors = False
$2.NewLinesForBracesInAnonymousMethods = False
$2.NewLinesForBracesInControlBlocks = False
$2.NewLinesForBracesInAnonymousTypes = False
$2.NewLinesForBracesInObjectCollectionArrayInitializers = False
$2.NewLinesForBracesInLambdaExpressionBody = False
$2.SpacingAfterMethodDeclarationName = True
$2.SpaceAfterMethodCallName = True
EndGlobalSection
EndGlobal