You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
2.3 KiB
Plaintext
52 lines
2.3 KiB
Plaintext
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<OutputType>Library</OutputType>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<!-- 临时兼容方案,微软明确标记为不安全,未来可能删除 -->
|
|
<EnableUnsafeBinaryFormatterSerialization>true</EnableUnsafeBinaryFormatterSerialization>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<OutputPath>..\..\bin\Debug\</OutputPath>
|
|
<CodeAnalysisRuleSet />
|
|
<UseVSHostingProcess>true</UseVSHostingProcess>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<OutputPath>..\..\bin\Release\</OutputPath>
|
|
<CodeAnalysisRuleSet />
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
|
|
<OutputPath>..\..\bin\Debug\</OutputPath>
|
|
<CodeAnalysisRuleSet>
|
|
</CodeAnalysisRuleSet>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
|
|
<OutputPath>..\..\bin\Release\</OutputPath>
|
|
<CodeAnalysisRuleSet>
|
|
</CodeAnalysisRuleSet>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Krypton.Docking" Version="95.25.8.235" />
|
|
<PackageReference Include="Krypton.Navigator" Version="95.25.8.235" />
|
|
<PackageReference Include="Krypton.Toolkit" Version="95.25.8.235" />
|
|
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
|
|
<PackageReference Include="Microsoft.VisualBasic" Version="10.3.0" />
|
|
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Update="QuickListView.cs">
|
|
<SubType>Component</SubType>
|
|
</Compile>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\GeoSigmaDrawLib\GeoSigmaDrawLib.csproj" />
|
|
<ProjectReference Include="..\SymbolLibInterface\SymbolLibInterface.csproj" />
|
|
<ProjectReference Include="..\UCDraw\UCDraw.csproj" />
|
|
</ItemGroup>
|
|
<Target Name="CustomClean" AfterTargets="Clean">
|
|
<RemoveDir Directories="$(BaseIntermediateOutputPath)" />
|
|
<!-- 删除obj -->
|
|
</Target>
|
|
</Project> |