Skip to content
Closed
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 DoggyDog/DoggyDog.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

<ItemGroup>
<ProjectReference Include="..\NotoriousTest.Core\NotoriousTest.Core.csproj" />
<ProjectReference Include="..\NotoriousTest.SqlLiteRegistry\NotoriousTest.SqlLiteRegistry.csproj" />
<ProjectReference Include="..\NotoriousTest.Watchdog\NotoriousTest.Watchdog.csproj" />
<ProjectReference Include="..\NotoriousTest.Internal.SqlLiteRegistry\NotoriousTest.Internal.SqlLiteRegistry.csproj" />
<ProjectReference Include="..\NotoriousTest.Internal.Watchdog\NotoriousTest.Internal.Watchdog.csproj" />
</ItemGroup>

<Target Name="PublishDoggyDogToArtifacts" AfterTargets="Build" Condition="'$(PublishDoggyDogToArtifactsOnBuild)' != 'false'">
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<PackageId>NotoriousTest.Internal.Runtime</PackageId>
<AssemblyName>NotoriousTest.Runtime</AssemblyName>
<RootNamespace>NotoriousTest.Runtime</RootNamespace>
<Description>[Internal] Provides the runtime configuration layer for NotoriousTest. Not intended for direct consumption — use the NotoriousTest package instead.</Description>
<IsPackable>true</IsPackable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Text.Json" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NotoriousTest.Core\NotoriousTest.Core.csproj" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>

