.sln reorganization
ln.build build job pending

master
Harald Wolff 2020-11-26 00:09:03 +01:00
parent 259c1275a5
commit 6b0ab48db6
65 changed files with 86 additions and 5 deletions

48
ln.http.sln 100644
View File

@ -0,0 +1,48 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26124.0
MinimumVisualStudioVersion = 15.0.26124.0
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ln.http", "ln.http\ln.http.csproj", "{A6CA4327-4339-4B67-AD43-6E54A0EECC2D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ln.http.tests", "ln.http.tests\ln.http.tests.csproj", "{476CD242-9329-449C-95E4-A5317635B223}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{A6CA4327-4339-4B67-AD43-6E54A0EECC2D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A6CA4327-4339-4B67-AD43-6E54A0EECC2D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A6CA4327-4339-4B67-AD43-6E54A0EECC2D}.Debug|x64.ActiveCfg = Debug|Any CPU
{A6CA4327-4339-4B67-AD43-6E54A0EECC2D}.Debug|x64.Build.0 = Debug|Any CPU
{A6CA4327-4339-4B67-AD43-6E54A0EECC2D}.Debug|x86.ActiveCfg = Debug|Any CPU
{A6CA4327-4339-4B67-AD43-6E54A0EECC2D}.Debug|x86.Build.0 = Debug|Any CPU
{A6CA4327-4339-4B67-AD43-6E54A0EECC2D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A6CA4327-4339-4B67-AD43-6E54A0EECC2D}.Release|Any CPU.Build.0 = Release|Any CPU
{A6CA4327-4339-4B67-AD43-6E54A0EECC2D}.Release|x64.ActiveCfg = Release|Any CPU
{A6CA4327-4339-4B67-AD43-6E54A0EECC2D}.Release|x64.Build.0 = Release|Any CPU
{A6CA4327-4339-4B67-AD43-6E54A0EECC2D}.Release|x86.ActiveCfg = Release|Any CPU
{A6CA4327-4339-4B67-AD43-6E54A0EECC2D}.Release|x86.Build.0 = Release|Any CPU
{476CD242-9329-449C-95E4-A5317635B223}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{476CD242-9329-449C-95E4-A5317635B223}.Debug|Any CPU.Build.0 = Debug|Any CPU
{476CD242-9329-449C-95E4-A5317635B223}.Debug|x64.ActiveCfg = Debug|Any CPU
{476CD242-9329-449C-95E4-A5317635B223}.Debug|x64.Build.0 = Debug|Any CPU
{476CD242-9329-449C-95E4-A5317635B223}.Debug|x86.ActiveCfg = Debug|Any CPU
{476CD242-9329-449C-95E4-A5317635B223}.Debug|x86.Build.0 = Debug|Any CPU
{476CD242-9329-449C-95E4-A5317635B223}.Release|Any CPU.ActiveCfg = Release|Any CPU
{476CD242-9329-449C-95E4-A5317635B223}.Release|Any CPU.Build.0 = Release|Any CPU
{476CD242-9329-449C-95E4-A5317635B223}.Release|x64.ActiveCfg = Release|Any CPU
{476CD242-9329-449C-95E4-A5317635B223}.Release|x64.Build.0 = Release|Any CPU
{476CD242-9329-449C-95E4-A5317635B223}.Release|x86.ActiveCfg = Release|Any CPU
{476CD242-9329-449C-95E4-A5317635B223}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal

View File

@ -0,0 +1,18 @@
using NUnit.Framework;
namespace ln.http.tests
{
public class Tests
{
[SetUp]
public void Setup()
{
}
[Test]
public void Test1()
{
Assert.Pass();
}
}
}

View File

@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NUnit" Version="3.12.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.16.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0"/>
</ItemGroup>
</Project>

View File

@ -14,11 +14,11 @@
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\ln.application\ln.application.csproj" />
<ProjectReference Include="..\ln.collections\ln.collections.csproj" />
<ProjectReference Include="..\ln.logging\ln.logging.csproj" />
<ProjectReference Include="..\ln.threading\ln.threading.csproj" />
<ProjectReference Include="..\ln.type\ln.type.csproj" />
<PackageReference Include="ln.application" Version="0.1.1" />
<PackageReference Include="ln.collections" Version="0.1.2" />
<PackageReference Include="ln.logging" Version="1.0.0" />
<PackageReference Include="ln.threading" Version="0.1.0" />
<PackageReference Include="ln.type" Version="0.1.1" />
</ItemGroup>
</Project>