Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Light.TemporaryStreams.sln
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Light.TemporaryStreams", "src\Light.TemporaryStreams\Light.TemporaryStreams.csproj", "{C86E6D31-A10A-4B61-B490-5A7AC4451BA5}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Light.TemporaryStreams.Core", "src\Light.TemporaryStreams.Core\Light.TemporaryStreams.Core.csproj", "{C86E6D31-A10A-4B61-B490-5A7AC4451BA5}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Light.TemporaryStreams.Tests", "tests\Light.TemporaryStreams.Tests\Light.TemporaryStreams.Tests.csproj", "{4D6B4F48-1E4B-4ACA-9F32-829442DB5E56}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Light.TemporaryStreams.Core.Tests", "tests\Light.TemporaryStreams.Core.Tests\Light.TemporaryStreams.Core.Tests.csproj", "{4D6B4F48-1E4B-4ACA-9F32-829442DB5E56}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SolutionItems", "SolutionItems", "{73CAF5D7-5150-498F-978D-5D5D16E227FF}"
ProjectSection(SolutionItems) = preProject
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<IsAotCompatible>true</IsAotCompatible>
<RootNamespace>Light.TemporaryStreams</RootNamespace>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using FluentAssertions;
using Xunit;

namespace Light.TemporaryStreams.Tests;
namespace Light.TemporaryStreams;

[Trait("Category", "Triangulation")]
public sealed class ArrayAllocationTests
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Threading;

namespace Light.TemporaryStreams.Tests;
namespace Light.TemporaryStreams;

public sealed class AsyncResultNullObject : IAsyncResult
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Light.TemporaryStreams.Tests.CallTracking;
namespace Light.TemporaryStreams.CallTracking;

public abstract class BaseCallTracker
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Collections.Generic;
using FluentAssertions;

namespace Light.TemporaryStreams.Tests.CallTracking;
namespace Light.TemporaryStreams.CallTracking;

public sealed class CallTracker : BaseCallTracker, ICallTracker
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using Light.GuardClauses;
using Xunit.Sdk;

namespace Light.TemporaryStreams.Tests.CallTracking;
namespace Light.TemporaryStreams.CallTracking;

public sealed class CallTrackers
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Light.TemporaryStreams.Tests.CallTracking;
namespace Light.TemporaryStreams.CallTracking;

public interface ICallTracker
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<IsPackable>false</IsPackable>
<TestingPlatformDotnetTestSupport>true</TestingPlatformDotnetTestSupport>
<UseMicrosoftTestingPlatformRunner>true</UseMicrosoftTestingPlatformRunner>
<RootNamespace>Light.TemporaryStreams</RootNamespace>
</PropertyGroup>

<ItemGroup>
Expand All @@ -16,7 +17,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\src\Light.TemporaryStreams\Light.TemporaryStreams.csproj" />
<ProjectReference Include="..\..\src\Light.TemporaryStreams.Core\Light.TemporaryStreams.Core.csproj" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
using System.Threading;
using System.Threading.Tasks;
using FluentAssertions;
using Light.TemporaryStreams.Tests.CallTracking;
using Light.TemporaryStreams.CallTracking;

namespace Light.TemporaryStreams.Tests;
namespace Light.TemporaryStreams;

public sealed class StreamMock : Stream
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using FluentAssertions;
using Xunit;

namespace Light.TemporaryStreams.Tests;
namespace Light.TemporaryStreams;

public sealed class TemporaryStreamForwardingTests
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using FluentAssertions;
using Xunit;

namespace Light.TemporaryStreams.Tests;
namespace Light.TemporaryStreams;

public static class TemporaryStreamServiceTests
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
using System.Text;
using System.Threading.Tasks;
using FluentAssertions;
using Light.TemporaryStreams.Tests.CallTracking;
using Light.TemporaryStreams.CallTracking;
using Xunit;

namespace Light.TemporaryStreams.Tests;
namespace Light.TemporaryStreams;

public static class TemporaryStreamTests
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@
"xunit.v3.runner.common": "[2.0.3]"
}
},
"light.temporarystreams": {
"light.temporarystreams.core": {
"type": "Project",
"dependencies": {
"Light.GuardClauses": "[13.0.0, )"
Expand Down