2025-04-24 20:56:44 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
<PropertyGroup>
|
2025-07-11 09:20:23 +08:00
|
|
|
|
<TargetFramework>net462</TargetFramework>
|
2025-04-24 20:56:44 +08:00
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
|
|
|
|
<Configurations>Debug;Release</Configurations>
|
|
|
|
|
|
<LangVersion>13.0</LangVersion>
|
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
|
<UseWPF>True</UseWPF>
|
|
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
|
|
|
|
|
|
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.122" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Reference Include="System.ComponentModel.DataAnnotations" />
|
|
|
|
|
|
</ItemGroup>
|
2025-08-12 23:08:54 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Folder Include="Markup\" />
|
|
|
|
|
|
</ItemGroup>
|
2025-04-24 20:56:44 +08:00
|
|
|
|
</Project>
|