mirror of
https://gitee.com/LongbowEnterprise/BootstrapBlazor.git
synced 2025-12-06 07:28:50 +08:00
* chore: 更新依赖到最新 * chore: 更新文件编码 * chore: 更新文件编码 * refactor: 更改过期方法 * test: 更新 ToMarkup 扩展方法 * chore: 更新文件编码 * test: 更新 MouseEventArgs 参数 * refactor: 精简代码 * refactor: 精简代码 * refactor: 增加延时确保单元测试通过 * chore: 增加异步销毁代码
31 lines
1013 B
XML
31 lines
1013 B
XML
<Project>
|
|
|
|
<Import Project="..\Directory.Build.props" />
|
|
<Import Project="..\Framework.props" />
|
|
|
|
<PropertyGroup>
|
|
<IsPackable>false</IsPackable>
|
|
<IsTestProject>true</IsTestProject>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.*" />
|
|
<PackageReference Include="xunit" Version="2.*" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="3.*">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="coverlet.collector" Version="6.*">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Using Include="System.Diagnostics.CodeAnalysis"/>
|
|
<Using Include="Xunit"/>
|
|
<Using Include="Xunit.Abstractions"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|