mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-08-31 19:08:29 +00:00
30 lines
1.4 KiB
XML
30 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<IsPackable>false</IsPackable>
|
|
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
|
|
<GenerateDocumentationFile>false</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
|
|
<PackageReference Include="xunit" Version="2.9.3" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="NSubstitute" Version="5.3.0" />
|
|
<PackageReference Include="FluentAssertions" Version="7.0.0" />
|
|
</ItemGroup>
|
|
|
|
<!-- Reference the Abstractions project only — no Crestron SDK dependency -->
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\PepperDash.Core.Abstractions\PepperDash.Core.Abstractions.csproj" />
|
|
<!-- PepperDash.Core is referenced so we can test Device and other concrete types.
|
|
DebugServiceRegistration.Register() is called via a [ModuleInitializer] before any
|
|
test runs, so Debug's static constructor uses fakes and never touches the Crestron SDK. -->
|
|
<ProjectReference Include="..\PepperDash.Core\PepperDash.Core.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|