XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

XFEExtension.NetCore.XUnit

【DLL】提供方便快捷的测试,无需编写Main方法,可直接添加特性在类或方法上进行测试

公开
关注 0 Fork 0 Star 0
UTF-8
<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFramework>net10.0</TargetFramework>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>enable</Nullable>
  </PropertyGroup>

  <ItemGroup>
    <ProjectReference Include="..\XFEExtension.NetCore.XUnit.CodeFixes\XFEExtension.NetCore.XUnit.CodeFixes.csproj" />
    <ProjectReference Include="..\XFEExtension.NetCore.XUnit\XFEExtension.NetCore.XUnit.csproj" />
    <Analyzer Include="$(MSBuildThisFileDirectory)..\XFEExtension.NetCore.XUnit.Analyzer\bin\$(Configuration)\netstandard2.0\XFEExtension.NetCore.XUnit.Analyzer.dll" />
  </ItemGroup>

  <ItemGroup>
    <PackageReference Include="BenchmarkDotNet" Version="0.15.3" />
    <PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.14.0" PrivateAssets="all" />
    <PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.14.0" PrivateAssets="all" />
  </ItemGroup>
</Project>