-
Notifications
You must be signed in to change notification settings - Fork 6
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
Showing
16 changed files
with
421 additions
and
27 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"TestRunner": "", | ||
"TestPlatform": "x86", | ||
"TestApartmentState": "STA", | ||
"TestSettings": "", | ||
"ExcludeAttributes": "System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAttribute", | ||
"ExcludeFiles": "", | ||
"ExcludeDirectories": "", | ||
"Filters": "+[*]*", | ||
"IsIncludingSolutionAssemblies": true, | ||
"IsExcludingTestAssemblies": false, | ||
"IsCoveringByTest": true, | ||
"IsMergingByHash": true, | ||
"IsSkippingAutoProps": 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
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
51 changes: 51 additions & 0 deletions
51
src/NETStandard.HttpListener/NETStandard.HttpListener.csproj
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,51 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<Description>HttpListener for .NET Core (NETStandard) and Universal Windows Platform (UWP)</Description> | ||
<Copyright>Copyright © Robert Sundström 2016, Stef Heyenrath 2017</Copyright> | ||
<AssemblyTitle>NETStandard.HttpListener</AssemblyTitle> | ||
<VersionPrefix>1.0.2.0</VersionPrefix> | ||
<Authors>Robert Sundström;Stef Heyenrath</Authors> | ||
<TargetFrameworks>netstandard1.3</TargetFrameworks> | ||
<AssemblyName>NETStandard.HttpListener</AssemblyName> | ||
<PackageId>NETStandard.HttpListener</PackageId> | ||
<PackageTags>Http;Web Server;HttpListener;NetStandard;.NET Core</PackageTags> | ||
<PackageReleaseNotes>Fixed a bug in HttpListenerRequest</PackageReleaseNotes> | ||
<PackageProjectUrl>https://github.com/StefH/NETStandard.HttpListener</PackageProjectUrl> | ||
<PackageLicenseUrl>https://raw.githubusercontent.com/StefH/NETStandard.HttpListener/master/LICENSE</PackageLicenseUrl> | ||
<PackageTargetFallback Condition=" '$(TargetFramework)' == 'netstandard1.3' ">$(PackageTargetFallback);dotnet5.4</PackageTargetFallback> | ||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' "> | ||
<DefineConstants>$(DefineConstants);NETSTANDARD</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="JetBrains.Annotations" Version="10.2.1"> | ||
<PrivateAssets>All</PrivateAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' "> | ||
<PackageReference Include="System.Collections" Version="4.3.0" /> | ||
<PackageReference Include="System.IO" Version="4.3.0" /> | ||
<PackageReference Include="System.Linq" Version="4.3.0" /> | ||
<PackageReference Include="System.Net.Http" Version="4.3.0" /> | ||
<PackageReference Include="System.Net.Sockets" Version="4.3.0" /> | ||
<PackageReference Include="System.Runtime.Extensions" Version="4.3.0" /> | ||
<PackageReference Include="System.Runtime.InteropServices" Version="4.3.0" /> | ||
<PackageReference Include="System.Threading.Tasks" Version="4.3.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition=" '$(TargetFramework)' == 'uap10.0' "> | ||
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform" Version="5.2.2" /> | ||
<PackageReference Include="System.Collections" Version="4.3.0" /> | ||
<PackageReference Include="System.IO" Version="4.3.0" /> | ||
<PackageReference Include="System.Linq" Version="4.3.0" /> | ||
<PackageReference Include="System.Runtime.Extensions" Version="4.3.0" /> | ||
<PackageReference Include="System.Runtime.InteropServices" Version="4.3.0" /> | ||
<PackageReference Include="System.Threading.Tasks" Version="4.3.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
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,19 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp1.0</TargetFramework> | ||
<AssemblyName>TestConsoleApp</AssemblyName> | ||
<OutputType>Exe</OutputType> | ||
<PackageId>TestConsoleApp</PackageId> | ||
<RuntimeFrameworkVersion>1.1.1</RuntimeFrameworkVersion> | ||
<PackageTargetFallback>$(PackageTargetFallback);dnxcore50</PackageTargetFallback> | ||
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute> | ||
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> | ||
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\NETStandard.HttpListener\NETStandard.HttpListener.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
22 changes: 22 additions & 0 deletions
22
test/NETStandard.HttpListener.Tests/NETStandard.HttpListener.Tests.csproj
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,22 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp1.1</TargetFramework> | ||
<AssemblyName>NETStandard.HttpListener.Tests</AssemblyName> | ||
<PackageId>NETStandard.HttpListener.Tests</PackageId> | ||
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles> | ||
<PackageTargetFallback>$(PackageTargetFallback);dnxcore50</PackageTargetFallback> | ||
<RuntimeFrameworkVersion>1.1.1</RuntimeFrameworkVersion> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\NETStandard.HttpListener\NETStandard.HttpListener.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.0-beta1-build1309" /> | ||
<PackageReference Include="xunit" Version="2.3.0-beta1-build3642" /> | ||
</ItemGroup> | ||
|
||
</Project> |
Oops, something went wrong.