2022-05-23 00:58:58 +08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
Add brightness/contrast sliders, input source switching, and 9-language localization
- Add VCP commands for brightness (10), contrast (12), input source (60)
- Fix UTF-16 encoding for monitor data parsing
- Add system tray app with monitor controls
- Add localization for en, es, fr, de, zh, ja, pt, it, hi
- Update to .NET 9.0
- Add LICENSE and README
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-03 22:11:35 -05:00
|
|
|
<TargetFramework>net9.0-windows</TargetFramework>
|
2022-05-23 00:58:58 +08:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<RootNamespace>CMM.Tester</RootNamespace>
|
|
|
|
|
<Product>ControlMyMonitorManagement</Product>
|
|
|
|
|
<Company>Dang</Company>
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
<Copyright>Copyright © DangWang $([System.DateTime]::Now.ToString(yyyy))</Copyright>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
|
|
|
|
|
<PackageReference Include="NUnit" Version="3.13.3" />
|
|
|
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1" />
|
|
|
|
|
<PackageReference Include="NUnit.Analyzers" Version="3.3.0" />
|
|
|
|
|
<PackageReference Include="coverlet.collector" Version="3.1.2" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-07-03 01:51:09 +08:00
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\CMMModel\CMMModel.csproj" />
|
|
|
|
|
<ProjectReference Include="..\CMMService\CMMService.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Language\Language.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Library\Library.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2022-05-23 00:58:58 +08:00
|
|
|
</Project>
|