<PackageId>NotoriousTest.Internal.SqlLiteRegistry</PackageId>
<AssemblyName>NotoriousTest.SqlLiteRegistry</AssemblyName>
<RootNamespace>NotoriousTest.SqlLiteRegistry</RootNamespace>
<Description>[Internal] SQLite-backed infrastructure registry for NotoriousTest. Not intended for direct consumption — use the NotoriousTest package instead.</Description>
<IsPackable>true</IsPackable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\NotoriousTest.Core\NotoriousTest.Core.csproj" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<PackageId>NotoriousTest.Internal.TestSettings</PackageId>
<AssemblyName>NotoriousTest.TestSettings</AssemblyName>
<RootNamespace>NotoriousTest.Core.Settings</RootNamespace>
<Description>[Internal] JSON-based test settings provider for NotoriousTest. Not intended for direct consumption — use the NotoriousTest package instead.</Description>
<IsPackable>true</IsPackable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\NotoriousTest.Core\NotoriousTest.Core.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<PackageId>NotoriousTest.Internal.Watchdog</PackageId>
<AssemblyName>NotoriousTest.Watchdog</AssemblyName>
<RootNamespace>NotoriousTest.Watchdog</RootNamespace>
<Description>[Internal] Watchdog service for detecting and recovering stale test environments in NotoriousTest. Not intended for direct consumption — use the NotoriousTest package instead.</Description>
<IsPackable>true</IsPackable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\NotoriousTest.Core\NotoriousTest.Core.csproj" />
<ProjectReference Include="..\NotoriousTest.Internal.SqlLiteRegistry\NotoriousTest.Internal.SqlLiteRegistry.csproj" />
</ItemGroup>
</Project>
8 changes: 4 additions & 4 deletions NotoriousTest.NoDoggyDog.slnf
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"path": "NotoriousTest.slnx",
"projects": [
"NotoriousTest.Core\\NotoriousTest.Core.csproj",
"NotoriousTest.Runtime\\NotoriousTest.Runtime.csproj",
"NotoriousTest.SqlLiteRegistry\\NotoriousTest.SqlLiteRegistry.csproj",
"NotoriousTest.TestSettings\\NotoriousTest.TestSettings.csproj",
"NotoriousTest.Watchdog\\NotoriousTest.Watchdog.csproj",
"NotoriousTest.Internal.Runtime\\NotoriousTest.Internal.Runtime.csproj",
"NotoriousTest.Internal.SqlLiteRegistry\\NotoriousTest.Internal.SqlLiteRegistry.csproj",
"NotoriousTest.Internal.TestSettings\\NotoriousTest.Internal.TestSettings.csproj",
"NotoriousTest.Internal.Watchdog\\NotoriousTest.Internal.Watchdog.csproj",
"NotoriousTest\\NotoriousTest.csproj",
"NotoriousTest.MSTest\\NotoriousTest.MSTest.csproj",
"NotoriousTest.NUnit\\NotoriousTest.NUnit.csproj",
Expand Down
12 changes: 0 additions & 12 deletions NotoriousTest.Runtime/NotoriousTest.Runtime.csproj

This file was deleted.

14 changes: 0 additions & 14 deletions NotoriousTest.TestSettings/NotoriousTest.TestSettings.csproj

This file was deleted.

4 changes: 2 additions & 2 deletions NotoriousTest.UnitTests/NotoriousTest.UnitTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
<ItemGroup>
<ProjectReference Include="..\NotoriousTest.Core\NotoriousTest.Core.csproj" />
<ProjectReference Include="..\NotoriousTest\NotoriousTest.csproj" />
<ProjectReference Include="..\NotoriousTest.Watchdog\NotoriousTest.Watchdog.csproj" />
<ProjectReference Include="..\NotoriousTest.SqlLiteRegistry\NotoriousTest.SqlLiteRegistry.csproj" />
<ProjectReference Include="..\NotoriousTest.Internal.Watchdog\NotoriousTest.Internal.Watchdog.csproj" />
<ProjectReference Include="..\NotoriousTest.Internal.SqlLiteRegistry\NotoriousTest.Internal.SqlLiteRegistry.csproj" />
</ItemGroup>

</Project>
12 changes: 0 additions & 12 deletions NotoriousTest.Watchdog/NotoriousTest.Watchdog.csproj

This file was deleted.

8 changes: 4 additions & 4 deletions NotoriousTest.slnx
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
<Folder Name="/src/1. Core/">
<Project Path="DoggyDog/DoggyDog.csproj" Id="8408dd70-9d47-4f50-bab4-bcd86e50bc3d" />
<Project Path="NotoriousTest.Core/NotoriousTest.Core.csproj" Id="ab05b07d-dc15-407e-9af7-e995a4f7c2d9" />
<Project Path="NotoriousTest.Runtime/NotoriousTest.Runtime.csproj" Id="f2d11925-d0c9-4b26-8b3b-588dfe6edb82" />
<Project Path="NotoriousTest.SqlLiteRegistry/NotoriousTest.SqlLiteRegistry.csproj" Id="fe120d83-193d-410c-98c5-baf3fd93af7a" />
<Project Path="NotoriousTest.TestSettings/NotoriousTest.TestSettings.csproj" Id="0989b9dc-fe24-43ee-b04a-ac791bf12c4f" />
<Project Path="NotoriousTest.Watchdog/NotoriousTest.Watchdog.csproj" Id="a925d516-7983-4cbf-a637-e54edecb47b3" />
<Project Path="NotoriousTest.Internal.Runtime/NotoriousTest.Internal.Runtime.csproj" Id="f2d11925-d0c9-4b26-8b3b-588dfe6edb82" />
<Project Path="NotoriousTest.Internal.SqlLiteRegistry/NotoriousTest.Internal.SqlLiteRegistry.csproj" Id="fe120d83-193d-410c-98c5-baf3fd93af7a" />
<Project Path="NotoriousTest.Internal.TestSettings/NotoriousTest.Internal.TestSettings.csproj" Id="0989b9dc-fe24-43ee-b04a-ac791bf12c4f" />
<Project Path="NotoriousTest.Internal.Watchdog/NotoriousTest.Internal.Watchdog.csproj" Id="a925d516-7983-4cbf-a637-e54edecb47b3" />
<Project Path="NotoriousTest/NotoriousTest.csproj" />
</Folder>
<Folder Name="/src/2. TestFramework/">
Expand Down
8 changes: 4 additions & 4 deletions NotoriousTest/NotoriousTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NotoriousTest.Core\NotoriousTest.Core.csproj" />
<ProjectReference Include="..\NotoriousTest.Runtime\NotoriousTest.Runtime.csproj" PrivateAssets="contentfiles;analyzers;build;native"/>
<ProjectReference Include="..\NotoriousTest.SqlLiteRegistry\NotoriousTest.SqlLiteRegistry.csproj" PrivateAssets="contentfiles;analyzers;build;native"/>
<ProjectReference Include="..\NotoriousTest.TestSettings\NotoriousTest.TestSettings.csproj" PrivateAssets="contentfiles;analyzers;build;native"/>
<ProjectReference Include="..\NotoriousTest.Watchdog\NotoriousTest.Watchdog.csproj" PrivateAssets="contentfiles;analyzers;build;native"/>
<ProjectReference Include="..\NotoriousTest.Internal.Runtime\NotoriousTest.Internal.Runtime.csproj" PrivateAssets="contentfiles;analyzers;build;native"/>
<ProjectReference Include="..\NotoriousTest.Internal.SqlLiteRegistry\NotoriousTest.Internal.SqlLiteRegistry.csproj" PrivateAssets="contentfiles;analyzers;build;native"/>
<ProjectReference Include="..\NotoriousTest.Internal.TestSettings\NotoriousTest.Internal.TestSettings.csproj" PrivateAssets="contentfiles;analyzers;build;native"/>
<ProjectReference Include="..\NotoriousTest.Internal.Watchdog\NotoriousTest.Internal.Watchdog.csproj" PrivateAssets="contentfiles;analyzers;build;native"/>
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="NotoriousTest.XUnit" />
Expand Down
Loading