Aspire, NamedPipes, NamedPipesQuotes
------------------------------------------------------------------
D:\Projects\VS\26\Aspire\AspireNamedPipesQuotesService01\AspireNamedPipesQuotesService01.slnx
D:\Projects\VS\26\Aspire\AspireNamedPipesQuotesService01\AppHost01\AppHost01.csproj
D:\Projects\VS\26\Aspire\AspireNamedPipesQuotesService01\CA.Qoutes.Client.Console01\CA.Qoutes.Client.Console01.csproj
D:\Projects\VS\26\Aspire\AspireNamedPipesQuotesService01\CA.Quotes.FeedSimulator01\CA.Quotes.FeedSimulator01.csproj
D:\Projects\VS\26\Aspire\AspireNamedPipesQuotesService01\CA.Quotes.Server01\CA.Quotes.Server01.csproj
D:\Projects\VS\26\Aspire\AspireNamedPipesQuotesService01\Quotes.Contracts\Quotes.Contracts.csproj
-----------------------------------------------------------------------
Aspire works
-----------------------------------------------------------------------
<Project Sdk="Microsoft.NET.Sdk">
<Sdk Name="Aspire.AppHost.Sdk" Version="9.5.0" />
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<UserSecretsId>d0ca2f0b-625b-408f-b622-1539b811ffb8</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Aspire.Hosting.AppHost" Version="9.5.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CA.Qoutes.Client.Console01\CA.Qoutes.Client.Console01.csproj" />
<ProjectReference Include="..\CA.Quotes.FeedSimulator01\CA.Quotes.FeedSimulator01.csproj" />
<ProjectReference Include="..\CA.Quotes.Server01\CA.Quotes.Server01.csproj" />
</ItemGroup>
</Project>
--------------------------------------------------------------------Client
---------------------------------------------------------------------------------
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Quotes.Contracts\Quotes.Contracts.csproj" />
</ItemGroup>
</Project>
-----------------------------------------------------------------------
FeedSimulator
-----------------------------------------------------------------------<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Quotes.Contracts\Quotes.Contracts.csproj" />
</ItemGroup>
</Project>
------------------------------------------------------------------------
Server
------------------------------------------------------------------------
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.2" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Quotes.Contracts\Quotes.Contracts.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="BusLibrary02.Core">
<HintPath>..\..\..\..\WebService\BusLibrary02.Core\bin\Release\net10.0\BusLibrary02.Core.dll</HintPath>
</Reference>
</ItemGroup>
</Project>
------------------------------------------------------------------------------
Contracts
------------------------------------------------------------------------------
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Reference Include="BusLibrary02.Core">
<HintPath>..\..\..\..\WebService\BusLibrary02.Core\bin\Debug\net10.0\BusLibrary02.Core.dll</HintPath>
</Reference>
</ItemGroup>
</Project>
-----------------------------------------------------------------------------------