v11.0.2024.1001 设计IPacket全面替换Packet,使用Span降低内存分配
智能大石头
编写于
2024-10-02 07:40:37
X
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="Current">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<IsPackable>false</IsPackable>
<RootNamespace>XUnitTest</RootNamespace>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<DefineConstants>TRACE</DefineConstants>
<OutputPath>..\Bin\UnitTest</OutputPath>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
<DefineConstants>$(DefineConstants);DEBUG</DefineConstants>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Applications\**" />
<Compile Remove="Expressions\**" />
<Compile Remove="Json\**" />
<Compile Remove="Remoting\**" />
<Compile Remove="TestEntity\**" />
<Compile Remove="Yun\**" />
<EmbeddedResource Remove="Applications\**" />
<EmbeddedResource Remove="Expressions\**" />
<EmbeddedResource Remove="Json\**" />
<EmbeddedResource Remove="Remoting\**" />
<EmbeddedResource Remove="TestEntity\**" />
<EmbeddedResource Remove="Yun\**" />
<None Remove="Applications\**" />
<None Remove="Expressions\**" />
<None Remove="Json\**" />
<None Remove="Remoting\**" />
<None Remove="TestEntity\**" />
<None Remove="Yun\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Algorithms\LTOBDownSamplingTests.cs" />
<Compile Remove="Algorithms\LttbDownSamplingTests.cs" />
<Compile Remove="Caching\RedisTest.cs" />
<Compile Remove="Collections\BloomFilterTests.cs" />
<Compile Remove="Http\HttpCodecTests.cs" />
<Compile Remove="Model\HostTests.cs" />
<Compile Remove="PacketTest.cs" />
<Compile Remove="PageParameterTest.cs" />
</ItemGroup>
<ItemGroup>
<None Remove="IO\excel.xlsx" />
</ItemGroup>
<ItemGroup>
<Compile Include="Yun\OssClientTests.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="IO\excel.xlsx" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="BouncyCastle.Cryptography" Version="2.4.0" />
<PackageReference Include="Microsoft.Extensions.Primitives" Version="8.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="Moq" Version="4.20.72" />
<PackageReference Include="NewLife.Modbus" Version="1.8.2024.217" />
<PackageReference Include="NewLife.UnitTest" Version="1.0.2023.1204" />
<PackageReference Include="xunit" Version="2.9.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NewLife.Core\NewLife.Core.csproj" />
<ProjectReference Include="..\NewLife.Security\NewLife.Security.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="Algorithms\sampled.csv">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Algorithms\source2.csv">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Algorithms\source.csv">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Http\leaf.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Serialization\StarAgent.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>
|