Skip to content

Commit

Permalink
stubbed Owin.Handlers.AspNet
Browse files Browse the repository at this point in the history
  • Loading branch information
remi committed Dec 12, 2010
1 parent aac45ba commit ef22b6f
Show file tree
Hide file tree
Showing 6 changed files with 199 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Owin.Common.sln
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Owin.Handlers.Cgi", "src\Ha
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Owin.Handlers.Cgi.Specs", "spec\Handlers\Cgi\Owin.Handlers.Cgi.Specs.csproj", "{511536C9-BCB6-49E2-8855-F23A5CF4A34F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Owin.Handlers.AspNet", "src\Handlers\AspNet\Owin.Handlers.AspNet.csproj", "{8EF793AF-AD17-49D3-8884-A8AFEC75641D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Owin.Handlers.AspNet.Specs", "spec\Handlers\AspNet\Owin.Handlers.AspNet.Specs.csproj", "{F5EE0303-5943-48ED-A61E-3274D8A21214}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -37,6 +41,14 @@ Global
{511536C9-BCB6-49E2-8855-F23A5CF4A34F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{511536C9-BCB6-49E2-8855-F23A5CF4A34F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{511536C9-BCB6-49E2-8855-F23A5CF4A34F}.Release|Any CPU.Build.0 = Release|Any CPU
{8EF793AF-AD17-49D3-8884-A8AFEC75641D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8EF793AF-AD17-49D3-8884-A8AFEC75641D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8EF793AF-AD17-49D3-8884-A8AFEC75641D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8EF793AF-AD17-49D3-8884-A8AFEC75641D}.Release|Any CPU.Build.0 = Release|Any CPU
{F5EE0303-5943-48ED-A61E-3274D8A21214}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F5EE0303-5943-48ED-A61E-3274D8A21214}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F5EE0303-5943-48ED-A61E-3274D8A21214}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F5EE0303-5943-48ED-A61E-3274D8A21214}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
9 changes: 9 additions & 0 deletions spec/Handlers/AspNet/Class1.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
using System;
using System.Collections.Generic;
using System.Text;

namespace Owin.Handlers.AspNet.Specs {

public class Class1 {
}
}
69 changes: 69 additions & 0 deletions spec/Handlers/AspNet/Owin.Handlers.AspNet.Specs.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{F5EE0303-5943-48ED-A61E-3274D8A21214}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Owin.Handlers.AspNet.Specs</RootNamespace>
<AssemblyName>Owin.Handlers.AspNet.Specs</AssemblyName>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="nunit.framework, Version=2.5.8.10295, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\lib\nunit.framework.dll</HintPath>
</Reference>
<Reference Include="owin">
<HintPath>..\..\..\lib\owin.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Class1.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\src\Common\Owin.Common.csproj">
<Project>{163A0E93-A512-4B2F-AF1A-301804749EDE}</Project>
<Name>Owin.Common</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\src\Handlers\AspNet\Owin.Handlers.AspNet.csproj">
<Project>{8EF793AF-AD17-49D3-8884-A8AFEC75641D}</Project>
<Name>Owin.Handlers.AspNet</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
9 changes: 9 additions & 0 deletions src/Handlers/AspNet/AspNet.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
using System;
using System.Collections.Generic;
using System.Text;

namespace Owin.Handlers {

public class AspNet {
}
}
36 changes: 36 additions & 0 deletions src/Handlers/AspNet/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
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: AssemblyTitle("Owin.Handlers.AspNet")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("Owin.Handlers.AspNet")]
[assembly: AssemblyCopyright("Copyright © Microsoft 2010")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// 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("0cee2748-f5fc-402f-b891-20fd3ee2bd64")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
64 changes: 64 additions & 0 deletions src/Handlers/AspNet/Owin.Handlers.AspNet.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{8EF793AF-AD17-49D3-8884-A8AFEC75641D}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Owin.Handlers.AspNet</RootNamespace>
<AssemblyName>Owin.Handlers.AspNet</AssemblyName>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>
</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="owin">
<HintPath>..\..\..\lib\owin.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="AspNet.cs" />
<Compile Include="AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Common\Owin.Common.csproj">
<Project>{163A0E93-A512-4B2F-AF1A-301804749EDE}</Project>
<Name>Owin.Common</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

0 comments on commit ef22b6f

Please sign in to comment.