| 12345678910111213141516171819202122232425262728293031323334 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net48</TargetFramework>
- <UseWPF>true</UseWPF>
- <Platforms>x64</Platforms>
- <PlatformTarget>x64</PlatformTarget>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <LangVersion>latest</LangVersion>
- <RootNamespace>TeamAAS.Global</RootNamespace>
- <AssemblyName>TeamAAS.Global</AssemblyName>
- <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
- </PropertyGroup>
- <ItemGroup>
- <!-- 遗留工具类,依赖宿主工程类型,无任何引用方——排除出编译 -->
- <Compile Remove="Localization\LocalizationTemplateGenerator.cs" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="HandyControl" Version="3.5.1" />
- <PackageReference Include="MahApps.Metro.IconPacks.Material" Version="6.2.1" />
- <PackageReference Include="OpenCvSharp4" Version="4.13.0.20260627" />
- <PackageReference Include="OpenCvSharp4.runtime.win" Version="4.13.0.20260627" />
- <PackageReference Include="PropertyGridLib" Version="1.2.0" />
- <PackageReference Include="MessagePack" Version="3.1.8" />
- <PackageReference Include="System.Text.Json" Version="10.0.0" />
- <PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
- <PackageReference Include="NLog" Version="5.2.8" />
- <Reference Include="System.Drawing" />
- <Reference Include="System.Net.Http" />
- </ItemGroup>
- </Project>
|