mirror of
https://github.com/RedWizardsLab/EchoHub.git
synced 2026-09-04 08:36:11 +02:00
40 lines
1.5 KiB
XML
40 lines
1.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\EchoHub.Core\EchoHub.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AlwaysUpToDate" Version="2.0.2.20250223" />
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="10.0.3" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.3" />
|
|
<PackageReference Include="NetCoreAudio" Version="2.0.1" />
|
|
<PackageReference Include="Serilog" Version="4.3.1" />
|
|
<PackageReference Include="Serilog.Settings.Configuration" Version="10.0.0" />
|
|
<PackageReference Include="Serilog.Sinks.File" Version="7.0.0" />
|
|
<PackageReference Include="Terminal.Gui" Version="2.0.0-develop.5043" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="appsettings.json" Condition="Exists('appsettings.json')">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="Assets\**">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
<EmbeddedResource Include="appsettings.example.json">
|
|
<LogicalName>EchoHub.Client.appsettings.example.json</LogicalName>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<PackageIcon></PackageIcon>
|
|
<ApplicationIcon>Assets\hue_icon.ico</ApplicationIcon>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|