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.Library</RootNamespace>
|
2023-07-03 01:51:09 +08:00
|
|
|
<AssemblyName>CMM.Library</AssemblyName>
|
2022-05-23 00:58:58 +08:00
|
|
|
<Product>ControlMyMonitorManagement</Product>
|
|
|
|
|
<UseWPF>true</UseWPF>
|
|
|
|
|
<Company>Dang</Company>
|
|
|
|
|
<Copyright>Copyright © DangWang $([System.DateTime]::Now.ToString(yyyy))</Copyright>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Release'">
|
|
|
|
|
<Major>1</Major>
|
|
|
|
|
<Minor>0</Minor>
|
|
|
|
|
<ProjectStartedDate>$([System.DateTime]::op_Subtraction($([System.DateTime]::get_Now().get_Date()),$([System.DateTime]::new(2017,9,17))).get_TotalDays())</ProjectStartedDate>
|
|
|
|
|
<DaysSinceProjectStarted>$([System.DateTime]::Now.ToString(Hmm))</DaysSinceProjectStarted>
|
|
|
|
|
<DateTimeSuffix>$([System.DateTime]::Now.ToString(yyyyMMdd))</DateTimeSuffix>
|
|
|
|
|
<VersionSuffix>$(Major).$(Minor).$(ProjectStartedDate).$(DaysSinceProjectStarted)</VersionSuffix>
|
|
|
|
|
<AssemblyVersion Condition=" '$(DateTimeSuffix)' == '' ">0.0.0.1</AssemblyVersion>
|
|
|
|
|
<AssemblyVersion Condition=" '$(DateTimeSuffix)' != '' ">$(VersionSuffix)</AssemblyVersion>
|
|
|
|
|
<Version Condition=" '$(DateTimeSuffix)' == '' ">0.0.0.1</Version>
|
|
|
|
|
<Version Condition=" '$(DateTimeSuffix)' != '' ">$(DateTimeSuffix)</Version>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2026-01-10 02:47:54 -05:00
|
|
|
<Content Include="Resource\ControlMyMonitor.exe">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
<Link>ControlMyMonitor.exe</Link>
|
|
|
|
|
</Content>
|
2022-05-23 00:58:58 +08:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-07-03 01:51:09 +08:00
|
|
|
<ProjectReference Include="..\CMMModel\CMMModel.csproj" />
|
2022-05-23 00:58:58 +08:00
|
|
|
<ProjectReference Include="..\Language\Language.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|