2
0
Files
controlmymonitormanagement/Library/Library.csproj

39 lines
1.7 KiB
XML
Raw Normal View History

2022-05-23 00:58:58 +08:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<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>
<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>